/* ---------------------------------------------------
   Header
--------------------------------------------------- */
.site-header {
    position: relative;
    background: rgba(245, 243, 238, 0.86);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
  }

  /* The header partial is injected into #header-root, so the sticky
     element must be the wrapper — a sticky child within a parent of
     the same height has zero "stick range" and scrolls away. */
  #header-root {
    position: sticky;
    top: 0;
    z-index: 50;
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
  }
  
  .brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    line-height: 1.15;
  }
  .brand-logo {
    height: 40px;
    width: auto;
    flex: 0 0 auto;
  }
  .brand-text {
    display: flex;
    flex-direction: column;
  }
  .brand-name {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.28rem;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    white-space: nowrap;
    background: linear-gradient(180deg, #ff0008 0%, #00ff6e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #a4161a;
  }
  .brand-sub {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    color: #3a4a63;
  }
  
  .main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 0.94rem;
    font-weight: 500;
  }
  .main-nav a:not(.nav-cta):hover { color: var(--blueprint); }
  
  .nav-cta {
    background: var(--ink);
    color: var(--concrete);
    padding: 9px 18px;
    border-radius: 3px;
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.2s ease;
  }
  .nav-cta:hover { background: var(--blueprint); }
  
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  .nav-toggle span { width: 22px; height: 2px; background: var(--ink); display: block; }
  
  .header-actions { display: flex; gap: 10px; margin-left: 24px; }
  .icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    color: var(--ink);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }
  .icon-btn svg { width: 17px; height: 17px; }
  .icon-btn:hover { background: var(--blueprint); color: #fff; border-color: var(--blueprint); }
  .icon-btn-whatsapp:hover { background: #25D366; border-color: #25D366; }
  
  /* ---------------------------------------------------
     Hero
  --------------------------------------------------- */
.hero { position: relative; z-index: 1; padding: 108px 0 84px; }
  .hero-inner {
    max-width: 1180px;
    display: flex;
    gap: 56px;
    align-items: center;
  }
  .hero-content { flex: 1.05 1 0; max-width: 640px; min-width: 0; }
  .hero-carousel { flex: 0.95 1 0; min-width: 0; }
  .hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
  .hero-sub { font-size: 1.12rem; color: var(--steel); max-width: 560px; }

  .hero-actions { display: flex; gap: 14px; margin: 32px 0 56px; flex-wrap: wrap; }

  .hero-stats {
    display: flex;
    gap: 48px;
    margin: 0;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  .hero-stats dt { font-family: var(--display); font-size: 2rem; font-weight: 600; color: var(--blueprint); }
  .hero-stats dd { margin: 2px 0 0; font-size: 0.82rem; color: var(--steel); }

  .hero-carousel-box {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(29, 78, 137, 0.16);
    background: linear-gradient(150deg, rgba(29, 78, 137, 0.1), rgba(29, 78, 137, 0.22));
    box-shadow: 0 24px 50px -20px rgba(20, 24, 28, 0.35);
  }
  .hero-carousel-box .carousel { position: absolute; inset: 0; }
  .hero-carousel-box .carousel-dots { display: none; }

  .hero-carousel-box .carousel-slide img { transform: scale(1.14); }
  .hero-carousel-box .carousel-slide.is-active img { animation: hero-zoom 3.4s ease-out forwards; }

  .hero-carousel-box::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 46%;
    z-index: 2;
    background: linear-gradient(to top, rgba(20, 24, 28, 0.52), rgba(20, 24, 28, 0));
    pointer-events: none;
  }
  .hero-caption {
    position: absolute;
    left: 18px;
    bottom: 24px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: rgba(255, 255, 255, 0.86);
    -webkit-backdrop-filter: blur(10px) saturate(1.2);
    backdrop-filter: blur(10px) saturate(1.2);
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 8px 22px rgba(20, 24, 28, 0.18);
  }
  .hero-caption-name {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    color: var(--ink);
  }
  .hero-caption-where {
    font-family: var(--mono);
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blueprint);
  }
  .hero-counter {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: #fff;
    background: rgba(20, 24, 28, 0.42);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 5px 10px;
  }
  .hero-placeholder {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    color: var(--blueprint);
    padding: 24px;
  }
  .hero-placeholder-note {
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(29, 78, 137, 0.75);
  }
  .hero-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
  }
  .hero-bar-fill {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--brass), var(--blueprint));
  }
  @keyframes hero-fill {
    from { width: 0; }
    to { width: 100%; }
  }
  @keyframes hero-zoom {
    from { transform: scale(1.14); }
    to { transform: scale(1.02); }
  }
  
  /* ---------------------------------------------------
     Marquee strip
  --------------------------------------------------- */
  .marquee { position: relative; z-index: 1; background: var(--ink); color: var(--concrete); overflow: hidden; padding: 14px 0; }
  .marquee-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: scroll-left 26s linear infinite;
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }
  /* Each group carries a trailing gap equal to the inner gap, so the
     -50% loop point lands exactly on the group boundary and both ends
     of the track scroll with identical spacing. */
  .marquee-group {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-right: 24px;
  }
  .marquee-track span { opacity: 0.85; }
  @keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  
  /* ---------------------------------------------------
     Footer
  --------------------------------------------------- */
  .site-footer { background: var(--ink); color: var(--concrete); padding: 56px 0 32px; position: relative; z-index: 1; }
  .footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 24px; }
  .footer-inner .brand { color: var(--concrete); }
  .footer-inner .brand-sub { color: #93a3bd; }
  .footer-note { font-size: 0.85rem; color: rgba(245,243,238,0.6); margin: 6px 0 0; }
  .footer-links { display: flex; gap: 24px; font-size: 0.88rem; }
  .footer-links a:hover { color: var(--brass); }
  .footer-copy {
    width: 100%;
    font-size: 0.78rem;
    color: rgba(245,243,238,0.45);
    margin: 24px 0 0;
    border-top: 1px solid rgba(245,243,238,0.15);
    padding-top: 20px;
  }
  
  /* ---------------------------------------------------
     Floating WhatsApp button
  --------------------------------------------------- */
  .whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.22);
    z-index: 60;
    transition: transform 0.15s ease;
  }
  .whatsapp-float:hover { transform: scale(1.06); }
  .whatsapp-float svg { width: 28px; height: 28px; }
  
  /* ---------------------------------------------------
     Mobile sticky CTA bar
  --------------------------------------------------- */
  .mobile-cta-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    background: var(--ink);
    border-top: 1px solid rgba(245,243,238,0.15);
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    gap: 8px;
  }
  .mobile-cta-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--concrete);
    padding: 8px 4px;
    border-radius: 6px;
    border: none;
    background: transparent;
    font-family: var(--body);
    cursor: pointer;
  }
  .mobile-cta-btn svg { width: 19px; height: 19px; }
  .mobile-cta-whatsapp { color: #4ADE80; }
  .mobile-cta-enquire { background: var(--blueprint); border-radius: 8px; }

  /* ---------------------------------------------------
     Right-side section pager (top / bottom arrows)
  --------------------------------------------------- */
  .section-pager {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 60;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .pager-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(20, 24, 28, 0.18);
    background: rgba(255, 255, 255, 0.88);
    color: var(--blueprint);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.2s ease, transform 0.15s ease, background 0.15s ease;
    backdrop-filter: blur(4px);
  }
  .pager-btn svg { width: 20px; height: 20px; }
  .pager-btn:hover { background: var(--blueprint); color: #fff; transform: scale(1.08); }
  .pager-btn.is-hidden { opacity: 0; pointer-events: none; transform: scale(0.85); }