
    /* =========================================================
       NAV DURGA CARE FOUNDATION
       Single-file premium homepage
       ========================================================= */
       .trust-icon .icon {
  width: 22px;
  height: 22px;
}

    :root {
      --brand-red: #eb7f31;
      --brand-red-dark: #741d1d;
      --coral: #e45742;
      --orange: #eb7f31;
      --gold: #fcad38;

      --off-white: #fff9f5;
      --peach: #fff3ec;
      --neutral: #f7f5f2;
      --white: #ffffff;

      --text: #231f20;
      --muted: #6b6461;
      --border: #eaded7;

      --dark-footer: #261616;
      --dark-burgundy: #351818;

      --serif: "DM Serif Display", Georgia, serif;
      --sans: "Inter", Arial, sans-serif;

      --container: 1260px;
      --section-space: 100px;

      --radius-sm: 10px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-xl: 32px;

      --shadow-sm: 0 8px 26px rgba(73, 29, 22, 0.06);
      --shadow-md: 0 16px 46px rgba(73, 29, 22, 0.1);
      --shadow-lg: 0 26px 70px rgba(52, 17, 14, 0.16);

      --ease: cubic-bezier(.2, .65, .25, 1);
      --header-height: 86px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 100px;
    }

    body {
      margin: 0;
      color: var(--text);
      background: var(--off-white);
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    body.menu-open {
      overflow: hidden;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    img {
      height: auto;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      border: 0;
    }

    ul,
    ol {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1,
    h2,
    h3 {
      text-wrap: balance;
    }

    p {
      text-wrap: pretty;
    }

    ::selection {
      color: #fff;
      background: var(--brand-red);
    }

    :focus-visible {
      outline: 3px solid rgba(252, 173, 56, 0.65);
      outline-offset: 4px;
      border-radius: 4px;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .container {
      width: min(calc(100% - 64px), var(--container));
      margin-inline: auto;
    }

    .section {
      padding-block: var(--section-space);
      position: relative;
    }

    .section--white {
      background: var(--white);
    }

    .section--neutral {
      background: var(--neutral);
    }

    .section--peach {
      background: var(--peach);
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
      color: var(--brand-red);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
      line-height: 1.4;
      text-transform: uppercase;
    }

    .section-label::before {
      content: "";
      width: 28px;
      height: 2px;
      border-radius: 999px;
      background: var(--gold);
    }

    .section-label--light {
      color: #ffe8db;
    }

    .section-label--light::before {
      background: var(--gold);
    }

    .section-title {
      max-width: 780px;
      margin-bottom: 22px;
      color: var(--text);
      font-family: var(--serif);
      font-size: clamp(34px, 3.3vw, 44px);
      font-weight: 400;
      line-height: 1.12;
      letter-spacing: -0.015em;
    }

    .section-title--light {
      color: #fff;
    }

    .section-intro {
      max-width: 680px;
      margin-bottom: 0;
      color: var(--muted);
      font-size: 16px;
    }

    .section-intro--light {
      color: rgba(255, 255, 255, 0.76);
    }

    .section-heading-row {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 44px;
    }

    .section-heading-row > div:first-child {
      max-width: 820px;
    }

    .section-heading-row .section-title {
      margin-bottom: 14px;
    }

    .icon {
      width: 20px;
      height: 20px;
      flex: 0 0 auto;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* =========================================================
       BUTTONS
       ========================================================= */

    .btn {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 13px 21px;
      border: 1px solid transparent;
      border-radius: 999px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 700;
      line-height: 1;
      transition:
        transform 300ms var(--ease),
        color 300ms var(--ease),
        background-color 300ms var(--ease),
        border-color 300ms var(--ease),
        box-shadow 300ms var(--ease);
    }

    .btn svg {
      width: 17px;
      height: 17px;
      transition: transform 300ms var(--ease);
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn:hover svg {
      transform: translateX(4px);
    }

    .btn--primary {
      color: #fff;
      background: var(--brand-red);
      box-shadow: 0 12px 28px rgba(151, 40, 40, 0.18);
    }

    .btn--primary:hover {
      background: var(--coral);
      box-shadow: 0 15px 32px rgba(151, 40, 40, 0.25);
    }

    .btn--gold {
      color: #3a2113;
      background: var(--gold);
      box-shadow: 0 12px 28px rgba(252, 173, 56, 0.2);
    }

    .btn--gold:hover {
      background: #ffc45f;
    }

    .btn--outline-light {
      color: #fff;
      border-color: rgba(255, 255, 255, 0.52);
      background: rgba(255, 255, 255, 0.07);
      backdrop-filter: blur(8px);
    }

    .btn--outline-light:hover {
      color: var(--brand-red);
      border-color: #fff;
      background: #fff;
    }

    .btn--outline-dark {
      color: var(--brand-red);
      border-color: rgba(151, 40, 40, 0.24);
      background: transparent;
    }

    .btn--outline-dark:hover {
      color: #fff;
      border-color: var(--brand-red);
      background: var(--brand-red);
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--brand-red);
      font-size: 14px;
      font-weight: 700;
    }

    .text-link svg {
      width: 16px;
      height: 16px;
      transition: transform 260ms var(--ease);
    }

    .text-link:hover svg {
      transform: translateX(5px);
    }

    /* =========================================================
       TOP INFORMATION BAR
       ========================================================= */

    .topbar {
      height: 40px;
      color: rgba(255, 255, 255, 0.92);
      background: var(--brand-red);
      position: relative;
      z-index: 1200;
      font-size: 12px;
    }

    .topbar__inner {
      height: 100%;
      display: grid;
      grid-template-columns: minmax(360px, 1fr) minmax(260px, 0.95fr) auto;
      align-items: center;
      gap: 22px;
    }

    .topbar__contacts {
      display: flex;
      align-items: center;
      gap: 18px;
      min-width: 0;
    }

    .topbar__link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      white-space: nowrap;
      color: rgba(255, 255, 255, 0.9);
      transition: color 200ms ease;
    }

    .topbar__link:hover {
      color: var(--gold);
    }

    .topbar__link .icon {
      width: 14px;
      height: 14px;
    }

    .marquee {
      min-width: 0;
      overflow: hidden;
      mask-image: linear-gradient(
        90deg,
        transparent,
        #000 8%,
        #000 92%,
        transparent
      );
    }

    .marquee__track {
      width: max-content;
      display: flex;
      align-items: center;
      gap: 26px;
      animation: marquee 30s linear infinite;
      will-change: transform;
    }

    .marquee:hover .marquee__track {
      animation-play-state: paused;
    }

    .marquee__group {
      display: flex;
      align-items: center;
      gap: 26px;
      white-space: nowrap;
    }

    .marquee__group span {
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }

    .marquee__group span::after {
      content: "•";
      color: var(--gold);
    }

    @keyframes marquee {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(calc(-50% - 13px));
      }
    }

    .topbar__socials {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .social-link {
      width: 28px;
      height: 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: #fff;
      transition:
        color 220ms ease,
        background-color 220ms ease,
        transform 220ms ease;
    }

    .social-link:hover {
      color: var(--brand-red);
      background: var(--gold);
      transform: translateY(-2px);
    }

    .social-link .icon {
      width: 15px;
      height: 15px;
    }

    /* =========================================================
       HEADER
       ========================================================= */

    .site-header {
      height: var(--header-height);
      position: sticky;
      top: 0;
      z-index: 1100;
      border-bottom: 1px solid rgba(151, 40, 40, 0.06);
      background: rgba(255, 249, 245, 0.97);
      backdrop-filter: blur(16px);
      transition:
        height 280ms var(--ease),
        box-shadow 280ms ease,
        background-color 280ms ease;
    }

    .site-header.is-scrolled {
      box-shadow: 0 12px 38px rgba(53, 24, 20, 0.1);
      background: rgba(255, 255, 255, 0.97);
    }

    .header-inner {
      height: 100%;
      display: flex;
      align-items: center;
      gap: 38px;
    }

    .brand {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
    }

    .brand img {
      width: 195px;
      max-height: 60px;
      object-fit: contain;
      object-position: left center;
    }

    .desktop-nav {
      margin-left: auto;
      display: flex;
      align-items: stretch;
      height: 100%;
      gap: 2px;
    }

    .nav-link,
    .nav-trigger {
      height: 100%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding-inline: 14px;
      color: #443c39;
      background: transparent;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      white-space: nowrap;
      transition: color 220ms ease;
      position: relative;
    }

    .nav-link::after,
    .nav-trigger::after {
      content: "";
      height: 2px;
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 20px;
      border-radius: 999px;
      background: var(--coral);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 240ms var(--ease);
    }

    .nav-link:hover,
    .nav-trigger:hover,
    .nav-link.is-active {
      color: var(--brand-red);
    }

    .nav-link:hover::after,
    .nav-link.is-active::after,
    .nav-trigger:hover::after {
      transform: scaleX(1);
    }

    .nav-trigger .icon {
      width: 14px;
      height: 14px;
      transition: transform 220ms ease;
    }

    .nav-item {
      position: relative;
      height: 100%;
    }

    .dropdown {
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      pointer-events: none;
      transition:
        opacity 220ms ease,
        visibility 220ms ease,
        transform 220ms var(--ease);
    }

    .nav-item:hover > .dropdown,
    .nav-item:focus-within > .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }

    .nav-item:hover > .nav-trigger .icon,
    .nav-item:focus-within > .nav-trigger .icon {
      transform: rotate(180deg);
    }

    .dropdown::before {
      content: "";
      position: absolute;
      inset: -12px 0 auto;
      height: 14px;
    }

    .mega-menu {
        width: 401px;
    padding: 15px 10px;
    border: 1px solid rgba(151, 40, 40, 0.1);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    /* display: grid; */
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    }

    .mega-item {
      min-height: 61px;
      display: grid;
      grid-template-columns: 42px 1fr;
      align-items: center;
      gap: 12px;
      padding: 12px;
      border-radius: 12px;
      transition:
        background-color 220ms ease,
        transform 220ms var(--ease);
    }

    .mega-item:hover {
      background: var(--peach);
      transform: translateX(2px);
    }

    .mega-icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 11px;
      color: var(--brand-red);
      background: #fff1e8;
    }

    .mega-icon .icon {
      width: 20px;
      height: 20px;
    }

    .mega-item strong {
      display: block;
      margin-bottom: 2px;
      color: var(--text);
      font-size: 13.5px;
      line-height: 1.35;
    }

    .mega-item span {
      display: block;
      color: var(--muted);
      font-size: 11.5px;
      line-height: 1.45;
    }

    .location-menu {
      width: 260px;
      padding: 10px;
      border: 1px solid rgba(151, 40, 40, 0.1);
      border-radius: 15px;
      background: #fff;
      box-shadow: var(--shadow-md);
    }

    .location-menu a {
      min-height: 44px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 9px 12px;
      border-radius: 10px;
      color: #4b423f;
      font-size: 13.5px;
      font-weight: 600;
      transition:
        color 200ms ease,
        background-color 200ms ease;
    }

    .location-menu a:hover {
      color: var(--brand-red);
      background: var(--peach);
    }

    .location-menu .icon {
      width: 15px;
      height: 15px;
    }

    .header-cta {
      flex: 0 0 auto;
      min-height: 46px;
      padding-inline: 18px;
    }

    .mobile-menu-button {
      width: 46px;
      height: 46px;
      display: none;
      margin-left: auto;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: #fff;
      background: var(--brand-red);
      cursor: pointer;
    }

    .mobile-menu-button .icon {
      width: 22px;
      height: 22px;
    }

    /* =========================================================
       MOBILE MENU
       ========================================================= */

    .mobile-menu {
      display: none;
      position: fixed;
      inset: calc(var(--header-height) + 40px) 0 0;
      z-index: 1090;
      background: rgba(255, 249, 245, 0.99);
      overflow-y: auto;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition:
        opacity 260ms ease,
        visibility 260ms ease,
        transform 260ms var(--ease);
    }

    .topbar-hidden .mobile-menu {
      inset-top: var(--header-height);
    }

    .mobile-menu.is-open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .mobile-menu__inner {
      width: min(calc(100% - 36px), 620px);
      margin: 0 auto;
      padding: 22px 0 120px;
    }

    .mobile-nav-link,
    .mobile-submenu-button {
      width: 100%;
      min-height: 54px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 8px 4px;
      border-bottom: 1px solid rgba(151, 40, 40, 0.1);
      color: var(--text);
      background: transparent;
      cursor: pointer;
      text-align: left;
      font-size: 15px;
      font-weight: 650;
    }

    .mobile-submenu-button .icon {
      width: 16px;
      height: 16px;
      transition: transform 250ms ease;
    }

    .mobile-submenu-button[aria-expanded="true"] {
      color: var(--brand-red);
    }

    .mobile-submenu-button[aria-expanded="true"] .icon {
      transform: rotate(180deg);
    }

    .mobile-submenu {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 330ms var(--ease);
    }

    .mobile-submenu.is-open {
      grid-template-rows: 1fr;
    }

    .mobile-submenu > div {
      overflow: hidden;
    }

    .mobile-submenu a {
      min-height: 48px;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: 8px;
      padding: 8px 12px;
      border-left: 2px solid #f0d9cd;
      color: var(--muted);
      font-size: 13.5px;
    }

    .mobile-submenu a:hover {
      color: var(--brand-red);
      border-color: var(--gold);
    }

    .mobile-menu__cta {
      width: 100%;
      margin-top: 22px;
    }

    /* =========================================================
       HERO
       ========================================================= */

    .hero {
          height: 505px;
    min-height: 513px;
    position: relative;
    overflow: hidden;
    background: #42211e;
    }

    .hero-slider {
      height: 100%;
      position: relative;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      visibility: hidden;
      transition:
        opacity 800ms ease,
        visibility 800ms ease;
    }

    .hero-slide.is-active {
      opacity: 1;
      visibility: visible;
      z-index: 1;
    }

    .hero-slide__image {
      width: 100%;
      height: 100%;
      inset: 0;
      object-fit: cover;
      object-position: center;
      transform: scale(1.03);
    }

    .hero-slide.is-active .hero-slide__image {
      animation: kenburns 8s ease-out forwards;
    }

    @keyframes kenburns {
      from {
        transform: scale(1.03);
      }
      to {
        transform: scale(1.1);
      }
    }

    .hero-slide::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(
          90deg,
          rgba(40, 18, 16, 0.87) 0%,
          rgba(50, 21, 18, 0.72) 42%,
          rgba(50, 21, 18, 0.32) 70%,
          rgba(37, 17, 14, 0.24) 100%
        );
    }

    .hero-slide::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(
          180deg,
          rgba(0, 0, 0, 0.1),
          transparent 42%,
          rgba(45, 18, 14, 0.3)
        );
    }

    .hero__container {
      height: 100%;
      display: flex;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .hero-content {
      max-width: 700px;
      padding-bottom: 10px;
      color: #fff;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      margin-bottom: 16px;
      color: #ffcf8f;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.16em;
      line-height: 1.45;
      text-transform: uppercase;
    }

    .hero-eyebrow::before {
      content: "";
      width: 34px;
      height: 2px;
      border-radius: 99px;
      background: var(--gold);
    }

    .hero-title {
      max-width: 700px;
      margin-bottom: 20px;
      font-family: var(--serif);
      font-size: clamp(44px, 4.4vw, 56px);
      font-weight: 400;
      line-height: 1.04;
      letter-spacing: -0.018em;
    }

    .hero-copy {
      max-width: 625px;
      margin-bottom: 28px;
      color: rgba(255, 255, 255, 0.86);
      font-size: 17px;
      line-height: 1.75;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .hero-controls {
      position: absolute;
      z-index: 5;
      left: 50%;
      bottom: 56px;
      transform: translateX(-50%);
      width: min(calc(100% - 64px), var(--container));
      display: none;
      /*display: flex;*/
      align-items: center;
      justify-content: space-between;
      pointer-events: none;
    }

    .hero-counter {
      display: none;
      /*display: flex;*/
      align-items: center;
      gap: 10px;
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      pointer-events: auto;
    }

    .hero-counter__bar {
      width: 64px;
      height: 1px;
      background: rgba(255, 255, 255, 0.38);
      position: relative;
      overflow: hidden;
    }

    .hero-counter__bar span {
      width: 33.333%;
      height: 100%;
      display: block;
      background: var(--gold);
      transform: translateX(0);
      transition: transform 450ms var(--ease);
    }

    .hero-arrows {
      display: flex;
      gap: 8px;
      pointer-events: auto;
    }

    .hero-arrow {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 50%;
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(8px);
      cursor: pointer;
      transition:
        color 220ms ease,
        background-color 220ms ease,
        border-color 220ms ease,
        transform 220ms var(--ease);
    }

    .hero-arrow:hover {
      color: var(--brand-red);
      border-color: #fff;
      background: #fff;
      transform: translateY(-2px);
    }

    .hero-arrow .icon {
      width: 18px;
      height: 18px;
    }

    /* =========================================================
       TRUST STRIP
       ========================================================= */

    .trust-wrap {
      margin-top: -10px;
      position: relative;
      z-index: 10;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      border: 1px solid rgba(151, 40, 40, 0.1);
      border-radius: 18px;
      overflow: hidden;
      background: #fff;
      box-shadow: var(--shadow-md);
    }

    .trust-card {
      min-height: 142px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      padding: 23px 19px;
      position: relative;
      background: #fff;
      transition:
        transform 280ms var(--ease),
        box-shadow 280ms ease,
        background-color 280ms ease;
    }

    .trust-card:not(:last-child)::after {
      content: "";
      width: 1px;
      position: absolute;
      top: 23px;
      right: 0;
      bottom: 23px;
      background: #f0e5df;
    }

    .trust-card:hover {
      z-index: 1;
      background: #fffaf7;
      transform: translateY(-4px);
      box-shadow: 0 16px 30px rgba(68, 26, 19, 0.08);
    }

    .trust-icon {
      width: 39px;
      height: 39px;
      display: grid;
      place-items: center;
      margin-bottom: 13px;
      border-radius: 11px;
      color: var(--brand-red);
      background: var(--peach);
    }

    .trust-icon .icon {
      width: 19px;
      height: 19px;
    }

    .trust-card h3 {
      margin-bottom: 5px;
      font-size: 14px;
      line-height: 1.4;
    }

    .trust-card p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.5;
    }

    /* =========================================================
       ABOUT
       ========================================================= */

    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
      align-items: center;
      gap: 76px;
    }

    .about-collage {
      height: 570px;
      position: relative;
    }

    .about-image-main {
      width: 82%;
      height: 500px;
      border-radius: 24px;
      object-fit: cover;
      box-shadow: var(--shadow-md);
    }

    .about-image-small {
      width: 49%;
      height: 250px;
      position: absolute;
      right: 0;
      bottom: 0;
      z-index: 2;
      border: 9px solid var(--white);
      border-radius: 22px;
      object-fit: cover;
      box-shadow: var(--shadow-lg);
    }

    .about-accent {
      width: 150px;
      height: 150px;
      position: absolute;
      left: -26px;
      bottom: 14px;
      z-index: 0;
      opacity: 0.62;
      border-radius: 50%;
      background:
        radial-gradient(circle at center, var(--gold) 0 3px, transparent 4px);
      background-size: 16px 16px;
    }

    .about-badge {
      max-width: 210px;
      position: absolute;
      top: 34px;
      right: 7px;
      z-index: 3;
      padding: 16px 17px;
      border: 1px solid rgba(151, 40, 40, 0.12);
      border-radius: 15px;
      color: var(--brand-red);
      background: rgba(255, 255, 255, 0.94);
      box-shadow: var(--shadow-sm);
      backdrop-filter: blur(8px);
      font-size: 12px;
      font-weight: 700;
      line-height: 1.5;
    }

    .about-content .section-title {
      max-width: 660px;
    }

    .about-content > p {
      max-width: 680px;
      color: var(--muted);
      font-size: 15.5px;
    }

    .about-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 13px 18px;
      margin: 28px 0 31px;
    }

    .check-item {
      min-height: 44px;
      display: flex;
      align-items: center;
      gap: 11px;
      color: #453b38;
      font-size: 14px;
      font-weight: 600;
    }

    .check-item__icon {
      width: 28px;
      height: 28px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--brand-red);
      background: #fff0e8;
    }

    .check-item__icon .icon {
      width: 15px;
      height: 15px;
    }

    /* =========================================================
       SERVICES
       ========================================================= */

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 24px;
    }

    .service-card {
      overflow: hidden;
      border: 1px solid #ebddd5;
      border-radius: 16px;
      background: #fff;
      box-shadow: 0 6px 24px rgba(73, 28, 22, 0.045);
      transition:
        transform 350ms var(--ease),
        box-shadow 350ms ease,
        border-color 350ms ease;
    }

    .service-card:hover {
      border-color: rgba(228, 87, 66, 0.28);
      transform: translateY(-7px);
      box-shadow: 0 20px 42px rgba(74, 27, 20, 0.1);
    }

    .service-card__media {
      aspect-ratio: 4 / 3;
      overflow: hidden;
      position: relative;
      background: #e8dfdb;
    }

    .service-card__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 700ms var(--ease);
    }

    .service-card:hover .service-card__media img {
      transform: scale(1.055);
    }

    .service-card__media::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 45%;
      background: linear-gradient(180deg, transparent, rgba(43, 17, 14, 0.28));
    }

    .service-card__icon {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      position: absolute;
      left: 20px;
      bottom: 17px;
      z-index: 2;
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: 12px;
      color: var(--brand-red);
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 10px 24px rgba(43, 18, 14, 0.15);
    }

    .service-card__icon .icon {
      width: 22px;
      height: 22px;
    }

    .service-card__body {
      padding: 24px;
    }

    .service-card h3 {
      margin-bottom: 10px;
      font-family: var(--serif);
      font-size: 21px;
      font-weight: 400;
      line-height: 1.25;
    }

    .service-card p {
      min-height: 74px;
      margin-bottom: 16px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
    }

    /* =========================================================
       DIFFERENCE
       ========================================================= */

    .difference {
      overflow: hidden;
      color: #fff;
      background:
        radial-gradient(
          circle at 84% 4%,
          rgba(252, 173, 56, 0.17),
          transparent 28%
        ),
        radial-gradient(
          circle at 4% 90%,
          rgba(228, 87, 66, 0.22),
          transparent 30%
        ),
        var(--brand-red);
    }

    .difference::before {
      content: "";
      width: 320px;
      height: 320px;
      position: absolute;
      top: -180px;
      right: -120px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 50%;
    }

    .difference__header {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 70px;
      align-items: end;
      margin-bottom: 45px;
    }

    .difference__header .section-title {
      margin-bottom: 0;
    }

    .difference__header p {
      margin: 0;
      color: rgba(255, 255, 255, 0.74);
    }

    .difference-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .difference-card {
      min-height: 202px;
      padding: 25px;
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 16px;
      background: rgb(254 251 249);
      backdrop-filter: blur(4px);
      transition:
        transform 300ms var(--ease),
        background-color 300ms ease,
        border-color 300ms ease;
    }

    .difference-card:hover {
      border-color: rgba(255, 205, 126, 0.35);
      background: rgba(255, 255, 255, 0.11);
      transform: translateY(-5px);
    }

    .difference-card__icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      margin-bottom: 21px;
      border-radius: 12px;
      color: #472315;
      background: var(--gold);
    }

    .difference-card h3 {
      margin-bottom: 9px;
      font-size: 16px;
      line-height: 1.45;
      color:#27261d;
    }

    .difference-card p {
      margin: 0;
    color: rgb(72 93 103);
    font-size: 13.5px;
    line-height: 1.65;
    }

    .difference-photo {
      height: 360px;
      margin-top: 24px;
      overflow: hidden;
      position: relative;
      border-radius: 20px;
      background: #5f2424;
    }

    .difference-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 40%;
    }

    .difference-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          90deg,
          rgba(75, 22, 22, 0.48),
          rgba(75, 22, 22, 0.08)
        );
    }

    .difference-photo__note {
      max-width: 440px;
      position: absolute;
      left: 28px;
      bottom: 26px;
      z-index: 2;
      padding: 15px 18px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      background: rgba(61, 20, 20, 0.66);
      backdrop-filter: blur(10px);
      color: #fff5ef;
      font-size: 13px;
    }

    /* =========================================================
       FACILITIES
       ========================================================= */

    .facility-grid {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      grid-auto-rows: 180px;
      gap: 15px;
    }

    .facility-card {
      overflow: hidden;
      position: relative;
      border-radius: 15px;
      background: #dfd7d1;
      box-shadow: 0 6px 22px rgba(59, 26, 20, 0.05);
    }

    .facility-card:nth-child(1) {
      grid-column: span 7;
      grid-row: span 2;
    }

    .facility-card:nth-child(2),
    .facility-card:nth-child(3) {
      grid-column: span 5;
    }

    .facility-card:nth-child(4),
    .facility-card:nth-child(5),
    .facility-card:nth-child(6) {
      grid-column: span 4;
    }

    .facility-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 700ms var(--ease);
    }

    .facility-card:hover img {
      transform: scale(1.055);
    }

    .facility-card::after {
      content: "";
      position: absolute;
      inset: 40% 0 0;
      background: linear-gradient(180deg, transparent, rgba(32, 15, 12, 0.76));
      transition: opacity 300ms ease;
    }

    .facility-card:hover::after {
      opacity: 0.9;
    }

    .facility-card__label {
      position: absolute;
      z-index: 2;
      left: 18px;
      right: 18px;
      bottom: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      color: #fff;
      font-size: 14px;
      font-weight: 700;
    }

    .facility-card__label span:last-child {
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.42);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(7px);
    }

    .facility-card__label .icon {
      width: 14px;
      height: 14px;
    }

    /* =========================================================
       TEAM
       ========================================================= */

    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 22px;
    }

    .team-card {
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: #fff;
      transition:
        transform 320ms var(--ease),
        box-shadow 320ms ease;
    }

    .team-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
    }

    .team-card__image {
      aspect-ratio: 4 / 4.5;
      overflow: hidden;
      background: #e9e1dc;
    }

    .team-card__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      transition: transform 650ms var(--ease);
    }

    .team-card:hover .team-card__image img {
      transform: scale(1.04);
    }

    .team-card__body {
      padding: 20px;
    }

    .team-card h3 {
      margin-bottom: 4px;
      font-family: var(--serif);
      font-size: 20px;
      font-weight: 400;
    }

    .team-card__role {
      margin-bottom: 5px;
      color: var(--brand-red);
      font-size: 12.5px;
      font-weight: 700;
    }

    .team-card__qualification {
      margin-bottom: 13px;
      color: var(--muted);
      font-size: 12.5px;
    }

    /* =========================================================
       FAQ
       ========================================================= */

    .faq-layout {
      display: grid;
      grid-template-columns: 0.78fr 1.22fr;
      gap: 72px;
      align-items: start;
    }

    .faq-intro {
      position: sticky;
      top: 122px;
    }

    .faq-intro .section-title {
      max-width: 460px;
    }

    .faq-support-box {
      margin-top: 30px;
      padding: 20px;
      border: 1px solid #efded4;
      border-radius: 15px;
      background: var(--peach);
    }

    .faq-support-box strong {
      display: block;
      margin-bottom: 5px;
      color: var(--brand-red);
      font-size: 14px;
    }

    .faq-support-box p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
    }

    .faq-list {
      border-top: 1px solid #e9ddd7;
    }

    .faq-item {
      border-bottom: 1px solid #e9ddd7;
      transition: background-color 250ms ease;
    }

    .faq-item.is-open {
      padding-inline: 16px;
      border-radius: 12px;
      background: #fff5ee;
    }

    .faq-question {
      width: 100%;
      min-height: 70px;
      display: grid;
      grid-template-columns: 1fr 38px;
      align-items: center;
      gap: 18px;
      padding: 16px 0;
      color: var(--text);
      background: transparent;
      cursor: pointer;
      text-align: left;
      font-size: 15px;
      font-weight: 650;
    }

    .faq-toggle {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border: 1px solid #e4d5cd;
      border-radius: 50%;
      color: var(--brand-red);
      background: #fff;
      position: relative;
    }

    .faq-toggle::before,
    .faq-toggle::after {
      content: "";
      width: 12px;
      height: 1.5px;
      position: absolute;
      border-radius: 99px;
      background: currentColor;
      transition: transform 250ms ease;
    }

    .faq-toggle::after {
      transform: rotate(90deg);
    }

    .faq-item.is-open .faq-toggle::after {
      transform: rotate(0deg);
    }

    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 360ms var(--ease);
    }

    .faq-item.is-open .faq-answer {
      grid-template-rows: 1fr;
    }

    .faq-answer__inner {
      overflow: hidden;
    }

    .faq-answer p {
      max-width: 780px;
      margin: 0;
      padding: 0 50px 20px 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }

    /* =========================================================
       CTA
       ========================================================= */

    .final-cta {
      padding: 28px 0;
      overflow: hidden;
      position: relative;
      color: #fff;
      background:
        radial-gradient(
          circle at 88% 35%,
          rgba(252, 173, 56, 0.22),
          transparent 24%
        ),
        var(--brand-red);
    }

    .final-cta::before {
      content: "";
      width: 390px;
      height: 390px;
      position: absolute;
      right: -150px;
      top: -190px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 50%;
    }

    .final-cta__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 50px;
      position: relative;
      z-index: 1;
    }

    .final-cta__copy {
      max-width: 720px;
    }

    .final-cta h2 {
         margin-bottom: 12px;
    font-family: var(--serif);
    font-size: clamp(26px, 2.4vw, 25px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: 0.5px;
    }

    .final-cta p {
      margin: 0;
      color: rgba(255, 255, 255, 0.77);
      font-size: 15.5px;
    }

    .final-cta__actions {
      display: flex;
      flex: 0 0 auto;
      flex-wrap: wrap;
      gap: 10px;
    }

    /* =========================================================
       FOOTER
       ========================================================= */

    .footer {
      padding-top: 74px;
      color: rgba(255, 255, 255, 0.75);
      background:
        linear-gradient(
          180deg,
          var(--dark-burgundy),
          var(--dark-footer)
        );
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 0.78fr 1.2fr 0.9fr 1.2fr;
      gap: 42px;
      padding-bottom: 56px;
    }

    .footer-brand img {
      width: 190px;
      max-height: 64px;
      margin-bottom: 21px;
      object-fit: contain;
      object-position: left center;
      filter: none;
    }

    .footer-brand p {
      max-width: 310px;
      margin-bottom: 22px;
      color: rgba(255, 255, 255, 0.66);
      font-size: 13px;
      line-height: 1.75;
    }

    .footer-socials {
      display: flex;
      gap: 8px;
    }

    .footer-socials .social-link {
      width: 38px;
      height: 38px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: #fff;
      background: rgba(255, 255, 255, 0.05);
    }

    .footer h3 {
      margin-bottom: 20px;
      color: #fff;
      font-size: 14px;
      letter-spacing: 0.02em;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: rgba(255, 255, 255, 0.66);
      font-size: 13px;
      transition:
        color 200ms ease,
        transform 200ms ease;
    }

    .footer-links a::before {
      content: "";
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold);
      opacity: 0.72;
    }

    .footer-links a:hover {
      color: #fff;
      transform: translateX(3px);
    }

    .footer-contact {
      display: grid;
      gap: 14px;
    }

    .footer-contact__item {
      display: grid;
      grid-template-columns: 32px 1fr;
      gap: 10px;
      align-items: start;
      color: rgba(255, 255, 255, 0.68);
      font-size: 13px;
    }

    .footer-contact__icon {
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: var(--gold);
      background: rgba(255, 255, 255, 0.06);
    }

    .footer-contact__icon .icon {
      width: 15px;
      height: 15px;
    }

    .footer-contact__item a:hover {
      color: #fff;
    }

    .footer-bottom {
      min-height: 66px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.52);
      font-size: 12px;
    }

    .footer-bottom__links {
      display: flex;
      flex-wrap: wrap;
      gap: 22px;
    }

    .footer-bottom a:hover {
      color: #fff;
    }

    /* =========================================================
       FLOATING CONTROLS
       ========================================================= */

    .contact-rail {
      position: fixed;
      right: 14px;
      top: 50%;
      z-index: 1000;
      display: grid;
      gap: 8px;
      transform: translateY(-50%);
    }

    .rail-link {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      overflow: hidden;
      margin-left: auto;
      padding: 0 14px;
      border-radius: 24px;
      color: #fff;
      background: var(--brand-red);
      box-shadow: 0 10px 25px rgba(62, 26, 20, 0.17);
      transition:
        width 320ms var(--ease),
        background-color 220ms ease,
        transform 220ms var(--ease);
    }

    .rail-link--whatsapp {
      background: #297c4e;
    }

    .rail-link--location {
      background: var(--orange);
    }

    .rail-link:hover {
      width: 126px;
      transform: translateX(-2px);
    }

    .rail-link .icon {
      width: 19px;
      height: 19px;
      min-width: 19px;
    }

    .rail-link span {
      margin-left: 10px;
      opacity: 0;
      white-space: nowrap;
      font-size: 12px;
      font-weight: 700;
      transition: opacity 180ms ease 60ms;
    }

    .rail-link:hover span {
      opacity: 1;
    }

    .scroll-top {
      width: 46px;
      height: 46px;
      position: fixed;
      left: 18px;
      bottom: 22px;
      z-index: 999;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: var(--brand-red);
      box-shadow: 0 12px 28px rgba(71, 28, 21, 0.18);
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px);
      transition:
        opacity 250ms ease,
        visibility 250ms ease,
        transform 250ms var(--ease),
        background-color 250ms ease;
    }

    .scroll-top.is-visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .scroll-top:hover {
      background: var(--coral);
      transform: translateY(-3px);
    }

    .scroll-top .icon {
      width: 19px;
      height: 19px;
    }

    /* =========================================================
       MOBILE BOTTOM NAV
       ========================================================= */

    .mobile-bottom-nav {
      display: none;
    }

    /* =========================================================
       TOAST
       ========================================================= */

    .toast {
      max-width: min(390px, calc(100vw - 32px));
      position: fixed;
      left: 50%;
      bottom: 28px;
      z-index: 5000;
      padding: 13px 16px;
      border-radius: 11px;
      color: #fff;
      background: #32201e;
      box-shadow: var(--shadow-lg);
      font-size: 13px;
      line-height: 1.5;
      opacity: 0;
      visibility: hidden;
      transform: translate(-50%, 12px);
      transition:
        opacity 250ms ease,
        visibility 250ms ease,
        transform 250ms var(--ease);
    }

    .toast.is-visible {
      opacity: 1;
      visibility: visible;
      transform: translate(-50%, 0);
    }

    /* =========================================================
       REVEAL ANIMATION
       ========================================================= */

    .js .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition:
        opacity 650ms var(--ease),
        transform 650ms var(--ease);
    }

    .js .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .js .reveal-delay-1 {
      transition-delay: 70ms;
    }

    .js .reveal-delay-2 {
      transition-delay: 140ms;
    }

    .js .reveal-delay-3 {
      transition-delay: 210ms;
    }

    /* =========================================================
       RESPONSIVE
       ========================================================= */

    @media (max-width: 1180px) {
      .container {
        width: min(calc(100% - 48px), var(--container));
      }

      .desktop-nav {
        gap: 0;
      }

      .nav-link,
      .nav-trigger {
        padding-inline: 10px;
      }

      .header-inner {
        gap: 22px;
      }

      .brand img {
        width: 180px;
      }

      .header-cta {
        padding-inline: 15px;
      }

      .about-grid {
        gap: 52px;
      }

      .footer-grid {
        grid-template-columns: 1.3fr 0.8fr 1.2fr 0.9fr;
      }

      .footer-grid > :last-child {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 1040px) {
      :root {
        --section-space: 82px;
      }

      .desktop-nav,
      .header-cta {
        display: none;
      }

      .mobile-menu-button {
        display: inline-flex;
      }

      .mobile-menu {
        display: block;
      }

      .topbar__inner {
        grid-template-columns: auto 1fr auto;
      }

      .topbar__contacts .topbar__link:nth-child(3) {
        display: none;
      }

      .trust-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .trust-card:nth-child(3)::after {
        display: none;
      }

      .trust-card:nth-child(n + 4) {
        border-top: 1px solid #f0e5df;
      }

      .about-grid {
        grid-template-columns: 0.95fr 1.05fr;
        gap: 42px;
      }

      .about-collage {
        height: 530px;
      }

      .about-image-main {
        height: 460px;
      }

      .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .difference__header {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .faq-layout {
        gap: 45px;
      }
    }

    @media (max-width: 820px) {
      .container {
        width: min(calc(100% - 40px), var(--container));
      }

      .topbar__inner {
        grid-template-columns: auto 1fr;
        gap: 18px;
      }

      .topbar__contacts .topbar__link:not(:first-child),
      .topbar__socials {
        display: none;
      }

      .hero {
        height: 560px;
        min-height: 540px;
      }

      .hero-title {
        font-size: clamp(38px, 7vw, 48px);
      }

      .hero-copy {
        max-width: 570px;
        font-size: 15.5px;
      }

      .hero-controls {
        bottom: 28px;
        width: min(calc(100% - 40px), var(--container));
      }

      .trust-wrap {
        margin-top: 0;
        padding-top: 20px;
      }

      .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 15px;
      }

      .trust-card:nth-child(2)::after,
      .trust-card:nth-child(4)::after {
        display: none;
      }

      .trust-card:nth-child(3)::after {
        display: block;
      }

      .trust-card:nth-child(n + 3) {
        border-top: 1px solid #f0e5df;
      }

      .about-grid {
        grid-template-columns: 1fr;
      }

      .about-collage {
        width: min(100%, 630px);
        margin-inline: auto;
      }

      .difference-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .facility-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
      }

      .facility-card:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
      }

      .facility-card:nth-child(1) {
        grid-column: 1 / -1;
        height: 360px;
      }

      .faq-layout {
        grid-template-columns: 1fr;
      }

      .faq-intro {
        position: static;
      }

      .final-cta__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid > :last-child {
        grid-column: auto;
      }
    }

    @media (max-width: 640px) {
      :root {
        --section-space: 64px;
        --header-height: 76px;
      }

      body {
        padding-bottom: calc(70px + env(safe-area-inset-bottom));
      }

      .container {
        width: min(calc(100% - 32px), var(--container));
      }

      .topbar {
        height: 38px;
      }

      .topbar__inner {
        gap: 12px;
      }

      .topbar__link {
        font-size: 0;
      }

      .topbar__link span {
        display: none;
      }

      .topbar__link .icon {
        width: 16px;
        height: 16px;
      }

      .marquee {
        font-size: 11px;
      }

      .mobile-menu {
        inset: calc(var(--header-height) + 38px) 0 0;
      }

      .brand img {
        width: 145px;
        max-height: 53px;
      }

      .header-inner {
        gap: 16px;
      }

      .mobile-menu-button {
        width: 44px;
        height: 44px;
      }

      .section-label {
        font-size: 11px;
      }

      .section-title {
        font-size: clamp(29px, 8vw, 34px);
      }

      .section-heading-row {
        display: block;
        margin-bottom: 32px;
      }

      .section-heading-row .section-intro {
        margin-top: 0;
      }

      .hero {
        height: 560px;
        min-height: 540px;
      }

      .hero-slide::before {
        background:
          linear-gradient(
            90deg,
            rgba(38, 17, 15, 0.88),
            rgba(46, 21, 18, 0.66) 72%,
            rgba(40, 18, 15, 0.45)
          );
      }

      .hero__container {
        align-items: flex-end;
        padding-bottom: 104px;
      }

      .hero-eyebrow {
        margin-bottom: 12px;
        font-size: 10.5px;
      }

      .hero-title {
        margin-bottom: 15px;
        font-size: clamp(34px, 10vw, 40px);
      }

      .hero-copy {
        margin-bottom: 21px;
        font-size: 14.5px;
        line-height: 1.65;
      }

      .hero-actions {
        gap: 9px;
      }

      .hero-actions .btn {
        min-height: 46px;
        padding-inline: 16px;
        font-size: 12.5px;
      }

      .hero-controls {
        bottom: 22px;
        width: calc(100% - 32px);
      }

      .hero-arrow {
        width: 42px;
        height: 42px;
      }

      .hero-counter__bar {
        width: 42px;
      }

      .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .trust-card {
        min-height: 136px;
        padding: 18px 14px;
      }

      .trust-card h3 {
        font-size: 13px;
      }

      .trust-card p {
        font-size: 11.5px;
      }

      .trust-card:nth-child(5) {
        grid-column: 1 / -1;
      }

      .trust-card:nth-child(5)::after {
        display: none;
      }

      .about-collage {
        height: 430px;
      }

      .about-image-main {
        width: 88%;
        height: 370px;
      }

      .about-image-small {
        width: 53%;
        height: 190px;
        border-width: 6px;
      }

      .about-badge {
        top: 18px;
        right: 2px;
        max-width: 175px;
        padding: 12px 13px;
        font-size: 10.5px;
      }

      .about-accent {
        width: 110px;
        height: 110px;
      }

      .about-points {
        grid-template-columns: 1fr;
        gap: 7px;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .service-card p {
        min-height: auto;
      }

      .difference-grid {
        grid-template-columns: 1fr;
      }

      .difference-card {
        min-height: 170px;
      }

      .difference-photo {
        height: 310px;
      }

      .difference-photo__note {
        left: 14px;
        right: 14px;
        bottom: 14px;
      }

      .facility-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
      }

      .facility-card:nth-child(1) {
        grid-column: auto;
        height: 310px;
      }

      .team-grid {
        grid-template-columns: 1fr;
      }

      .team-card {
        display: grid;
        grid-template-columns: 42% 58%;
      }

      .team-card__image {
        aspect-ratio: auto;
        min-height: 230px;
      }

      .team-card__body {
        align-self: center;
        padding: 18px;
      }

      .faq-question {
        grid-template-columns: 1fr 34px;
        min-height: 64px;
        font-size: 14px;
      }

      .faq-answer p {
        padding-right: 0;
      }

      .final-cta {
        padding: 58px 0;
      }

      .final-cta h2 {
        font-size: 31px;
      }

      .final-cta__actions {
        width: 100%;
      }

      .final-cta__actions .btn {
        flex: 1;
        min-width: 140px;
      }

      .footer {
        padding-top: 58px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-bottom: 42px;
      }

      .footer-brand img {
        width: 170px;
      }

      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 0 22px;
        gap: 8px;
      }

      .contact-rail {
        display: none;
      }

      .scroll-top {
        left: auto;
        right: 14px;
        bottom: calc(82px + env(safe-area-inset-bottom));
      }

      .mobile-bottom-nav {
        min-height: calc(66px + env(safe-area-inset-bottom));
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2000;
        padding-bottom: env(safe-area-inset-bottom);
        border-top: 1px solid #eaded8;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 -7px 24px rgba(52, 21, 16, 0.1);
        backdrop-filter: blur(14px);
      }

      .mobile-bottom-nav a {
        min-width: 0;
        min-height: 66px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4px;
        color: #5f5652;
        font-size: 9.5px;
        font-weight: 650;
      }

      .mobile-bottom-nav a:nth-child(3) {
        color: var(--brand-red);
      }

      .mobile-bottom-nav .icon {
        width: 19px;
        height: 19px;
      }

      .toast {
        bottom: calc(82px + env(safe-area-inset-bottom));
      }
    }

    @media (max-width: 390px) {
      .container {
        width: calc(100% - 28px);
      }

      .brand img {
        width: 137px;
      }

      .hero__container {
        padding-bottom: 100px;
      }

      .hero-title {
        font-size: 34px;
      }

      .hero-copy {
        font-size: 14px;
      }

      .hero-actions .btn {
        padding-inline: 13px;
      }

      .trust-card {
        padding-inline: 12px;
      }

      .team-card {
        grid-template-columns: 40% 60%;
      }

      .team-card h3 {
        font-size: 18px;
      }
    }

    @media (max-width: 360px) {
      .hero-actions {
        flex-direction: column;
        align-items: flex-start;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .hero {
        height: 590px;
      }

      .trust-grid {
        grid-template-columns: 1fr;
      }

      .trust-card:nth-child(n) {
        grid-column: auto;
        border-top: 1px solid #f0e5df;
      }

      .trust-card:first-child {
        border-top: 0;
      }

      .trust-card::after {
        display: none !important;
      }

      .team-card {
        grid-template-columns: 1fr;
      }

      .team-card__image {
        height: 300px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }

      .marquee__track {
        animation: none;
      }

      .js .reveal {
        opacity: 1;
        transform: none;
      }
    }
    
    
    
    /*gallery css*/
    /* =========================================
   VDF REHAB GALLERY
========================================= */

.vdf-gallery-section,
.vdf-gallery-section * {
    box-sizing: border-box;
}

.vdf-gallery-section {
    position: relative;
    padding: 90px 20px;
    background:
        radial-gradient(circle at 8% 15%, rgba(27,149,80,.08), transparent 28%),
        radial-gradient(circle at 92% 90%, rgba(242,138,23,.08), transparent 25%),
        #f7faf8;
    overflow: hidden;
}

.vdf-gallery-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}


/* Heading */

.vdf-gallery-heading-wrap {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.vdf-gallery-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #eb7f31;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.vdf-gallery-heading-wrap h2 {
    margin: 0 0 15px;
    color: #123f31;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 800;
}

.vdf-gallery-heading-wrap h2 span {
    color: #eb7f31;
}

.vdf-gallery-heading-wrap p {
    margin: 0 auto;
    color: #66756f;
    font-size: 16px;
    line-height: 1.8;
}


/* Filters */

.vdf-gallery-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.vdf-gallery-filter {
    border: 1px solid #dce8e1;
    background: #fff;
    color: #40544c;
    padding: 11px 19px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

.vdf-gallery-filter:hover,
.vdf-gallery-filter.active {
    background: #168447;
    border-color: #168447;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22,132,71,.18);
}


/* Gallery */

.vdf-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
}

.vdf-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #e9efeb;
    cursor: pointer;
    transition:
        opacity .35s ease,
        transform .35s ease;
}

.vdf-gallery-item.vdf-gallery-hidden {
    display: none;
}

.vdf-gallery-item.vdf-gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.vdf-gallery-item.vdf-gallery-wide {
    grid-column: span 2;
}

.vdf-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.vdf-gallery-item:hover img {
    transform: scale(1.075);
}


/* Overlay */

.vdf-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 15px;
    padding: 22px;
    background: linear-gradient(
        to top,
        rgba(8,42,30,.85) 0%,
        rgba(8,42,30,.20) 55%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity .35s ease;
}

.vdf-gallery-item:hover .vdf-gallery-overlay {
    opacity: 1;
}

.vdf-gallery-overlay span {
    display: block;
    margin-bottom: 5px;
    color: #f5a13a;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.vdf-gallery-overlay h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}

.vdf-gallery-view {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #168447;
    cursor: pointer;
    font-size: 17px;
    transition: .3s ease;
}

.vdf-gallery-view:hover {
    background: #f28a17;
    color: #fff;
    transform: rotate(5deg) scale(1.07);
}


/* Bottom CTA */

.vdf-gallery-bottom {
    margin-top: 35px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-radius: 18px;
    background: #123f31;
    box-shadow: 0 18px 45px rgba(18,63,49,.12);
}

.vdf-gallery-bottom-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255,255,255,.1);
    color: #f5a13a;
    font-size: 22px;
}

.vdf-gallery-bottom-text {
    flex: 1;
}

.vdf-gallery-bottom-text strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 17px;
}

.vdf-gallery-bottom-text span {
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.6;
}

.vdf-gallery-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 21px;
    border-radius: 10px;
    background: #f28a17;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: .3s ease;
}

.vdf-gallery-btn:hover {
    background: #fff;
    color: #123f31;
    transform: translateY(-2px);
}

 
/* =========================================
   LIGHTBOX
========================================= */

.vdf-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 85px;
    background: rgba(4,20,14,.94);
    backdrop-filter: blur(7px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .3s ease;
}

.vdf-gallery-lightbox.vdf-gallery-lightbox-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.vdf-gallery-lightbox-content {
    position: relative;
    max-width: 1050px;
    width: 100%;
    max-height: 85vh;
}

.vdf-gallery-lightbox-content img {
    display: block;
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 16px;
}

.vdf-gallery-lightbox-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(8,42,30,.78);
    backdrop-filter: blur(8px);
}

.vdf-gallery-lightbox-caption span {
    display: block;
    color: #f5a13a;
    margin-bottom: 3px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.vdf-gallery-lightbox-caption h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
}


/* Lightbox Controls */

.vdf-gallery-lightbox-close,
.vdf-gallery-lightbox-prev,
.vdf-gallery-lightbox-next {
    position: absolute;
    border: 0;
    background: rgba(255,255,255,.12);
    color: #fff;
    cursor: pointer;
    transition: .3s ease;
}

.vdf-gallery-lightbox-close:hover,
.vdf-gallery-lightbox-prev:hover,
.vdf-gallery-lightbox-next:hover {
    background: #168447;
}

.vdf-gallery-lightbox-close {
    top: 22px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 20px;
}

.vdf-gallery-lightbox-prev,
.vdf-gallery-lightbox-next {
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

.vdf-gallery-lightbox-prev {
    left: 24px;
}

.vdf-gallery-lightbox-next {
    right: 24px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .vdf-gallery-section {
        padding: 70px 18px;
    }

    .vdf-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 230px;
    }

    .vdf-gallery-item.vdf-gallery-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .vdf-gallery-item.vdf-gallery-wide {
        grid-column: span 2;
    }

    .vdf-gallery-overlay {
        opacity: 1;
    }

    .vdf-gallery-bottom {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .vdf-gallery-btn {
        margin-left: 72px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .vdf-gallery-section {
        padding: 55px 14px;
    }

    .vdf-gallery-heading-wrap {
        margin-bottom: 28px;
    }

    .vdf-gallery-heading-wrap h2 {
        font-size: 30px;
    }

    .vdf-gallery-heading-wrap p {
        font-size: 14px;
    }

    .vdf-gallery-filters {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 7px;
        scrollbar-width: none;
    }

    .vdf-gallery-filters::-webkit-scrollbar {
        display: none;
    }

    .vdf-gallery-filter {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .vdf-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
        gap: 12px;
    }

    .vdf-gallery-item,
    .vdf-gallery-item.vdf-gallery-large,
    .vdf-gallery-item.vdf-gallery-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .vdf-gallery-overlay {
        padding: 17px;
    }

    .vdf-gallery-overlay h3 {
        font-size: 16px;
    }

    .vdf-gallery-bottom {
        padding: 20px;
        display: block;
        text-align: center;
    }

    .vdf-gallery-bottom-icon {
        margin: 0 auto 13px;
    }

    .vdf-gallery-bottom-text {
        margin-bottom: 17px;
    }

    .vdf-gallery-btn {
        margin: 0;
        justify-content: center;
        width: 100%;
    }

    .vdf-gallery-lightbox {
        padding: 70px 12px 25px;
    }

    .vdf-gallery-lightbox-prev,
    .vdf-gallery-lightbox-next {
        width: 42px;
        height: 42px;
        top: auto;
        bottom: 18px;
        transform: none;
        z-index: 2;
    }

    .vdf-gallery-lightbox-prev {
        left: calc(50% - 52px);
    }

    .vdf-gallery-lightbox-next {
        right: calc(50% - 52px);
    }

    .vdf-gallery-lightbox-close {
        top: 15px;
        right: 15px;
    }

    .vdf-gallery-lightbox-caption {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }

}
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
  