/* =============================================
   RESET & BASE
============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #1d9e75;
  --green-dark: #0f6e56;
  --green-light: #e1f5ee;
  --orange: #d85a30;
  --orange-light: #faece7;
  --text: #1a1a1a;
  --text-muted: #555;
  --border: #e0e0e0;
  --bg-light: #f7f7f5;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  --container: 1160px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

/* =============================================
   CONTAINER
============================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn--outline {
  background: #fff;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline:hover {
  background: var(--green-light);
}

.btn--white {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--green-light);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--large {
  padding: 18px 36px;
  font-size: 17px;
}

/* =============================================
   SECTION DEFAULTS
============================================= */
section {
  padding: 72px 0;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text);
}

.section-desc {
  font-size: 17px;
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   HEADER
============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  gap: 16px;
}

.site-logo a {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.site-logo__img {
  height: 90px;
  width: auto;
  display: block;
}

.site-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav .nav-list li a {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 17px;
  color: var(--text);
  transition: background 0.15s;
}

.site-nav .nav-list li a:hover {
  background: var(--bg-light);
}

.btn-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-phone:hover {
  background: var(--green-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   HERO
============================================= */
.hero {
  background:
    linear-gradient(135deg, rgba(0, 100, 60, 0.7), rgba(0, 150, 90, 0.8)),
    url("../images/hero-strona-glowna.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 96px 0;
  color: #fff;
}

.hero-inner {
  max-width: 780px;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================================
   TRUST BAR
============================================= */
.trust-bar {
  background: var(--green-dark);
  padding: 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px 0;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}

.trust-icon {
  color: #7de8bf;
  font-size: 18px;
  font-weight: 900;
}

/* =============================================
   SERVICES
============================================= */
.services {
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  position: relative;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
}

.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  flex: 1;
}

.service-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  margin-top: 4px;
}

.service-card__badge {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card--primary {
  border-color: var(--green);
  border-width: 2px;
}
.service-card--secondary {
  border-color: var(--orange);
  border-width: 2px;
}
.service-card--secondary .service-card__badge {
  background: var(--orange);
}

/* =============================================
   SEO SECTIONS
============================================= */
.seo-section {
  background: var(--white);
}
.seo-section--light {
  background: var(--bg-light);
}

.seo-section-inner {
  max-width: 820px;
}

.seo-section-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.3;
}

.seo-section-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--text);
}

.seo-section-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.seo-list {
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.seo-list li {
  padding: 10px 16px;
  background: var(--white);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15px;
  color: var(--text);
}

.seo-section--light .seo-list li {
  background: var(--bg-light);
}

.seo-list--ordered {
  list-style: none;
  counter-reset: seo-counter;
}

.seo-list--ordered li {
  counter-increment: seo-counter;
  padding-left: 48px;
  position: relative;
  border-left: none;
  background: var(--bg-light);
  border-radius: var(--radius);
}

.seo-list--ordered li::before {
  content: counter(seo-counter);
  position: absolute;
  left: 14px;
  font-weight: 700;
  color: var(--green);
  font-size: 16px;
}

.seo-section-content .btn {
  margin-top: 16px;
}

/* =============================================
   ABOUT
============================================= */
.about {
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-image__placeholder {
  background: var(--green-light);
  border-radius: var(--radius);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 600;
  border: 2px dashed var(--green);
}

/* =============================================
   REACH
============================================= */
.reach {
  background:
    linear-gradient(135deg, rgba(236, 236, 236, 0.9), rgba(253, 253, 253, 0.9)),
    url("../images/mapa.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

.reach-intro {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

.cities-grid span {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.cities-grid--large span {
  background: var(--white);
  border-color: var(--green-light);
  color: var(--text);
}

.reach-note {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* =============================================
   REALIZATIONS
============================================= */
.realizations {
  background: var(--white);
}

.realizations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.realization-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  background: var(--white);
}

.realization-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* Link owijający zdjęcie */
.realization-card__image-link {
  display: block;
  text-decoration: none;
}

/* Split przed/po wewnątrz karty realizacji */
.realization-card .odnowa-split {
  height: 200px;
  border-radius: 0;
}

/* Fallback — samo zdjęcie po */
.realization-card__image {
  height: 200px;
  overflow: hidden;
}

.realization-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.realization-card:hover .realization-card__image img {
  transform: scale(1.04);
}

.realization-card__image--placeholder {
  height: 200px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 14px;
  border: 2px dashed var(--green);
}

/* Body */
.realization-card__body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.realization-card__tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  align-self: flex-start;
}

.realization-card__location {
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  margin: 0;
}

.realization-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.realization-card__time {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  margin: 0;
}

.realization-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  margin-top: 4px;
}

.realization-card__link:hover {
  color: var(--green-dark);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 768px) {
  .realizations-grid {
    grid-template-columns: 1fr;
  }
}
/* =============================================
   REVIEWS
============================================= */
.reviews {
  background: var(--bg-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.review-card__stars {
  color: #f4b400;
  font-size: 20px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.review-card__author {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

/* =============================================
   FAQ
============================================= */
.faq {
  background: var(--white);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 18px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.15s;
}

.faq-question:hover {
  background: var(--bg-light);
}
.faq-question.active {
  background: var(--green-light);
  color: var(--green-dark);
}

.faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: var(--green);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  background: var(--bg-light);
}

.faq-answer.open {
  display: block;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  padding-top: 16px;
}

/* =============================================
   BLOG PREVIEW
============================================= */
.blog-preview {
  background: var(--bg-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.blog-card:hover {
  box-shadow: var(--shadow);
}

.blog-card__image--placeholder {
  height: 160px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.blog-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-card__body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.blog-card__body p {
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
}

.blog-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
}

/* =============================================
   CTA BANNER
============================================= */
.cta-banner {
  background: var(--green-dark);
  padding: 72px 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner-text h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-banner-text p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
}

.cta-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* =============================================
   CONTACT FORM
============================================= */
.contact-form {
  background: var(--white);
}

.contact-form .container {
  max-width: 720px;
}

/* Contact Form 7 overrides */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  margin-bottom: 4px;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--green);
}

.wpcf7 input[type="submit"] {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
  width: auto;
}

.wpcf7 input[type="submit"]:hover {
  background: var(--green-dark);
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: #1a1a1a;
  padding: 64px 0 0;
  color: #ccc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-col a {
  color: #aaa;
  transition: color 0.15s;
}
.footer-col a:hover {
  color: var(--white);
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul li a {
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: #666;
  text-align: center;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .about-inner {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }
  .section-title {
    font-size: 24px;
  }
  .cta-banner-text h2 {
    font-size: 22px;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
  }
  .site-nav.open {
    display: block;
  }
  .site-nav .nav-list {
    flex-direction: column;
    gap: 4px;
  }
  .nav-toggle {
    display: flex;
  }

  .btn-phone {
    padding: 10px 14px;
  }

  .services-grid,
  .realizations-grid,
  .reviews-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-image {
    display: none;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-banner-actions {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trust-bar-inner {
    justify-content: flex-start;
    gap: 12px;
  }
  .trust-item {
    font-size: 13px;
  }
}

/* =============================================
   PAGE HERO (podstrony)
============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 72px 0;
  color: var(--white);
}

.page-hero--oproznianie {
  background:
    linear-gradient(135deg, rgba(0, 100, 60, 0.8), rgba(0, 150, 90, 0.8)),
    url("../images/hero-oproznianie.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero--galeria {
  background:
    linear-gradient(135deg, rgba(0, 100, 60, 0.8), rgba(0, 150, 90, 0.8)),
    url("../images/hero-galeria.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero--kontakt {
  background:
    linear-gradient(135deg, rgba(0, 100, 60, 0.8), rgba(0, 150, 90, 0.8)),
    url("../images/hero-kontakt.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero--uslugi {
  background:
    linear-gradient(135deg, rgba(0, 100, 60, 0.8), rgba(0, 150, 90, 0.8)),
    url("../images/hero-uslugi.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-inner {
  max-width: 860px;
}

.page-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
}
.page-breadcrumb a:hover {
  color: var(--white);
}

.page-hero h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-accent {
  color: #7de8bf;
}

.page-hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
  max-width: 680px;
}

.page-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.page-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* =============================================
   CONTENT SECTION (podstrony — layout z sidebarą)
============================================= */
.content-section {
  padding: 72px 0;
  background: var(--white);
}
.content-section--light {
  background: var(--bg-light);
}

.content-section-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

.content-main h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--text);
}

.content-main h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--text);
}

.content-main p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* =============================================
   SIDEBAR
============================================= */
.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content-sidebar--sticky {
  position: sticky;
  top: 88px;
}

.sidebar-cta-box {
  background: var(--green-light);
  border: 1.5px solid var(--green);
  border-radius: var(--radius);
  padding: 24px;
}

.sidebar-cta-box__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.sidebar-cta-box p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.sidebar-info-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.sidebar-info-box__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--border);
}

.price-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.price-list li span {
  color: var(--text-muted);
}
.price-list li strong {
  color: var(--green-dark);
  font-size: 15px;
}

.price-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.sidebar-checklist {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.sidebar-checklist__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.sidebar-checklist__title--green {
  color: var(--green-dark);
  margin-top: 20px;
}

.sidebar-checklist ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-checklist ul li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 4px;
}

.sidebar-checklist ul li:has(✓) {
  color: var(--green-dark);
  font-weight: 500;
}

/* =============================================
   CASES GRID
============================================= */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.case-card__icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.case-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.case-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   REACH CALLOUT
============================================= */
.reach-callout {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.reach-callout p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  flex: 1;
}

/* =============================================
   RESPONSIVE — podstrony
============================================= */
@media (max-width: 1024px) {
  .content-section-inner {
    grid-template-columns: 1fr;
  }
  .content-sidebar--sticky {
    position: static;
  }
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 26px;
  }
  .page-hero-desc {
    font-size: 16px;
  }
  .cases-grid {
    grid-template-columns: 1fr;
  }
  .reach-callout {
    flex-direction: column;
  }
  .page-hero-trust {
    gap: 12px;
    font-size: 13px;
  }
}

/* =============================================
   FIRE VARIANT — hero i przyciski
============================================= */
.page-hero--fire {
  background:
    linear-gradient(135deg, rgba(122, 32, 0, 0.85), rgba(242, 153, 74, 0.85)),
    url("../images/hero-pozar.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-accent--fire {
  color: #ffd4b8;
}

.btn--fire {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.btn--fire:hover {
  background: #b34a22;
  border-color: #b34a22;
}

.sidebar-cta-box--fire {
  background: var(--orange-light);
  border-color: var(--orange);
}
.sidebar-cta-box--fire .sidebar-cta-box__title {
  color: #7a2000;
}

.cta-banner--fire {
  background: #7a2000;
}

/* =============================================
   WARNING BOX
============================================= */
.warning-box {
  background: #fff8e1;
  border-left: 4px solid #f4b400;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 28px 0;
}

.warning-box__title {
  font-size: 15px;
  font-weight: 700;
  color: #7a5c00;
  margin-bottom: 8px;
}

.warning-box p {
  font-size: 14px;
  color: #5a4500;
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   INFO BOX
============================================= */
.info-box {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 28px 0;
}

.info-box p {
  font-size: 15px;
  color: var(--green-dark);
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   DAMAGE GRID
============================================= */
.damage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.damage-card {
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
}

.damage-card--low {
  border-top: 4px solid #f4b400;
  background: var(--white);
}
.damage-card--mid {
  border-top: 4px solid var(--orange);
  background: var(--white);
}
.damage-card--high {
  border-top: 4px solid #7a2000;
  background: var(--white);
}

.damage-card__header {
  margin-bottom: 14px;
}

.damage-card__level {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.damage-card--low .damage-card__level {
  background: #fff8e1;
  color: #7a5c00;
}
.damage-card--mid .damage-card__level {
  background: var(--orange-light);
  color: #7a2000;
}
.damage-card--high .damage-card__level {
  background: #fce8e8;
  color: #7a2000;
}

.damage-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.damage-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.damage-card__scope {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.damage-card__scope li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.damage-card__scope li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 12px;
}

/* =============================================
   RESPONSIVE — damage grid
============================================= */
@media (max-width: 1024px) {
  .damage-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   OFFER NAV
============================================= */
.offer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.offer-nav__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s;
  text-decoration: none;
}

.offer-nav__item:hover {
  border-color: var(--green);
  color: var(--green-dark);
  background: var(--green-light);
}

.offer-nav__item--fire:hover {
  border-color: var(--orange);
  color: #7a2000;
  background: var(--orange-light);
}

.offer-nav__icon {
  font-size: 18px;
}

/* =============================================
   SERVICE LABEL
============================================= */
.service-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.service-label--green {
  background: var(--green-light);
  color: var(--green-dark);
}

.service-label--fire {
  background: var(--orange-light);
  color: #7a2000;
}

.service-label--blue {
  background: #e8f0fb;
  color: #1a3f7a;
}

/* =============================================
   PRICE TABLE
============================================= */
.price-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 20px 0;
}

.price-table__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}

.price-table__row:last-child {
  border-bottom: none;
}
.price-table__row:nth-child(odd) {
  background: var(--bg-light);
}
.price-table__row span {
  color: var(--text-muted);
}
.price-table__row strong {
  color: var(--green-dark);
}

/* =============================================
   WHY GRID
============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
}

.why-card__icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}

.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   RESPONSIVE — oferta
============================================= */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .offer-nav {
    flex-direction: column;
    align-items: stretch;
  }
  .offer-nav__item {
    justify-content: center;
  }
  .price-table__row {
    font-size: 14px;
  }
}

/* =============================================
   CONTACT LAYOUT
============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* =============================================
   CONTACT CARDS
============================================= */
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.contact-card h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.contact-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.contact-card--muted {
  background: var(--bg-light);
}

.contact-card--green {
  background: var(--green-light);
  border-color: var(--green);
}

/* =============================================
   CONTACT METHODS
============================================= */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s;
}

.contact-method:hover {
  border-color: var(--green);
  background: var(--green-light);
}

.contact-method__icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
}

.contact-method__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-method__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.contact-method__value {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-dark);
}

.contact-method__note {
  font-size: 12px;
  color: var(--text-muted);
}

/* =============================================
   CONTACT HOURS
============================================= */
.contact-hours {
  margin-top: 16px;
}

.contact-hours__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.contact-hours__row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  color: var(--text-muted);
}

.contact-hours__row:last-child {
  border-bottom: none;
}
.contact-hours__row strong {
  color: var(--text);
}

/* =============================================
   CONTACT STEPS
============================================= */
.contact-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.contact-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--green-dark);
  line-height: 1.6;
}

.contact-steps__num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

/* =============================================
   CONTACT FORM CARD
============================================= */
.contact-form-wrap {
  position: sticky;
  top: 88px;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}

.contact-form-card h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-form-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

/* CF7 grid */
.cf7-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

.cf7-col {
  display: flex;
  flex-direction: column;
}

/* CF7 overrides */
.wpcf7 label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  display: block;
  margin-top: 16px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--green);
}

.wpcf7 textarea {
  min-height: 110px;
  resize: vertical;
}

.wpcf7 input[type="file"] {
  width: 100%;
  padding: 10px 0;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
}

.cf7-file-note {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin: 4px 0 8px;
}

.wpcf7 .wpcf7-acceptance {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.5;
}

.wpcf7 input[type="submit"] {
  width: 100%;
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 20px;
}

.wpcf7 input[type="submit"]:hover {
  background: var(--green-dark);
}

.form-privacy-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

/* =============================================
   CONTACT SERVICES GRID
============================================= */
.contact-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-service-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  border-top: 3px solid var(--green);
}

.contact-service-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}

.contact-service-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.contact-service-item__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}

.contact-service-item__link:hover {
  color: var(--green-dark);
}

/* =============================================
   RESPONSIVE — kontakt
============================================= */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    position: static;
  }
  .contact-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-services-grid {
    grid-template-columns: 1fr;
  }
  .cf7-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    padding: 24px 18px;
  }
}
/* =============================================
   GALERIA — FILTRY
============================================= */
.galeria-filters {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.galeria-filters-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.galeria-filters__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.galeria-filters-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.galeria-filter-btn {
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  background: var(--white);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.galeria-filter-btn:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.galeria-filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  font-weight: 600;
}

/* =============================================
   GALERIA — WIDOKI
============================================= */
.galeria-view {
  display: none;
}
.galeria-view--active {
  display: block;
}

/* =============================================
   RESPONSIVE — filtry
============================================= */
@media (max-width: 768px) {
  .galeria-filters-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .galeria-filter-btn {
    font-size: 13px;
    padding: 7px 14px;
  }
}
/* =============================================
   POLITYKA PRYWATNOŚCI
============================================= */
.privacy-hero {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 40px 0 32px;
}

.privacy-hero .page-breadcrumb {
  margin-bottom: 16px;
}

.privacy-hero h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.privacy-hero p {
  font-size: 15px;
  color: var(--text-muted);
}

.privacy-content {
  padding: 56px 0 72px;
}

.privacy-doc {
  max-width: 760px;
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.privacy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.privacy-section h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.privacy-section p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.privacy-section ol,
.privacy-section ul {
  padding-left: 20px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.privacy-section ol {
  list-style: decimal;
}
.privacy-section ul {
  list-style: disc;
}

.privacy-section li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 4px;
}

.privacy-section li ul {
  margin-top: 8px;
  margin-bottom: 0;
}

.privacy-section a {
  color: var(--green);
  text-decoration: none;
}

.privacy-section a:hover {
  color: var(--green-dark);
}

.privacy-section--contact {
  text-align: center;
}

.privacy-contact-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--green-dark);
  border-bottom: 2px solid var(--green);
  padding-bottom: 2px;
}
