﻿  :root {
    --navy: #1a2d4d;
    --dark-green: #2d5016;
    --mid-green: #3a6b1e;
    --gold: #c9952a;
    --gold-light: #e8b84b;
    --cream: #f8f5ef;
    --white: #ffffff;
    --gray-light: #f4f1eb;
    --gray-mid: #e8e3d8;
    --text-dark: #1a1a1a;
    --text-mid: #4a4a4a;
    --text-light: #7a7a7a;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html {
    scroll-behavior: smooth;
    overflow-x: clip;
    max-width: 100%;
  }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: clip;
    max-width: 100%;
  }

  body.page-home {
    overflow-x: clip;
  }

  /* TOP BAR */
  .topbar {
    background: var(--navy);
    color: #aab8ce;
    font-size: 13px;
    padding: 8px 0;
    max-height: 120px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.25s ease;
  }

  .site-header.is-scrolled .topbar {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    pointer-events: none;
  }
  .topbar .inner {
    max-width: 1280px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .topbar a { color: #aab8ce; text-decoration: none; }
  .topbar a:hover { color: var(--gold-light); }
  .topbar .left, .topbar .right { display: flex; align-items: center; gap: 20px; }
  .topbar i { color: var(--gold); margin-right: 5px; }
  .social-top a { color: #aab8ce; font-size: 14px; transition: color .2s; }
  .social-top a:hover { color: var(--gold-light); }

  /* SITE HEADER */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1001;
    background: var(--white);
    transition: background 0.35s ease, box-shadow 0.35s ease;
  }

  /* Home hero — transparent header before scroll */
  body.page-home .site-header:not(.is-scrolled) {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    box-shadow: none;
  }

  body.page-home .site-header:not(.is-scrolled) .topbar {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    pointer-events: none;
  }

  body.page-home .site-header:not(.is-scrolled) nav {
    background: transparent;
    box-shadow: none;
  }

  body.page-home .site-header:not(.is-scrolled) .nav-links > li > a:not(.nav-cta) {
    color: rgba(255, 255, 255, 0.92);
  }

  body.page-home .site-header:not(.is-scrolled) .nav-links > li > a:not(.nav-cta):hover,
  body.page-home .site-header:not(.is-scrolled) .nav-links > li > a:not(.nav-cta).active {
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.08);
  }

  body.page-home .site-header:not(.is-scrolled) .dropdown-toggle .dropdown-chevron {
    color: rgba(255, 255, 255, 0.85);
  }

  /* body.page-home .site-header:not(.is-scrolled) .logo img {
    filter: brightness(0) invert(1);
  } */

  body.page-home .site-header:not(.is-scrolled) .hamburger span {
    background: var(--white);
  }

  body.page-home .site-header:not(.is-scrolled) .hamburger:hover {
    background: rgba(255, 255, 255, 0.12);
  }

  body.page-home .site-header.is-scrolled {
    position: sticky;
    background: var(--white);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  }

  /* NAVBAR */
  nav {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
    transition: background 0.35s ease, box-shadow 0.35s ease;
  }
  .nav-inner {
    max-width: 1280px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 70px;
  }
  .logo {
    display: flex;
    align-items: center;
    flex: 0 1 auto;
    min-width: 0;
    text-decoration: none;
    background: transparent;
    padding: 0;
    border-radius: 0;
  }

  /* Logo panel only over home hero; hidden when sticky / scrolled */
  body.page-home .site-header:not(.is-scrolled) .logo {
    background: #f3f3f4;
    padding: 10px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  .logo img {
    display: block;
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
  }
  .nav-links { display: flex; list-style: none; gap: 6px; align-items: center; }
  .nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    font-size: 14.5px;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all .2s;
    position: relative;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--dark-green); }
  .nav-links .dropdown { position: relative; }
  .nav-links .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,.12);
    min-width: 190px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: all .25s;
    border-top: 3px solid var(--gold);
    z-index: 200;
  }
  .nav-links .dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
  .nav-links .dropdown-menu a { display: block; padding: 10px 18px; border-radius: 0; font-size: 13.5px; color: var(--text-mid); }
  .nav-links .dropdown-menu a:hover,
  .nav-links .dropdown-menu a.active { background: var(--gray-light); color: var(--dark-green); font-weight: 600; }
  .nav-cta-item {
    list-style: none;
  }

  .nav-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: var(--dark-green);
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    white-space: nowrap;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
  }

  .nav-cta i {
    font-size: 13px;
  }

  .nav-cta:hover {
    background: var(--mid-green) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
  }

  .nav-phone-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    box-shadow: 0 4px 14px rgba(201, 149, 42, 0.32);
  }

  .nav-phone-cta:hover {
    background: var(--gold-light) !important;
    color: var(--navy) !important;
    box-shadow: 0 6px 18px rgba(201, 149, 42, 0.42);
    transform: translateY(-1px);
  }

  body.page-home .site-header:not(.is-scrolled) .nav-phone-cta {
    background: var(--gold-light) !important;
    color: var(--navy) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  }

  body.page-home .site-header:not(.is-scrolled) .nav-phone-cta:hover {
    background: var(--gold) !important;
    color: var(--navy) !important;
  }

  @media (max-width: 1180px) {
    .nav-phone-cta span {
      display: none;
    }

    .nav-phone-cta {
      padding: 10px 14px !important;
    }
  }

  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
    margin-left: auto;
    border: none;
    background: transparent;
    width: 44px;
    height: 44px;
    border-radius: 8px;
  }
  .hamburger:hover { background: var(--gray-light); }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 45, 77, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .nav-backdrop.open {
    display: block;
    opacity: 1;
  }
  body.nav-open { overflow: hidden; }
  body.nav-open .hero-re-icons { visibility: hidden; }

  /* HERO */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 48px;
    container-type: size;
    container-name: hero;
  }
  .hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }
  /* Cover hero at 16:9 — sized to .hero box, not viewport (avoids stretch with max-height) */
  .hero-video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(100cqw, calc(100cqh * 16 / 9));
    height: max(100cqh, calc(100cqw * 9 / 16));
    transform: translate(-50%, -50%);
    border: 0;
  }
  /* Fallback when container queries unsupported */
  @supports not (width: 1cqw) {
    .hero-video-iframe {
      width: auto;
      height: auto;
      min-width: 100%;
      min-height: 100%;
      aspect-ratio: 16 / 9;
    }
  }
  .hero-poster-fallback {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../images/stock/hero-plot.jpg');
    background-size: cover;
    background-position: center;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(110deg, rgba(26,45,77,.82) 0%, rgba(26,45,77,.5) 55%, rgba(45,80,22,.35) 100%);
    z-index: 1;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    flex-shrink: 0;
    margin-top: 150px;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,149,42,.18);
    border: 1px solid rgba(201,149,42,.45);
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 22px;
    backdrop-filter: blur(6px);
  }
  .hero-badge i { font-size: 10px; }
  .hero-title {
    margin-bottom: 20px;
    max-width: 560px;
  }
  .hero-title-main {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
  }
  .hero-highlight {
    color: var(--gold-light);
    font-weight: 700;
    font-style: italic;
  }
  .hero-title-sub {
    display: block;
    margin-top: 12px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: clamp(0.875rem, 2vw, 1.05rem);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
  }
  @media (min-width: 768px) {
    .hero-title-main {
      white-space: nowrap;
    }
  }
  .hero p {
    color: rgba(255,255,255,.82);
    font-size: 17px;
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 36px;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-outline-white {
    border: 2px solid rgba(255,255,255,.6);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    backdrop-filter: blur(6px);
    background: rgba(255,255,255,.06);
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
  .hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 0;
    margin-top: 56px;
    background: rgba(255,255,255,.95);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
    flex-shrink: 0;
  }
  .stat-item {
    padding: 20px 36px;
    text-align: center;
    border-right: 1px solid var(--gray-mid);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-green);
  }
  .stat-num span { color: var(--gold); }
  .stat-label { font-size: 12px; color: var(--text-light); font-weight: 500; letter-spacing: .5px; margin-top: 2px; }

  /* QUICK BUTTONS (right side floating) */
  .quick-btns {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    overflow: visible;
    pointer-events: none;
  }
  .quick-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 48px;
    padding: 12px 14px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    border-radius: 8px 0 0 8px;
    transition: width .3s ease;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    pointer-events: auto;
  }
  .quick-btn:hover { width: 180px; }
  .quick-btn i { font-size: 18px; flex-shrink: 0; width: 20px; text-align: center; }
  .quick-btn span {
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: opacity .2s ease .05s;
  }
  .quick-btn:hover span {
    opacity: 1;
    max-width: 140px;
  }
  .quick-btn.call { background: var(--dark-green); }
  .quick-btn.whatsapp { background: #25d366; }
  .quick-btn.facebook { background: #1877f2; }
  .quick-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
  .quick-btn.enquiry { background: var(--navy); }
  .quick-btn.youtube { background: #ff0000; }

  /* FLOATING ACTIONS (bottom) */
  .fab-call {
    position: fixed; bottom: 24px; left: 24px;
    background: var(--dark-green); color: var(--white);
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; text-decoration: none;
    box-shadow: 0 4px 20px rgba(45,80,22,.4);
    z-index: 900; animation: pulse 2s infinite;
  }
  .fab-wa {
    position: fixed; bottom: 24px; left: 90px;
    background: #25d366; color: var(--white);
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    z-index: 900; animation: pulse-wa 2s infinite;
  }
  @keyframes pulse { 0%,100%{box-shadow:0 4px 20px rgba(45,80,22,.4)} 50%{box-shadow:0 4px 30px rgba(45,80,22,.7),0 0 0 8px rgba(45,80,22,.12)} }
  @keyframes pulse-wa { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.4)} 50%{box-shadow:0 4px 30px rgba(37,211,102,.7),0 0 0 8px rgba(37,211,102,.12)} }

  /* MOBILE BOTTOM NAV (app-style) */
  .mobile-bottom-nav {
    display: none;
    box-sizing: border-box;
  }

  /* SECTION HELPERS */
  section { padding: 90px 0; }
  .container { max-width: 1280px; margin: auto; padding: 0 24px; }
  .section-label {
    font-size: 12px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--gold);
    display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
  }
  .section-label::before { content:''; width: 30px; height: 2px; background: var(--gold); }
  h2.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 18px;
  }
  .section-desc { color: var(--text-mid); font-size: 16px; line-height: 1.8; max-width: 560px; }

  /* ABOUT */
  #about { background: var(--white); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-media {
    position: relative; border-radius: 20px; overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,.12);
  }
  .about-media img { width: 100%; height: 480px; object-fit: cover; display: block; }
  .about-play {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(26,45,77,.25); cursor: pointer; text-decoration: none;
  }
  .play-circle {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--gold); display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 26px; padding-left: 4px;
    box-shadow: 0 0 0 12px rgba(201,149,42,.2);
    transition: transform .3s;
  }
  .about-play:hover .play-circle { transform: scale(1.1); }
  .about-badge {
    position: absolute; bottom: 24px; right: 24px;
    background: var(--navy); color: var(--white);
    padding: 18px 24px; border-radius: 14px;
    text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,.2);
  }
  .about-badge .num { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--gold-light); font-weight: 700; }
  .about-badge small { font-size: 12px; opacity: .8; display: block; }
  .about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
  .feature-row {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 18px; background: var(--gray-light);
    border-radius: 12px; border-left: 3px solid var(--dark-green);
  }
  .feature-icon { color: var(--dark-green); font-size: 20px; margin-top: 2px; flex-shrink: 0; }
  .feature-text strong { display: block; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
  .feature-text span { font-size: 13.5px; color: var(--text-mid); }

  /* WHY US STATS */
  #why { background: var(--navy); padding: 36px 0; }
  .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
  .why-item {
    padding: 24px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.08);
  }
  .why-item:last-child { border-right: none; }
  .why-num {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
  }
  .why-label { color: rgba(255,255,255,.7); font-size: 13px; margin-top: 4px; font-weight: 500; }

  /* PROJECTS */
  #projects { background: var(--cream); }
  .projects-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
  .projects-filters {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }
  .filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
  .filter-tabs--area {
    flex-wrap: nowrap;
    justify-content: flex-start;
    max-width: min(100%, 720px);
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .filter-tabs--area::-webkit-scrollbar { height: 6px; }
  .filter-tabs--area::-webkit-scrollbar-thumb {
    background: rgba(26, 45, 74, 0.25);
    border-radius: 3px;
  }
  .filter-tabs--area .filter-tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .filter-tabs--area .filter-tab {
    font-size: 12.5px;
    padding: 7px 16px;
    border-color: rgba(45, 80, 22, 0.25);
  }
  .filter-tabs--area .filter-tab.active,
  .filter-tabs--area .filter-tab:hover {
    background: var(--navy);
    border-color: var(--navy);
  }
  .filter-tab {
    padding: 8px 20px; border-radius: 30px; font-size: 13.5px; font-weight: 600;
    cursor: pointer; transition: all .2s;
    border: 2px solid var(--gray-mid);
    background: var(--white); color: var(--text-mid);
    font-family: inherit;
  }
  .filter-tab.active, .filter-tab:hover { background: var(--dark-green); color: var(--white); border-color: var(--dark-green); }
  .projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .project-card[hidden] { display: none; }
  .projects-empty {
    text-align: center; margin-top: 32px; color: var(--text-mid); font-size: 15px;
  }
  .card-img--placeholder {
    display: flex; align-items: center; justify-content: center;
  }
  .card-img-icon { font-size: 60px; color: rgba(255, 255, 255, .25); }
  .project-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
    transition: all .3s;
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .project-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0,0,0,.13); }
  .card-img {
    position: relative; height: 220px; overflow: hidden;
  }
  .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
  .project-card:hover .card-img img { transform: scale(1.06); }
  .card-tag {
    position: absolute; top: 14px; left: 14px;
    background: var(--gold); color: var(--navy);
    font-size: 11px; font-weight: 700; letter-spacing: .8px;
    text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
  }
  .card-play {
    position: absolute; bottom: 14px; right: 14px;
    background: rgba(255,255,255,.9); color: var(--dark-green);
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; padding-left: 2px;
  }
  .card-body { padding: 20px; }
  .card-body h3 { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 6px; text-transform: capitalize; }
  .card-location { color: var(--text-light); font-size: 13px; display: flex; align-items: center; gap: 5px; }
  .card-location i { color: var(--gold); }
  .view-all-wrap { text-align: center; margin-top: 48px; }
  .btn-green {
    background: var(--dark-green); color: var(--white);
    padding: 14px 36px; border-radius: 8px; font-weight: 600; font-size: 15px;
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    transition: all .25s;
  }
  .btn-green:hover { background: var(--mid-green); transform: translateY(-2px); }

  /* VIDEO SECTION */
  #video-sec { background: var(--dark-green); padding: 80px 0; }
  .video-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .video-text .section-label { color: var(--gold-light); }
  .video-text .section-label::before { background: var(--gold-light); }
  .video-text h2.section-title {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    color: var(--white);
  }
  .video-text .section-desc { color: rgba(255,255,255,.75); }
  .video-frame {
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,.3);
    aspect-ratio: 16/9;
  }
  .video-frame iframe { width: 100%; height: 100%; border: none; display: block; }

  /* YOUTUBE SHORTS */
  .shorts-section {
    background: var(--cream);
    padding: 80px 0;
  }
  .shorts-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 36px;
  }
  .shorts-header .section-desc {
    margin-top: 8px;
    max-width: 520px;
  }
  .shorts-marquee {
    overflow: hidden;
    margin: 0 -8px;
    padding: 4px 0 16px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }

  .shorts-marquee-track {
    display: flex;
    width: max-content;
    animation: shorts-marquee-rtl 45s linear infinite;
    will-change: transform;
  }

  .shorts-marquee:hover .shorts-marquee-track,
  .shorts-marquee:focus-within .shorts-marquee-track {
    animation-play-state: paused;
  }

  @keyframes shorts-marquee-rtl {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  .shorts-marquee-set {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
    padding-right: 20px;
  }

  .shorts-card {
    flex: 0 0 min(280px, 78vw);
  }

  @media (prefers-reduced-motion: reduce) {
    .shorts-marquee {
      overflow-x: auto;
      -webkit-mask-image: none;
      mask-image: none;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }

    .shorts-marquee-track {
      animation: none;
      width: auto;
    }

    .shorts-marquee-set {
      padding-right: 0;
    }

    .shorts-marquee-set[aria-hidden="true"] {
      display: none;
    }

    .shorts-card {
      scroll-snap-align: start;
    }
  }
  .shorts-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  }
  .shorts-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }
  .shorts-card-title {
    margin: 12px 4px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
  }

  /* BANKING PARTNERS */
  #partners.partners-section {
    background: linear-gradient(180deg, #f7f4ef 0%, var(--white) 55%);
    padding: 72px 0 80px;
  }

  .partners-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 36px;
  }

  .section-label--center {
    justify-content: center;
  }

  .section-label--center::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gold);
  }

  .partners-title {
    margin-bottom: 12px;
  }

  .partners-desc {
    margin: 0 auto;
    max-width: 560px;
  }

  .partners-panel {
    background: var(--white);
    border: 1px solid rgba(26, 45, 77, 0.08);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 16px 48px rgba(26, 45, 77, 0.07);
  }

  .bank-logos {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
  }

  .bank-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 92px;
    padding: 20px 16px;
    border-radius: 14px;
    background: #67696c;
    border: 1px solid #e6ebf1;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
  }

  .bank-logo:hover {
    background: #eef1f4;
    border-color: rgba(45, 80, 22, 0.35);
    box-shadow: 0 10px 28px rgba(26, 45, 77, 0.1);
    transform: translateY(-3px);
  }

  /* Logos with white/light text (e.g. ICICI) — keep dark tile on hover */
  .bank-logo.bank-logo--dark-tile:hover {
    background: #67696c;
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  }

  .bank-logo img {
    display: block;
    height: 64px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: none;
    transition: transform 0.25s ease;
  }

  .bank-logo:hover img {
    transform: scale(1.03);
  }

  @media (max-width: 1100px) {
    .bank-logos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  }

  @media (max-width: 640px) {
    #partners.partners-section { padding: 56px 0 64px; }
    .partners-header { margin-bottom: 28px; }
    .partners-panel { padding: 20px 14px; border-radius: 16px; }
    .bank-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .bank-logo { min-height: 78px; padding: 14px 10px; border-radius: 12px; }
    .bank-logo img { height: 34px; }
  }

  /* TESTIMONIALS */
  #testimonials { background: var(--cream); }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
  .testi-card {
    background: var(--white); border-radius: 16px;
    padding: 28px; box-shadow: 0 4px 24px rgba(0,0,0,.06);
  }
  .testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; display: flex; gap: 4px; }
  .testi-text { color: var(--text-mid); font-size: 14.5px; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--dark-green); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px; flex-shrink: 0;
  }
  .testi-name { font-weight: 600; color: var(--navy); font-size: 15px; }
  .testi-role { font-size: 12px; color: var(--text-light); }

  /* BLOG */
  #blog { background: var(--white); }
  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
  .blog-card {
    border-radius: 16px; overflow: hidden; background: var(--white);
    box-shadow: 0 4px 24px rgba(0,0,0,.07); transition: all .3s;
  }
  .blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.11); }
  .blog-img { height: 200px; background: var(--gray-mid); overflow: hidden; }
  .blog-img img { width: 100%; height: 100%; object-fit: cover; }
  .blog-body { padding: 22px; }
  .blog-cat { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
  .blog-body h3 { font-size: 16.5px; font-weight: 600; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
  .blog-body p { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; }
  .read-more {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--dark-green); font-weight: 600; font-size: 13.5px;
    text-decoration: none; margin-top: 14px; transition: gap .2s;
  }
  .read-more:hover { gap: 10px; }

  /* CTA BANNER */
  #cta { background: var(--navy); padding: 80px 0; text-align: center; }
  #cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 50px);
    color: var(--white); margin-bottom: 16px; font-weight: 700;
  }
  #cta p { color: rgba(255,255,255,.7); font-size: 16px; max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
  .cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

  /* FOOTER PROJECT LINKS (above footer) */
  .footer-links {
    background: var(--gray-light);
    padding: 48px 0 40px;
    border-top: 1px solid var(--gray-mid);
  }
  .footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 24px;
  }
  .footer-links-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.3;
  }

  .footer-links-title a {
    color: inherit;
    text-decoration: none;
  }

  .footer-links-title a:hover {
    color: var(--dark-green);
  }
  .footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-links-col a {
    font-size: 12.5px;
    color: var(--text-mid);
    text-decoration: none;
    line-height: 1.45;
    transition: color .2s;
  }
  .footer-links-col a:hover { color: var(--dark-green); }

  /* FOOTER */
  body > footer { background: #0e1d33; color: #9aaec4; padding: 70px 0 0; }
  .footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 40px 32px; margin-bottom: 56px; }
  .footer-brand .logo {
    margin-bottom: 18px;
    background: transparent;
    padding: 0;
    border-radius: 0;
  }
  .footer-brand .logo img.footer-logo-img {
    height: 56px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    object-position: left center;
    filter: brightness(0) invert(1);
    opacity: 1;
  }
  .footer-brand p { font-size: 14px; line-height: 1.8; color: #7a91aa; max-width: 100%; }
  .footer-social { display: flex; gap: 10px; margin-top: 20px; }
  .footer-social a {
    width: 38px; height: 38px; border-radius: 8px;
    background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center;
    color: #9aaec4; font-size: 15px; text-decoration: none; transition: all .2s;
  }
  .footer-social a:hover { background: var(--gold); color: var(--navy); }
  .footer-col h4 { color: var(--white); font-size: 15px; font-weight: 600; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { color: #7a91aa; text-decoration: none; font-size: 14px; transition: color .2s; display: flex; align-items: center; gap: 7px; }
  .footer-col ul li a:hover { color: var(--gold-light); }
  .footer-col ul li a i { font-size: 11px; color: var(--gold); }
  .contact-info { display: flex; flex-direction: column; gap: 14px; }
  .ci { display: flex; align-items: flex-start; gap: 12px; }
  .ci i { color: var(--gold); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
  .ci span { font-size: 13.5px; color: #7a91aa; line-height: 1.5; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 20px 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; color: #5a718a; flex-wrap: wrap; gap: 10px;
  }
  .footer-bottom a {
    color: #9aaec4;
    text-decoration: none;
    transition: color .2s;
  }
  .footer-bottom a:hover { color: var(--gold-light); }
  .footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 16px;
  }

  /* MOBILE */
  @media (max-width: 900px) {
    .about-grid, .video-inner { grid-template-columns: 1fr; gap: 40px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid, .testi-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
    .footer-links-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
    .hero-stats { display: none; }
    .topbar .left { display: none; }
    .hamburger { display: flex; }
    .nav-links {
      display: none;
      position: fixed;
      top: var(--site-header-h, 106px);
      left: 0;
      right: 0;
      bottom: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 8px 20px 28px;
      background: var(--white);
      z-index: 1002;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }
    .nav-links.open { display: flex; }
    .nav-links > li {
      width: 100%;
      border-bottom: 1px solid var(--gray-mid);
    }
    .nav-links > li:last-child {
      border-bottom: none;
      margin-top: 8px;
    }
    .nav-links > li > a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 15px 4px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 0;
      color: var(--navy);
    }
    .nav-links > li > a.active { color: var(--dark-green); }
    .nav-links .dropdown-chevron {
      font-size: 11px;
      transition: transform 0.25s ease;
      margin-left: 8px;
    }
    .nav-links .dropdown.dropdown-open .dropdown-chevron { transform: rotate(180deg); }
    .nav-links .dropdown-menu {
      display: none;
      position: static;
      width: 100%;
      min-width: 0;
      box-shadow: none;
      border: none;
      border-radius: 8px;
      margin: 0 0 10px;
      padding: 4px 0;
      background: var(--gray-light);
      opacity: 1;
      pointer-events: all;
      transform: none;
    }
    .nav-links .dropdown.dropdown-open .dropdown-menu { display: block; }
    .nav-links .dropdown-menu a {
      padding: 12px 16px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-mid);
      border-radius: 0;
    }
    .nav-links .dropdown-menu a:hover {
      background: rgba(45, 80, 22, 0.08);
      color: var(--dark-green);
    }
    .nav-links .nav-cta {
      display: flex;
      justify-content: center;
      width: 100%;
      margin-top: 4px;
      padding: 14px 22px !important;
      border-radius: 10px !important;
      font-size: 16px !important;
    }

    body.page-home .site-header:not(.is-scrolled) .nav-links.open > li > a:not(.nav-cta) {
      color: var(--navy);
    }

    body.page-home .site-header:not(.is-scrolled) .nav-links.open > li > a:not(.nav-cta).active {
      color: var(--dark-green);
    }

    body.page-home .site-header:not(.is-scrolled) .nav-links.open .dropdown-toggle .dropdown-chevron {
      color: var(--text-mid);
    }
    .quick-btns {
      display: none;
    }

    .mobile-bottom-nav {
      display: flex;
      position: fixed;
      inset: auto 0 0 0;
      width: 100%;
      max-width: 100%;
      bottom: 0;
      z-index: 998;
      background: var(--white);
      border-top: 1px solid var(--gray-mid);
      box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
      padding: 4px max(4px, env(safe-area-inset-left, 0px)) calc(4px + env(safe-area-inset-bottom, 0px)) max(4px, env(safe-area-inset-right, 0px));
      justify-content: stretch;
      align-items: stretch;
      gap: 0;
      overflow: hidden;
      overscroll-behavior-x: none;
      -webkit-overflow-scrolling: auto;
    }
    .mbn-item {
      flex: 1 1 0%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 3px;
      padding: 8px 2px;
      min-width: 0;
      max-width: none;
      text-decoration: none;
      color: var(--text-light);
      font-size: 10px;
      font-weight: 600;
      line-height: 1.15;
      border-radius: 10px;
      transition: color 0.2s, background 0.2s;
      -webkit-tap-highlight-color: transparent;
      touch-action: manipulation;
    }
    .mbn-item i {
      font-size: 20px;
      flex-shrink: 0;
      line-height: 1;
      transition: transform 0.2s;
    }
    .mbn-item span {
      display: block;
      width: 100%;
      max-width: 100%;
      line-height: 1.1;
      text-align: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .mbn-item.active,
    .mbn-item:hover {
      color: var(--dark-green);
      background: rgba(45, 80, 22, 0.06);
    }
    .mbn-item.active i {
      transform: scale(1.05);
    }
    .mbn-item--cta {
      color: var(--dark-green);
    }
    .mbn-item--cta i {
      color: var(--gold);
    }
    body {
      padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
    }
    body.nav-open {
      padding-bottom: 0;
    }
    body.nav-open .mobile-bottom-nav {
      display: none;
    }
    body.enquiry-drawer-open .mobile-bottom-nav,
    body.splash-active .mobile-bottom-nav {
      display: none;
    }
    .fab-call,
    .fab-wa {
      width: 48px;
      height: 48px;
      font-size: 20px;
      bottom: calc(72px + env(safe-area-inset-bottom, 0px));
      z-index: 997;
    }
    .fab-call {
      left: max(12px, env(safe-area-inset-left, 0px));
    }
    .fab-wa {
      left: calc(max(12px, env(safe-area-inset-left, 0px)) + 56px);
      right: auto;
    }
    body > footer {
      padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    }
  }
  @media (max-width: 768px) {
    .nav-inner {
      height: 68px;
      padding: 0 16px;
    }
    .logo {
      max-width: calc(100% - 52px);
    }
    .logo img {
      height: 48px;
    }
  }
  @media (max-width: 600px) {
    .nav-inner {
      height: 62px;
      padding: 0 12px;
      gap: 8px;
    }
    .logo {
      max-width: calc(100% - 46px);
    }
    .logo img {
      height: 40px;
    }
    .projects-grid, .testi-grid, .blog-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-links { padding: 36px 0 28px; }
    .footer-links-grid { grid-template-columns: 1fr; gap: 24px; }
  }
  @media (max-width: 380px) {
    .mbn-item {
      font-size: 9px;
      padding: 7px 1px;
      gap: 2px;
    }
    .mbn-item i {
      font-size: 18px;
    }
  }
  @media (max-width: 400px) {
    .nav-inner {
      height: 56px;
      padding: 0 10px;
    }
    .logo {
      max-width: calc(100% - 42px);
    }
    .logo img {
      height: 34px;
    }
    .hamburger span { width: 22px; }
  }

  @media (max-width: 700px) {
    .contact-grid-resp { grid-template-columns: 1fr !important; gap: 40px !important; }
  }
