﻿
    :root {
      --brand-primary: #2e7d32;
      --brand-dark: #1B1F1D;
      --text-main: #111;
      --text-muted: #5f6368;
      --surface: #fff;
      --surface-soft: #f4f7f5;
      --border: #dce5de;
      --shadow: 0 10px 24px rgba(0, 0, 0, 0.09);
      --radius: 16px;
      --container: 1120px;
      /* Пълен екран по ширина — височина с буфер, за да не се „кропва“ централното ревю */
      --reviews-viewport-h: clamp(300px, 26vw + 88px, 500px);
      /* Мащаб ≤1 за центъра — без transform overflow, няма кроп от viewport */
      --reviews-scale-side: 0.9;
      --reviews-scale-center: 1;
      --reviews-scale-buffer: 0.78;
      --reviews-anim-dur: 0.58s;
      --reviews-anim-ease: cubic-bezier(0.22, 1, 0.32, 1);
      --slide-px: 120px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Segoe UI", Roboto, Arial, sans-serif;
      color: var(--text-main);
      background: var(--surface);
      line-height: 1.55;
      padding-bottom: 78px;
    }

    img {
      display: block;
      width: 100%;
      height: auto;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(100% - 2rem, var(--container));
      margin-inline: auto;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 1000;
      /* 20% бял оверлей + blur: върху бяло изглежда чисто бяло, при скрол над снимки се вижда съдържанието отдолу */
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(220, 229, 222, 0.55);
    }

    .header-inner {
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.8rem;
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      margin-left: auto;
    }

    .site-nav {
      display: none;
      align-items: center;
      gap: 1.35rem;
    }

    .site-nav__link {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--brand-dark);
      transition: color 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
    }

    .site-nav__link:hover,
    .site-nav__link:focus-visible {
      color: var(--brand-primary);
    }

    .site-nav__caret {
      width: 0.65rem;
      height: 0.65rem;
      transition: transform 0.25s ease;
    }

    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown__menu {
      position: absolute;
      top: calc(100% + 0.55rem);
      right: 0;
      left: auto;
      transform: translateY(-6px);
      min-width: 220px;
      padding: 0.45rem;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 14px;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.28s;
      z-index: 1100;
    }

    .nav-dropdown__menu a {
      display: block;
      padding: 0.65rem 0.85rem;
      border-radius: 10px;
      font-weight: 600;
      font-size: 0.92rem;
      color: var(--brand-dark);
      transition: background-color 0.2s ease, color 0.2s ease;
    }

    .nav-dropdown__menu a:hover,
    .nav-dropdown__menu a:focus-visible {
      background: var(--surface-soft);
      color: var(--brand-primary);
    }

    @media (hover: hover) {
      .nav-dropdown:hover .nav-dropdown__menu,
      .nav-dropdown:focus-within .nav-dropdown__menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
      }

      .nav-dropdown:hover .site-nav__caret,
      .nav-dropdown:focus-within .site-nav__caret {
        transform: rotate(180deg);
      }
    }

    .nav-dropdown.is-open .nav-dropdown__menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }

    .nav-dropdown.is-open .site-nav__caret {
      transform: rotate(180deg);
    }

    @media (min-width: 860px) {
      .site-nav {
        display: flex;
      }
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      min-width: 0;
    }

    .brand img {
      width: 160px;
      max-width: 42vw;
      object-fit: contain;
    }

    .lang-toggle {
      display: inline-flex;
      border: 1px solid var(--border);
      border-radius: 999px;
      overflow: hidden;
      background: #fff;
    }

    .lang-toggle button {
      border: 0;
      background: transparent;
      cursor: pointer;
      padding: 0.45rem 0.7rem;
      font-size: 0.86rem;
      font-weight: 700;
      color: var(--text-muted);
    }

    .lang-toggle button.active {
      background: var(--brand-primary);
      color: #fff;
    }

    .phone-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      white-space: nowrap;
      border-radius: 999px;
      padding: 0.65rem 0.95rem;
      background: var(--brand-primary);
      color: #fff;
      font-weight: 700;
      font-size: 0.9rem;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .phone-pill__icon {
      flex-shrink: 0;
      width: 1.05rem;
      height: 1.05rem;
    }

    .phone-pill__number {
      letter-spacing: 0.01em;
    }

    .phone-pill:hover {
      transform: translateY(-1px);
      opacity: 0.95;
    }

    .hero-actions .phone-pill {
      min-height: 48px;
      padding: 0.75rem 1.15rem;
      font-size: 0.95rem;
      box-shadow: var(--shadow);
    }

    @media (max-width: 420px) {
      .phone-pill {
        padding: 0.6rem 0.75rem;
        font-size: 0.78rem;
        gap: 0.35rem;
      }

      .phone-pill__icon {
        width: 0.95rem;
        height: 0.95rem;
      }

      .hero-actions .phone-pill {
        padding: 0.7rem 0.9rem;
        font-size: 0.82rem;
      }
    }

    .section {
      padding: 3.6rem 0;
    }

    /* Без празнина между header и hero */
    .section.hero {
      padding-top: 0;
      padding-inline: 0;
    }

    .hero {
      background: #fff;
    }

    h1 {
      font-size: clamp(1.9rem, 6vw, 3rem);
      line-height: 1.1;
      margin-bottom: 0.9rem;
      color: var(--brand-dark);
    }

    .hero-banner {
      position: relative;
      overflow: hidden;
      border-radius: 0;
      min-height: min(84vh, 760px);
    }

    .hero-banner__media {
      position: absolute;
      inset: 0;
      background: #1a2e1c center / cover no-repeat;
    }

    .hero-banner__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: right center;
    }

    .hero-banner__overlay {
      position: absolute;
      inset: 0;
      /* Зелен тинт само в лявата ~⅓; надясно е чиста снимка; плавни междинни стъпки */
      background: linear-gradient(
        90deg,
        rgba(46, 125, 50, 0.52) 0%,
        rgba(46, 125, 50, 0.34) 12%,
        rgba(46, 125, 50, 0.16) 22%,
        rgba(46, 125, 50, 0.05) 30%,
        rgba(46, 125, 50, 0) 34%
      );
    }

    .hero-banner__content {
      position: relative;
      z-index: 1;
      padding: clamp(1.5rem, 5vw, 3rem);
      /* По-голям отстъп отляво, за да седят текстът и CTA малко по-надясно върху hero */
      padding-left: clamp(2.75rem, 12vw, 6rem);
      min-height: min(84vh, 760px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      max-width: 36rem;
    }

    .hero-banner h1 {
      color: #fff;
      text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
    }

    .hero-banner p {
      color: rgba(255, 255, 255, 0.92);
      max-width: 40ch;
      margin-bottom: 1rem;
      font-size: 1.06rem;
      text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      border: 0;
      border-radius: 12px;
      padding: 0.85rem 1.15rem;
      font-weight: 700;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    }

    .btn-primary {
      background: var(--brand-primary);
      color: #fff;
      box-shadow: var(--shadow);
    }

    .btn-secondary {
      border: 1px solid var(--border);
      background: #fff;
      color: var(--brand-dark);
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .section-title {
      font-size: clamp(1.4rem, 4.2vw, 2rem);
      margin-bottom: 0.65rem;
      color: var(--brand-dark);
    }

    .section-subtitle {
      color: var(--text-muted);
      margin-bottom: 1.3rem;
      max-width: 58ch;
    }

    .services-grid {
      display: grid;
      gap: 1rem;
      align-items: stretch;
    }

    #services {
      scroll-margin-top: 88px;
    }

    #services .section-title,
    #services .section-subtitle,
    #other-services .section-title,
    #other-services .section-subtitle {
      text-align: center;
      margin-inline: auto;
    }

    #other-services {
      scroll-margin-top: 88px;
    }

    @media (min-width: 720px) {
      #other-services .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 52rem;
        margin-inline: auto;
      }
    }

    /* --- Отзиви: пълна ширина на екрана (без .container) --- */
    #reviews {
      padding-inline: 0;
      padding-bottom: 0;
    }

    .reviews-carousel-stage {
      width: 100%;
      max-width: none;
      margin-top: 0;
      margin-inline: 0;
      min-height: 0;
      padding: clamp(0.85rem, 2.3vw, 1.35rem) clamp(0.75rem, 3vw, 1.25rem);
      background: var(--surface-soft);
      border-radius: 0;
      border: 0;
      box-shadow: none;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: clamp(0.65rem, 2vw, 1rem);
    }

    .reviews-panel__head {
      text-align: center;
      padding-inline: clamp(0.75rem, 2.5vw, 1rem);
      padding-top: clamp(0.45rem, 1.1vw, 0.7rem);
      padding-bottom: clamp(0.2rem, 0.8vw, 0.45rem);
      display: grid;
      gap: 0.35rem;
      justify-items: center;
    }

    .reviews-panel__head .section-title {
      margin-inline: auto;
    }

    .reviews-panel__head .section-subtitle {
      margin-inline: auto;
      margin-bottom: 0;
    }

    .reviews-panel__footer {
      display: flex;
      justify-content: center;
      align-items: center;
      padding-top: clamp(0.5rem, 1.8vw, 1rem);
      padding-bottom: clamp(0.8rem, 2vw, 1.15rem);
      padding-inline: clamp(0.5rem, 2vw, 0.75rem);
    }

    .reviews-panel__footer .btn {
      margin-inline: auto;
      max-width: min(100%, 30rem);
      padding-inline: clamp(1.1rem, 3vw, 1.75rem);
      text-align: center;
      white-space: normal;
    }

    .reviews-cta-strip {
      margin-inline: auto;
      width: min(100%, 980px);
      background: var(--brand-primary);
      color: #fff;
      border-radius: 12px;
      padding: clamp(0.85rem, 2vw, 1.1rem) clamp(0.9rem, 2.3vw, 1.4rem);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.9rem;
    }

    .reviews-cta-strip__lead {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      min-width: 0;
    }

    .reviews-cta-strip__icon {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.16);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .reviews-cta-strip__icon svg {
      width: 26px;
      height: 26px;
      color: #fff;
    }

    .reviews-cta-strip__title {
      font-size: clamp(1.02rem, 2vw, 1.25rem);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 0.2rem;
    }

    .reviews-cta-strip__text {
      color: rgba(255, 255, 255, 0.92);
      font-size: 0.96rem;
      line-height: 1.3;
    }

    .reviews-cta-strip .btn {
      flex-shrink: 0;
      background: #fff;
      color: var(--brand-primary);
      min-width: clamp(170px, 20vw, 220px);
      font-weight: 800;
    }

    .reviews-carousel {
      width: 100%;
      max-width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      align-self: center;
      gap: clamp(0.35rem, 1.8vw, 0.85rem);
      overflow: hidden;
      padding-block: clamp(0.5rem, 2vw, 1.25rem);
    }

    .reviews-carousel__arrow {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      border: 1px solid var(--border);
      border-radius: 50%;
      background: #fff;
      color: var(--brand-dark);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .reviews-carousel__arrow:hover {
      transform: scale(1.06);
      border-color: rgba(46, 125, 50, 0.45);
      color: var(--brand-primary);
      box-shadow: 0 10px 26px rgba(46, 125, 50, 0.18);
    }

    .reviews-carousel__arrow:active {
      transform: scale(0.97);
    }

    .reviews-carousel__arrow:disabled {
      opacity: 0.4;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    .reviews-carousel__arrow:disabled:hover {
      transform: none;
      border-color: var(--border);
      color: var(--brand-dark);
      box-shadow: none;
    }

    .reviews-carousel__arrow svg {
      width: 22px;
      height: 22px;
    }

    .reviews-carousel__viewport {
      flex: 1;
      min-width: 0;
      min-height: var(--reviews-viewport-h);
      height: var(--reviews-viewport-h);
      max-height: var(--reviews-viewport-h);
      padding: 14px 0;
      box-sizing: border-box;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    /* 5 слайда: (c-2)…(c+2); translateX показва средните три — новото ревю влиза от ръба заедно с движението */
    .reviews-carousel__track {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 0;
      width: calc(5 * var(--slide-px));
      flex: 1;
      min-height: 0;
      transition: transform var(--reviews-anim-dur) var(--reviews-anim-ease);
      will-change: transform;
    }

    .reviews-carousel__track.reviews-carousel__track--instant {
      transition: none !important;
    }

    .reviews-carousel__slide {
      flex: 0 0 var(--slide-px, 33.333%);
      width: var(--slide-px, 33.333%);
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 clamp(0.2rem, 1.2vw, 0.55rem);
      box-sizing: border-box;
    }

    .reviews-carousel__slide:nth-child(3) {
      z-index: 2;
    }

    .reviews-carousel__slide:nth-child(2),
    .reviews-carousel__slide:nth-child(4) {
      z-index: 1;
    }

    #reviews-carousel-root.reviews-carousel--scale-next .reviews-carousel__slide:nth-child(4) {
      z-index: 3;
    }

    #reviews-carousel-root.reviews-carousel--scale-prev .reviews-carousel__slide:nth-child(2) {
      z-index: 3;
    }

    .reviews-carousel__card {
      width: 100%;
      max-width: 100%;
      max-height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      transform: scale(0.82);
      transform-origin: center center;
      transition: transform var(--reviews-anim-dur) var(--reviews-anim-ease), opacity 0.35s ease;
    }

    #reviews-carousel-root.reviews-scale-snap .reviews-carousel__card {
      transition: none !important;
    }

    .reviews-carousel__slide:nth-child(2) .reviews-carousel__card,
    .reviews-carousel__slide:nth-child(4) .reviews-carousel__card {
      transform: scale(var(--reviews-scale-side));
      opacity: 0.9;
    }

    .reviews-carousel__slide:nth-child(3) .reviews-carousel__card {
      transform: scale(var(--reviews-scale-center));
      opacity: 1;
    }

    .reviews-carousel__slide:nth-child(1) .reviews-carousel__card,
    .reviews-carousel__slide:nth-child(5) .reviews-carousel__card {
      transform: scale(var(--reviews-scale-buffer));
      opacity: 0.82;
    }

    /* Напред: средното се смалява, дясното пораства — синхрон с translateX на track-а */
    #reviews-carousel-root.reviews-carousel--scale-next .reviews-carousel__slide:nth-child(3) .reviews-carousel__card {
      transform: scale(var(--reviews-scale-side));
    }

    #reviews-carousel-root.reviews-carousel--scale-next .reviews-carousel__slide:nth-child(4) .reviews-carousel__card {
      transform: scale(var(--reviews-scale-center));
      opacity: 1;
    }

    #reviews-carousel-root.reviews-carousel--scale-next .reviews-carousel__slide:nth-child(5) .reviews-carousel__card {
      transform: scale(var(--reviews-scale-side));
      opacity: 0.9;
    }

    /* Назад: вляво влиза по-голямо, бившият център се смалява */
    #reviews-carousel-root.reviews-carousel--scale-prev .reviews-carousel__slide:nth-child(2) .reviews-carousel__card {
      transform: scale(var(--reviews-scale-center));
      opacity: 1;
    }

    #reviews-carousel-root.reviews-carousel--scale-prev .reviews-carousel__slide:nth-child(3) .reviews-carousel__card {
      transform: scale(var(--reviews-scale-side));
    }

    #reviews-carousel-root.reviews-carousel--scale-prev .reviews-carousel__slide:nth-child(1) .reviews-carousel__card {
      transform: scale(var(--reviews-scale-side));
      opacity: 0.9;
    }

    .reviews-carousel__card img {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
      object-position: center center;
      border-radius: 14px;
      background: #fff;
      display: block;
    }

    #reviews-carousel-root.reviews-carousel--single .reviews-carousel {
      padding-block: clamp(0.2rem, 1vw, 0.55rem);
    }

    #reviews-carousel-root.reviews-carousel--single .reviews-carousel__viewport {
      min-height: 0;
      height: auto;
      max-height: none;
      padding: 0;
    }

    #reviews-carousel-root.reviews-carousel--single .reviews-carousel__track {
      width: 100%;
      transform: none !important;
      justify-content: center;
    }

    #reviews-carousel-root.reviews-carousel--single .reviews-carousel__slide {
      display: none;
      padding: 0;
    }

    #reviews-carousel-root.reviews-carousel--single .reviews-carousel__slide:first-child {
      display: flex;
      flex: 0 0 100%;
      width: 100%;
    }

    #reviews-carousel-root.reviews-carousel--single .reviews-carousel__slide:first-child .reviews-carousel__card {
      transform: scale(1) !important;
      opacity: 1 !important;
      transition: opacity 0.22s ease;
    }

    #reviews-carousel-root.reviews-carousel--single .reviews-carousel__slide:first-child .reviews-carousel__card.is-fading {
      opacity: 0 !important;
    }

    @media (max-width: 720px) {
      :root {
        --reviews-viewport-h: clamp(260px, 40vw + 56px, 420px);
        --reviews-scale-side: 0.88;
        --reviews-scale-center: 1;
        --reviews-scale-buffer: 0.72;
      }
    }

    @media (max-width: 540px) {
      .reviews-carousel__arrow {
        width: 42px;
        height: 42px;
      }

      :root {
        --reviews-viewport-h: clamp(240px, 44vw + 48px, 380px);
        --reviews-scale-side: 0.86;
        --reviews-scale-center: 1;
        --reviews-scale-buffer: 0.7;
      }
    }

    @media (max-width: 860px) {
      .reviews-cta-strip {
        flex-direction: column;
        align-items: stretch;
      }

      .reviews-cta-strip .btn {
        width: 100%;
        min-width: 0;
      }
    }

    /* Когато "Защо да изберете нас" е в 2x2 (и по-тясно): hero става центриран и с долен градиент */
    @media (max-width: 1023.98px) {
      .hero-banner__media img {
        /* Запазваме текущия кадър при влизане в този breakpoint */
        object-position: 93% center;
      }

      .hero-banner__overlay {
        background: linear-gradient(
          0deg,
          rgba(46, 125, 50, 0.56) 0%,
          rgba(46, 125, 50, 0.34) 20%,
          rgba(46, 125, 50, 0.16) 34%,
          rgba(46, 125, 50, 0.06) 46%,
          rgba(46, 125, 50, 0) 58%
        );
      }

      .hero-banner__content {
        max-width: none;
        width: 100%;
        align-items: center;
        text-align: center;
        justify-content: flex-end;
        padding-left: clamp(1.2rem, 5vw, 2.2rem);
        padding-right: clamp(1.2rem, 5vw, 2.2rem);
        padding-bottom: clamp(2.2rem, 6vw, 3.4rem);
      }

      .hero-banner p {
        margin-inline: auto;
      }

      .hero-actions {
        justify-content: center;
      }
    }

    @media (max-width: 860px) {
      .hero-banner__media img {
        object-position: 87% center;
      }
    }

    @media (max-width: 720px) {
      .hero-banner__media img {
        object-position: 81% center;
      }
    }

    @media (max-width: 540px) {
      .hero-banner__media img {
        object-position: 77% center;
      }
    }

    .card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.045);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .card__body {
      padding: 1.1rem;
      flex: 1 1 auto;
    }

    .card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }

    a.card {
      color: inherit;
      text-decoration: none;
    }

    .card--soon {
      cursor: default;
      pointer-events: none;
    }

    .card--soon:hover {
      transform: none;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.045);
    }

    .card h3 {
      margin-bottom: 0.55rem;
      color: var(--brand-dark);
      font-size: 1.1rem;
    }

    .card p {
      color: var(--text-muted);
    }

    .card__image {
      width: 100%;
      height: auto;
      display: block;
      border-top: 1px solid var(--border);
      margin-top: auto;
    }

    .why {
      background: var(--surface-soft);
    }

    .why-heading {
      text-align: center;
      margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
    }

    .why-heading .section-title {
      margin-bottom: 0.7rem;
    }

    .why-heading__rule {
      width: 52px;
      height: 3px;
      margin-inline: auto;
      background: var(--brand-primary);
      border-radius: 999px;
    }

    .why-cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .why-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.35rem 1rem 1rem;
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      min-height: 100%;
    }

    .why-card__icon-wrap {
      width: 72px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      flex-shrink: 0;
      background: transparent;
    }

    .why-card__icon-wrap img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .why-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--brand-dark);
      margin-bottom: 0.45rem;
      line-height: 1.25;
    }

    .why-card__body {
      color: var(--text-muted);
      font-size: 0.92rem;
      line-height: 1.45;
      flex: 1;
      width: 100%;
    }

    .why-card__phones {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
      align-items: center;
    }

    .why-card__accent {
      width: 40px;
      height: 3px;
      margin-top: 1rem;
      background: var(--brand-primary);
      border-radius: 999px;
      flex-shrink: 0;
    }

    .about-section {
      background: linear-gradient(180deg, #f5f8f6 0%, #eef4ef 100%);
    }

    .about-panel {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 20px;
      box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
      padding: clamp(1.2rem, 3vw, 2rem);
      position: relative;
      overflow: hidden;
    }

    .about-panel::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: var(--brand-primary);
    }

    .about-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.38rem 0.72rem;
      border-radius: 999px;
      background: #edf7ee;
      color: #22692a;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.01em;
      text-transform: uppercase;
      margin-bottom: 0.95rem;
    }

    .about-title {
      font-size: clamp(1.35rem, 3.8vw, 2rem);
      color: var(--brand-dark);
      margin-bottom: 0.65rem;
      line-height: 1.2;
    }

    .about-subtitle {
      color: #2e7d32;
      font-weight: 700;
      margin-bottom: 1.15rem;
    }

    .about-list {
      list-style: none;
      display: grid;
      gap: 0.72rem;
      margin-bottom: 1.15rem;
    }

    .about-list li {
      color: #2a3a46;
      line-height: 1.5;
      padding: 0.62rem 0.7rem;
      border-radius: 12px;
      background: #f7faf8;
      border: 1px solid #e0ece2;
    }

    .about-list strong {
      color: #1d2a34;
    }

    .about-text {
      color: #4e5f6c;
      line-height: 1.65;
    }

    .about-text + .about-text {
      margin-top: 0.7rem;
    }

    .final-cta {
      background:
        linear-gradient(135deg, rgba(46, 125, 50, 0.95), rgba(27, 31, 29, 0.95)),
        var(--brand-dark);
      color: #fff;
      border-radius: 22px;
      padding: 1.6rem;
      box-shadow: var(--shadow);
    }

    .final-cta h2 {
      margin-bottom: 0.6rem;
      font-size: clamp(1.35rem, 4vw, 2rem);
    }

    .final-cta p {
      margin-bottom: 0.85rem;
      color: rgba(255, 255, 255, 0.92);
    }

    .final-cta .btn-primary {
      background: #fff;
      color: var(--brand-dark);
    }

    footer {
      margin-top: 0;
      background: #131a22;
      color: #c9d3dc;
      border-top: 0;
    }

    .footer-inner {
      padding: 2rem 0 5.5rem;
      font-size: 0.95rem;
      text-align: left;
    }

    .footer-grid {
      display: grid;
      gap: 1.4rem;
    }

    .footer-col h4 {
      font-size: 1.03rem;
      margin-bottom: 0.75rem;
      color: #f2f6f8;
    }

    .footer-brand-title {
      font-size: 2rem;
      line-height: 1;
      color: #67c26d;
      margin-bottom: 0.9rem;
      font-weight: 800;
    }

    .footer-brand-text {
      color: #a9b6c2;
      max-width: 30ch;
      line-height: 1.5;
    }

    .footer-social {
      margin-top: 1rem;
      display: flex;
      align-items: center;
      gap: 0.55rem;
    }

    .footer-social__link {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.15);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #d4dde5;
      background: rgba(255, 255, 255, 0.04);
      transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
    }

    .footer-social__link:hover {
      color: #7ad180;
      border-color: rgba(122, 209, 128, 0.45);
      background: rgba(122, 209, 128, 0.1);
      transform: translateY(-1px);
    }

    .footer-social__link svg {
      width: 18px;
      height: 18px;
      display: block;
      fill: currentColor;
    }

    .footer-menu {
      list-style: none;
      display: grid;
      gap: 0.55rem;
    }

    .footer-menu a,
    .footer-contact-list a {
      color: #d4dde5;
      transition: color 0.2s ease;
    }

    .footer-menu a:hover,
    .footer-contact-list a:hover {
      color: #7ad180;
    }

    .footer-contact-list {
      list-style: none;
      display: grid;
      gap: 0.55rem;
    }

    .footer-divider {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      margin-top: 1.2rem;
      padding-top: 0.9rem;
      text-align: center;
      color: #96a6b4;
      font-size: 0.9rem;
    }

    .mobile-callbar {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 999;
      background: rgba(255, 255, 255, 0.98);
      border-top: 1px solid var(--border);
      padding: 0.55rem 1rem calc(0.55rem + env(safe-area-inset-bottom));
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.6rem;
    }

    .mobile-callbar a {
      text-align: center;
      border-radius: 12px;
      padding: 0.75rem 0.35rem;
      font-weight: 800;
      font-size: clamp(0.72rem, 2.8vw, 0.88rem);
      line-height: 1.2;
      background: var(--brand-primary);
      color: #fff;
    }

    .fade-in {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: none;
    }

    @media (min-width: 720px) {
      body {
        padding-bottom: 0;
      }

      .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .why-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .mobile-callbar {
        display: none;
      }

      .footer-inner {
        padding-bottom: 1.2rem;
      }

      .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 1fr;
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .header-inner {
        height: 76px;
      }

      .section {
        padding: 4.2rem 0;
      }

      .section.hero {
        padding-top: 0;
      }

      .why-cards {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }
  
    .nav-dropdown::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 100%;
      height: 14px;
    }

    .service-content {
      padding: 3rem 0 2rem;
    }

    .service-content .container {
      max-width: 780px;
    }

    .service-content h2 {
      font-size: clamp(1.25rem, 3vw, 1.55rem);
      color: var(--brand-dark);
      margin: 1.75rem 0 0.65rem;
    }

    .service-content h2:first-of-type {
      margin-top: 0;
    }

    .service-content p,
    .service-content li {
      color: var(--text-muted);
      line-height: 1.65;
    }

    .service-content p {
      margin-bottom: 0.9rem;
    }

    .service-content ul {
      list-style: disc;
      padding-left: 1.35rem;
      margin: 0.5rem 0 1.1rem;
    }

    .service-content ul li {
      margin-bottom: 0.35rem;
    }

    .service-content ul li:last-child {
      margin-bottom: 0;
    }

    .yard-page {
      background: #fff;
    }

    .page-pochistvane .section.hero {
      padding-bottom: clamp(1rem, 3vw, 1.5rem);
    }

    .page-pochistvane .section.yard-page {
      padding-top: clamp(2.5rem, 6vw, 4rem);
    }

    .yard-before-after {
      margin: 0;
      padding: 0;
      border: 0;
    }

    .yard-services {
      margin-bottom: clamp(3rem, 7vw, 4.5rem);
    }

    .yard-before-after__frame {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
      background: #fff;
    }

    .yard-before-after__slides {
      position: relative;
      line-height: 0;
      aspect-ratio: 1362 / 661;
      background: #e8ede9;
      touch-action: pan-y;
    }

    .yard-before-after__slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      margin: 0;
      opacity: 0;
      transition: opacity 0.85s ease;
      pointer-events: none;
    }

    .yard-before-after__slide.is-active {
      opacity: 1;
      z-index: 1;
    }

    @media (prefers-reduced-motion: reduce) {
      .yard-before-after__slide {
        transition: none;
      }
    }

    .yard-before-after__dots {
      position: absolute;
      z-index: 3;
      left: 50%;
      bottom: clamp(0.55rem, 2vw, 0.85rem);
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      margin: 0;
      padding: 0.35rem 0.6rem;
      border-radius: 999px;
      background: rgba(27, 31, 29, 0.5);
      list-style: none;
    }

    .yard-before-after__dot {
      width: 8px;
      height: 8px;
      padding: 0;
      border: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: transform 0.2s ease, background-color 0.2s ease;
    }

    .yard-before-after__dot.is-active {
      background: #fff;
      transform: scale(1.2);
    }

    .yard-before-after__dot:focus-visible {
      outline: 2px solid #fff;
      outline-offset: 2px;
    }

    .yard-before-after__label {
      position: absolute;
      z-index: 2;
      bottom: clamp(0.65rem, 2vw, 1rem);
      padding: 0.4rem 0.85rem;
      background: rgba(27, 31, 29, 0.78);
      color: #fff;
      font-weight: 700;
      font-size: clamp(0.82rem, 2vw, 0.95rem);
      line-height: 1.2;
      border-radius: 10px;
      letter-spacing: 0.02em;
      pointer-events: none;
    }

    .yard-before-after__label--before {
      left: clamp(0.65rem, 2vw, 1rem);
    }

    .yard-before-after__label--after {
      right: clamp(0.65rem, 2vw, 1rem);
    }

    .yard-abonament {
      margin-bottom: clamp(3rem, 7vw, 4.5rem);
    }

    .yard-abonament__card {
      display: grid;
      grid-template-columns: 1fr;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      background: #fff;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    }

    .yard-abonament__content {
      padding: clamp(1.25rem, 3.5vw, 2rem);
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
    }

    .yard-abonament__media {
      position: relative;
      min-height: 220px;
      overflow: hidden;
    }

    .yard-abonament__media img {
      position: absolute;
      inset: 0;
      width: 112%;
      height: 100%;
      max-width: none;
      object-fit: cover;
      object-position: center 28%;
      transform: translateX(10%);
    }

    .yard-abonament__title {
      font-size: clamp(1.9rem, 6vw, 3rem);
      color: var(--brand-dark);
      margin-bottom: 0.85rem;
      line-height: 1.1;
      width: 100%;
    }

    .yard-abonament__lead {
      font-size: clamp(1rem, 2.2vw, 1.12rem);
      color: var(--brand-dark);
      font-weight: 600;
      line-height: 1.45;
      margin-bottom: 0.75rem;
      width: 100%;
    }

    .yard-abonament__text,
    .yard-abonament__note {
      color: var(--text-muted);
      line-height: 1.65;
      font-size: 1rem;
      width: 100%;
    }

    .yard-abonament__text {
      margin-bottom: 0.75rem;
    }

    .yard-abonament__note {
      font-weight: 600;
      color: var(--brand-primary);
      margin-bottom: 1.15rem;
    }

    .yard-abonament__actions {
      margin-top: 0.15rem;
      justify-content: flex-start;
    }

    .yard-abonament__actions .phone-pill {
      min-height: 48px;
      padding: 0.75rem 1.15rem;
      font-size: 0.95rem;
      box-shadow: var(--shadow);
    }

    @media (max-width: 767.98px) {
      .yard-abonament__actions {
        width: 100%;
        justify-content: center;
      }

      .yard-abonament__media img {
        width: 100%;
        max-width: 100%;
        transform: none;
        object-position: center 28%;
      }
    }

    @media (min-width: 768px) {
      .page-pochistvane .yard-abonament {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
      }

      .page-pochistvane .yard-abonament__card {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        border-radius: 0;
        border-left: none;
        border-right: none;
        box-shadow: none;
      }

      .yard-abonament__media {
        min-height: 100%;
      }
    }

    .yard-services .section-title {
      text-align: center;
      margin-bottom: 0.55rem;
    }

    .yard-services .section-subtitle {
      text-align: center;
      margin: 0 auto 1.75rem;
      max-width: 52ch;
    }

    .yard-services__grid {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      margin: 0;
      padding: 0;
    }

    .yard-services__item {
      background: var(--surface-soft);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.15rem 1.2rem;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    }

    .yard-services__item h3 {
      font-size: 1.02rem;
      color: var(--brand-dark);
      margin-bottom: 0.4rem;
      line-height: 1.3;
    }

    .yard-services__item p {
      color: var(--text-muted);
      font-size: 0.92rem;
      line-height: 1.55;
      margin: 0;
    }

    @media (min-width: 600px) {
      .yard-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (min-width: 960px) {
      .yard-services__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }

    /* Почистване на дворове – компактен hero, плътен зелен оверлей, центриран блок */
    .page-pochistvane .hero-banner,
    .page-pochistvane .hero-banner__content {
      min-height: min(28vh, 253px);
    }

    .page-pochistvane .hero-banner__media {
      overflow: hidden;
    }

    .page-pochistvane .hero-banner__photo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 28%;
      image-rendering: high-quality;
      filter: blur(6px);
      transform: scale(1.08);
    }

    .page-pochistvane .hero-banner__overlay {
      z-index: 1;
      background-color: var(--brand-primary);
      opacity: 0.66;
    }

    .page-pochistvane .hero-banner__content {
      z-index: 2;
      flex-direction: column;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: center;
      text-align: center;
      max-width: none;
      width: 100%;
      padding: clamp(0.75rem, 2.5vw, 1.15rem) clamp(0.5rem, 1.5vw, 1rem);
      gap: 0.4rem;
    }

    .page-pochistvane .hero-banner h1 {
      order: 1;
      margin: 0;
      font-size: clamp(1.25rem, 3vw, 1.55rem);
      line-height: 1.2;
      width: 100%;
      max-width: 36rem;
      color: #fff;
      text-shadow: none;
    }

    .page-pochistvane .hero-banner__lead {
      order: 2;
      margin: 0;
      width: 100%;
      max-width: min(46rem, calc(100vw - 0.75rem));
      font-size: clamp(0.78rem, 1.9vw, 0.95rem);
      line-height: 1.35;
      color: rgba(255, 255, 255, 0.95);
      text-shadow: none;
    }

    .page-pochistvane .hero-banner .hero-actions {
      order: 3;
      margin: clamp(0.85rem, 2.8vw, 1.15rem) 0 0;
      padding-top: 0.15rem;
      justify-content: center;
      width: 100%;
    }

    .page-pochistvane .hero-banner .hero-actions .phone-pill {
      background: #fff;
      color: var(--brand-primary);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
    }

    .page-pochistvane .hero-banner .hero-actions .phone-pill:hover {
      background: #f4f7f5;
      color: var(--brand-primary);
      opacity: 1;
    }

    @media (max-width: 1023.98px) {
      .page-pochistvane .hero-banner__content {
        align-items: center;
        text-align: center;
        justify-content: center;
      }

      .page-pochistvane .hero-banner__photo {
        object-position: center 28%;
      }
    }

    @media (max-width: 720px) {
      .page-pochistvane .hero-banner__content {
        padding-inline: clamp(0.35rem, 1.2vw, 0.5rem);
      }

      .page-pochistvane .hero-banner__lead {
        box-sizing: border-box;
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-inline: 0.4rem;
      }
    }

