/* ═══════════════════════════════════════════════
   ANCHOR BANGLADESH LIMITED — MAIN STYLESHEET
   Palette: Navy #101828 | Gold #C8922D | Lt-Gold #e8b84b
   All greens replaced with brand gold; all missing
   CSS vars defined; full responsive coverage added.
═══════════════════════════════════════════════ */

:root {
    /* ── Brand colours ── */
    --primary:       #C8922D;
    --light-gold:    #e8b84b;
    --dark-gold:     #a87520;
    --dark:          #101828;
    --nav-bg:        #101828;
    --white:         #ffffff;

    /* ── Text / border / background tokens ── */
    --text-muted:    rgba(255, 255, 255, 0.7);
    --muted:         #667085;
    --border:        rgba(200, 146, 45, 0.18);
    --card-bg:       #ffffff;
    --footer-bg:     #0b1424;
    --gold-light:    #e8b84b;
}

/* ── Reset ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

/* ═══════════════════════════════════
   PRELOADER
═══════════════════════════════════ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }

.pre-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--white);
    text-align: center;
    line-height: 1.2;
}
.pre-logo span { color: var(--primary); }

.pre-bar-wrap {
    width: min(320px, 80vw);
    height: 3px;
    background: rgba(200, 146, 45, 0.2);
    border-radius: 10px;
    overflow: hidden;
}
.pre-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--light-gold));
    border-radius: 10px;
    animation: loadBar 2.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes loadBar {
    0%   { width: 0%; }
    70%  { width: 85%; }
    100% { width: 100%; }
}

.pre-tagline {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    animation: fadeInUp 1s ease 0.4s both;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════
   HEADER / NAV
═══════════════════════════════════ */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    /* Semi-transparent blend with hero background */
    background: linear-gradient(
        to bottom,
        rgba(11, 20, 36, 0.72) 0%,
        rgba(11, 20, 36, 0.45) 100%
    );
    border-bottom: 1px solid rgba(200, 146, 45, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.45s ease, border-color 0.45s ease,
                box-shadow 0.45s ease, backdrop-filter 0.45s ease;
}
header.scrolled {
    background: rgba(11, 20, 36, 0.97);
    border-bottom-color: rgba(200, 146, 45, 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.6);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-wrap img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

/* Desktop Nav */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.desktop-nav a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
    position: relative;
}
.desktop-nav a:not(.nav-cta-btn)::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 1.5px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.desktop-nav a:not(.nav-cta-btn):hover::after { transform: scaleX(1); }
.desktop-nav a:hover { color: var(--white); }

.nav-cta-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark) !important;
    background: linear-gradient(90deg, var(--primary), var(--light-gold));
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 4px;
    border: none;
    box-shadow: 0 4px 15px rgba(200, 146, 45, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}
.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(200, 146, 45, 0.5);
    color: var(--dark) !important;
}

/* ═══════════════════════════════════════════════════════
   PROJECT LISTING PAGES (Ongoing / Completed / Upcoming)
═══════════════════════════════════════════════════════ */

/* ── Status Tabs (in page hero) ── */
.status-tabs {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.75rem;
    flex-wrap: wrap;
}
.status-tab {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.06);
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.status-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.status-tab.active {
    background: linear-gradient(90deg, var(--primary), var(--light-gold));
    border-color: transparent;
    color: var(--dark);
}

/* ── Light Project Grid Section ── */
.light-proj-section {
    padding: clamp(3.5rem, 6vw, 6rem) clamp(1.5rem, 6vw, 7rem);
    background: #f5f6f8;
}
.light-proj-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 2.5vw, 2rem);
}
@media (max-width: 1024px) {
    .light-proj-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .light-proj-grid { grid-template-columns: 1fr; }
}

/* ── Light Card ── */
.light-card {
    background: var(--card-bg);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(16, 24, 40, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.light-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(16, 24, 40, 0.14);
}
.light-card-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.light-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.light-card:hover .light-card-img img { transform: scale(1.08); }

.light-card-body {
    padding: 1.25rem 1.4rem 1.5rem;
}
.light-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}
.light-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.25;
}

/* ── Status Pills ── */
.light-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
}
.light-status-pill svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}
.light-pill-ongoing {
    background: rgba(200, 146, 45, 0.12);
    color: #C8922D;
}
.light-pill-completed {
    background: rgba(76, 175, 125, 0.12);
    color: #4caf7d;
}
.light-pill-upcoming {
    background: rgba(58, 123, 213, 0.12);
    color: #3a7bd5;
}

/* ── Location row ── */
.light-card-location {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 1.1rem;
}
.light-card-location svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── View Details button ── */
.light-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
    border: 1px solid var(--primary);
    border-radius: 999px;
    padding: 9px 18px;
    transition: background 0.25s, color 0.25s;
}
.light-card-btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.25s ease;
}
.light-card-btn:hover {
    background: var(--primary);
    color: var(--white);
}
.light-card-btn:hover svg { transform: translateX(3px); }

/* ═══════════════════════════════════
   PROJECTS DROPDOWN (Desktop)
═══════════════════════════════════ */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0;
    transition: color 0.2s;
    position: relative;
}
.nav-dropdown-toggle:not(.nav-cta-btn)::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 1.5px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.open .nav-dropdown-toggle::after { transform: scaleX(1); }
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle { color: var(--white); }
.nav-dropdown-toggle .chev {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.25s ease;
}
.nav-dropdown:hover .chev,
.nav-dropdown.open .chev { transform: rotate(180deg); }

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 180px;
    background: rgba(11, 20, 36, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 146, 45, 0.15);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    z-index: 1000;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    padding: 9px 14px;
    border-radius: 5px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
    background: rgba(200, 146, 45, 0.12);
    color: var(--primary);
}

/* ═══════════════════════════════════
   PROJECTS DROPDOWN (Mobile)
═══════════════════════════════════ */
.mobile-menu .nav-dropdown-mobile {
    display: flex;
    flex-direction: column;
}
.mobile-menu .nav-dropdown-toggle-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    font-weight: 600;
    color: var(--text-muted);
    padding: 12px 0;
    border-bottom: 1px solid rgba(200, 146, 45, 0.1);
    letter-spacing: 0.04em;
    transition: color 0.2s;
    text-align: left;
}
.mobile-menu .nav-dropdown-toggle-mobile .chev {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.3s ease;
}
.mobile-menu .nav-dropdown-mobile.open .nav-dropdown-toggle-mobile .chev { transform: rotate(180deg); }
.mobile-menu .nav-dropdown-mobile.open .nav-dropdown-toggle-mobile { color: var(--primary); }

.mobile-submenu {
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding-left: 18px;
}
.mobile-menu .nav-dropdown-mobile.open .mobile-submenu { max-height: 300px; }
.mobile-submenu a {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1rem, 4vw, 1.25rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(200, 146, 45, 0.08);
    transition: color 0.2s, padding-left 0.2s;
}
.mobile-submenu a:hover,
.mobile-submenu a.active {
    color: var(--primary);
    padding-left: 10px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
    .desktop-nav { display: none; }
    .hamburger   { display: flex; }
}

/* ═══════════════════════════════════
   MOBILE MENU OVERLAY
═══════════════════════════════════ */
.mobile-menu {
    position: fixed;
    inset: 80px 0 0 0;   /* matches fixed header height */
    background: rgba(11, 20, 36, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 36px 28px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(200, 146, 45, 0.1);
    letter-spacing: 0.04em;
    transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu a:hover {
    color: var(--primary);
    padding-left: 10px;
}
.mobile-menu-contact {
    margin-top: 36px;
    padding-top: 16px;
}
.mobile-menu .nav-cta-btn {
    display: inline-flex !important;
    width: 100%;
    max-width: 280px;
    padding: 16px 32px;
    font-size: 0.9rem;
    justify-content: center;
    text-align: center;
}

/* ═══════════════════════════════════
   HERO SLIDER
═══════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;  /* header is transparent overlay — no gap needed */
}

.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.slides-container .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.slides-container .slide.active { opacity: 1; z-index: 1; }

.slide-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.06);
    transition: transform 8s ease;
}
.slides-container .slide.active .slide-img { transform: scale(1); }

.slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(16, 24, 40, 0.3)  0%,
        rgba(16, 24, 40, 0.1)  30%,
        rgba(16, 24, 40, 0.45) 65%,
        rgba(16, 24, 40, 0.85) 100%
    );
}

/* Hero text */
.hero-content {
    position: absolute;
    bottom: 185px;
    left: 0; right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    animation: heroFade 1s ease 0.3s both;
    z-index: 2;
}
@keyframes heroFade {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
}
.hero-title em {
    color: var(--primary);
    font-style: normal;
    display: block;
}
.hero-subtitle {
    font-size: clamp(0.88rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.04em;
    max-width: 520px;
}

/* Slider arrows */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(200, 146, 45, 0.15);
    border: 1.5px solid rgba(200, 146, 45, 0.4);
    color: var(--white);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    z-index: 10;
    backdrop-filter: blur(6px);
}
.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.08);
}
.slider-btn svg { width: 20px; height: 20px; }
.prev-btn { left: 24px; }
.next-btn { right: 24px; }

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 165px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    border: none;
}
.dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* Phone */
.hero-phone {
    position: absolute;
    bottom: 48px; left: 28px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    z-index: 20;
    text-decoration: none;
    cursor: pointer;
}
.hero-phone svg {
    color: var(--primary);
    flex-shrink: 0;
    width: 18px; height: 18px;
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
    50%       { box-shadow: 0 4px 36px rgba(37, 211, 102, 0.8), 0 0 0 8px rgba(37, 211, 102, 0.12); }
}

/* Category bar */
.category-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(10, 16, 30, 0.78);
    backdrop-filter: blur(4px);
    z-index: 10;
}
.cat-inner {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
}
.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 64px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
    transition: background 0.25s;
    flex: 1;
    max-width: 260px;
}
.cat-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}
.cat-item:hover { background: rgba(200, 146, 45, 0.1); }
.cat-item:hover::before { transform: scaleX(1); }

.cat-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
}
.cat-icon img, .cat-icon svg { width: 44px; height: 44px; }
.cat-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: capitalize;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.25s;
}
.cat-item:hover .cat-label { color: var(--primary); }

/* ═══════════════════════════════════
   SECTION HEAD (Projects Filter)
═══════════════════════════════════ */
.section-head {
    text-align: center;
    padding: 72px 24px 40px;
    background: var(--white);
}
.section-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}
.section-head h2 em {
    color: var(--primary);
    font-style: normal;
}
.gold-line {
    width: 48px; height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin: 0 auto 16px;
}

/* Filter tabs */
.filter-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.tab-btn {
    padding: 7px 22px;
    border-radius: 100px;
    border: 1.5px solid #ddd;
    background: transparent;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    color: #667085;
    letter-spacing: 0.04em;
}
.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white) !important;
    box-shadow: 0 4px 16px rgba(200, 146, 45, 0.35);
}
.tab-btn:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

/* ═══════════════════════════════════
   MARQUEE / PROJECT CARDS
═══════════════════════════════════ */
.marquee-section {
    background: var(--white);
    padding: 8px 0 56px;
    overflow: hidden;
    position: relative;
}
.marquee-section::before,
.marquee-section::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.marquee-section::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}
.marquee-section::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
    padding: 16px 0;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.proj-card {
    width: 260px;
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 24px rgba(16, 24, 40, 0.10);
    cursor: pointer;
    transition: transform 0.32s cubic-bezier(.4,0,.2,1), box-shadow 0.32s, opacity 0.3s ease;
    position: relative;
}
.proj-card:hover {
    transform: translateY(-8px) scale(1.025);
    box-shadow: 0 16px 48px rgba(16, 24, 40, 0.18);
}
.proj-card.hide-card { display: none !important; }

.proj-img-wrap {
    position: relative;
    height: 300px;
    overflow: hidden;
}
.proj-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.proj-card:hover .proj-img-wrap img { transform: scale(1.07); }

.proj-badge {
    position: absolute;
    top: 12px; left: 12px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
}
.proj-name {
    background: rgba(16, 24, 40, 0.82);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 12px 16px;
    letter-spacing: 0.02em;
    text-align: center;
}

/* ═══════════════════════════════════
   VIDEO SECTION — full-width bg image
═══════════════════════════════════ */
.video-section {
    position: relative;
    width: 100%;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--dark);
}
/* Full-width still image via <img> stretched absolutely */
.video-bg {
    display: block !important;
    position: absolute;
    inset: 0;
    z-index: 0;
}
.video-bg img,
.video-section-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
/* Dark overlay for legibility */
.video-section::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 16, 30, 0.55) 0%,
        rgba(10, 16, 30, 0.65) 50%,
        rgba(10, 16, 30, 0.78) 100%
    );
    z-index: 1;
}
/* Gold grain texture overlay */
.video-section::after {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8922D' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
    pointer-events: none;
}

.video-inner {
    position: relative; z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 24px;
    max-width: 760px;
    width: 100%;
}
/* Play button circle — click still opens YouTube */
.video-thumb-wrap {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    cursor: pointer;
    /* No box/card — just the overlay content on the raw bg */
    width: auto;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}
/* Hide the thumbnail image — background IS the image now */
.video-thumb-wrap img.video-thumb { display: none; }

.video-overlay-text {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0;
}
.play-btn {
    width: 84px; height: 84px;
    border-radius: 50%;
    background: #FF0000;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 40px rgba(255,0,0,0.55);
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
    flex-shrink: 0;
    /* Pulse ring */
    animation: playPulse 2.4s ease infinite;
}
@keyframes playPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,0,0,0.45), 0 8px 40px rgba(255,0,0,0.55); }
    50%       { box-shadow: 0 0 0 16px rgba(255,0,0,0), 0 8px 40px rgba(255,0,0,0.55); }
}
.video-thumb-wrap:hover .play-btn {
    transform: scale(1.12);
    box-shadow: 0 12px 56px rgba(255,0,0,0.75);
    animation: none;
}
.play-btn svg { margin-left: 6px; }
.video-caption {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
    text-shadow: 0 2px 24px rgba(0,0,0,0.7);
    max-width: 560px;
}
.video-caption em { color: var(--primary); font-style: normal; }
.video-label {
    margin-top: 6px;
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
/* Gold divider lines flanking the section */
.video-inner::before,
.video-inner::after {
    content: '';
    display: block;
    width: 56px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 0 auto 28px;
}
.video-inner::after { margin: 28px auto 0; }

/* ═══════════════════════════════════
   BLOG CARDS
═══════════════════════════════════ */
.blog-section {
    background: var(--white);
    padding: 60px 24px 64px;
}
.blog-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-card {
    border-radius: 14px;
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 4px 20px rgba(16, 24, 40, 0.09);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(16, 24, 40, 0.16);
}
.blog-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.blog-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.07); }
.blog-card-body {
    padding: 20px 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 3px solid var(--primary);
}
.blog-cat {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
}
.blog-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-excerpt {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--muted);
    padding-top: 10px;
    border-top: 1px solid rgba(200, 146, 45, 0.2);
}
.blog-meta-author {
    display: flex; align-items: center; gap: 6px;
    color: var(--primary);
    font-weight: 500;
}
.blog-meta-author::before {
    content: 'By';
    color: var(--muted);
    font-weight: 400;
}

/* ═══════════════════════════════════
   LATEST NEWS
═══════════════════════════════════ */
.news-section {
    background: var(--dark);
    padding: 64px 24px 72px;
}
.news-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
}
.section-label-icon {
    width: 28px; height: 28px;
    background: var(--primary);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.section-label h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.01em;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.news-page { display: none; }
.news-page.active { display: contents; }

.news-card {
    border-radius: 12px;
    overflow: hidden;
    background: #1a2540;
    border: 1px solid rgba(200, 146, 45, 0.12);
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 146, 45, 0.45);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.news-card-img {
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}
.news-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-card-body {
    padding: 16px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.news-date {
    font-size: 0.68rem;
    color: var(--primary);
    letter-spacing: 0.1em;
    font-weight: 500;
}
.news-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-excerpt {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.read-more {
    font-size: 0.72rem;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    text-decoration: none;
    transition: gap 0.2s;
}
.news-card:hover .read-more { gap: 8px; }

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.pg-btn {
    width: 36px; height: 36px;
    border-radius: 8px;
    border: 1.5px solid rgba(200, 146, 45, 0.25);
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.22s;
}
.pg-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(200, 146, 45, 0.4);
}
.pg-btn:hover:not(.active):not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
}
.pg-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.pg-arrow {
    width: 36px; height: 36px;
    border-radius: 8px;
    border: 1.5px solid rgba(200, 146, 45, 0.25);
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.22s;
    font-family: 'Outfit', sans-serif;
}
.pg-arrow:hover { border-color: var(--primary); color: var(--primary); }
.pg-arrow:disabled { opacity: 0.3; cursor: not-allowed; }

/* ═══════════════════════════════════
   PRIME LOCATIONS
═══════════════════════════════════ */
.locations-section {
    background: var(--white);
    padding: 72px 24px 80px;
    position: relative;
    overflow: hidden;
}
.locations-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200, 146, 45, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.loc-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.loc-heading {
    text-align: center;
    margin-bottom: 52px;
}
.loc-heading h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary);
}
.loc-heading h2 em { color: var(--primary); font-style: normal; }
.loc-heading-line {
    width: 56px; height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin: 14px auto 0;
}

.loc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.loc-card {
    border-radius: 18px;
    overflow: hidden;
    background: #131f35;
    border: 1px solid rgba(200, 146, 45, 0.12);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.loc-card:hover {
    border-color: rgba(200, 146, 45, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(200, 146, 45, 0.2);
    transform: translateY(-8px);
}
.loc-img-wrap {
    position: relative;
    height: 230px;
    overflow: hidden;
    flex-shrink: 0;
}
.loc-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), filter 0.4s ease;
    filter: brightness(0.88);
}
.loc-card:hover .loc-img-wrap img {
    transform: scale(1.08);
    filter: brightness(0.55);
}
.loc-hover-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(16, 24, 40, 0.35);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.loc-card:hover .loc-hover-overlay { opacity: 1; }
.explore-btn {
    display: flex; align-items: center; gap: 10px;
    background: var(--primary);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 13px 26px; border-radius: 100px; border: none;
    cursor: pointer;
    transform: translateY(12px) scale(0.92);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
    box-shadow: 0 6px 28px rgba(200, 146, 45, 0.5);
    white-space: nowrap;
}
.loc-card:hover .explore-btn {
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 36px rgba(200, 146, 45, 0.65);
}
.explore-btn svg { transition: transform 0.25s ease; }
.explore-btn:hover svg { transform: translateX(4px); }
.loc-img-wrap::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--light-gold), transparent);
    z-index: 2;
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
}
.loc-card:hover .loc-img-wrap::after { transform: scaleX(1); }
.loc-body {
    padding: 24px 24px 28px;
    display: flex; flex-direction: column; gap: 10px;
    flex: 1;
}
.loc-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--primary);
}
.loc-tag::before {
    content: '';
    display: inline-block; width: 6px; height: 6px;
    border-radius: 50%; background: var(--primary); flex-shrink: 0;
}
.loc-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; font-weight: 700;
    color: var(--white); line-height: 1.25;
    transition: color 0.25s;
}
.loc-card:hover .loc-name { color: var(--light-gold); }
.loc-desc {
    font-size: 0.82rem; color: var(--text-muted); line-height: 1.65;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.loc-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 14px; border-top: 1px solid rgba(200, 146, 45, 0.1); margin-top: 4px;
}
.loc-stat { display: flex; flex-direction: column; gap: 2px; }
.loc-stat-num { font-size: 1.05rem; font-weight: 700; color: var(--primary); }
.loc-stat-label { font-size: 0.68rem; color: rgba(255, 255, 255, 0.4); letter-spacing: 0.08em; text-transform: uppercase; }
.loc-arrow {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1.5px solid rgba(200, 146, 45, 0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    flex-shrink: 0;
}
.loc-card:hover .loc-arrow {
    background: var(--primary); border-color: var(--primary); color: var(--white); transform: rotate(45deg);
}

/* ═══════════════════════════════════
   BROCHURE SECTION
═══════════════════════════════════ */
#brochure {
    padding: 64px 20px 0;
    background: #f7f5f0;
    display: flex; flex-direction: column; align-items: center;
}
.section-header {
    text-align: center; margin-bottom: 36px;
}
.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700; color: #111;
}
/* ✅ was green (#3a7d44), now brand gold */
.section-header h2 span { color: var(--primary); font-weight: 800; }
.section-header p { margin-top: 8px; font-size: 0.95rem; color: #666; }

.book-scene { width: 100%; max-width: 900px; }
.book-frame {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 60px rgba(0,0,0,0.15), 0 2px 12px rgba(0,0,0,0.08);
    padding: 20px;
}
.slides-track {
    overflow: hidden; border-radius: 4px; position: relative;
}
#brochure .brochure-slide {
    display: none; gap: 12px; position: static; opacity: 1;
}
#brochure .brochure-slide.active { display: flex; }

.brochure-dot {
    width: 7px; height: 7px;
    border-radius: 50%; background: #ccc;
    cursor: pointer; transition: all 0.3s;
}
/* ✅ was green, now gold */
.brochure-dot.active {
    background: var(--primary);
    width: 22px; border-radius: 4px;
}

.page {
    flex: 1; min-width: 0; border-radius: 4px; overflow: hidden;
    position: relative; background: #e8e4dc; aspect-ratio: 4/3;
}
.page img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 6s ease;
}
#brochure .brochure-slide.active .page img { transform: scale(1.04); }
.spine-divider {
    width: 14px; flex-shrink: 0; position: relative;
}
.spine-divider::before {
    content: ''; position: absolute; top: 0; bottom: 0; left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.1) 20%, rgba(0,0,0,0.1) 80%, transparent);
    transform: translateX(-50%);
}
.page-num {
    position: absolute; bottom: 10px;
    font-size: 0.68rem; color: rgba(255,255,255,0.75);
    background: rgba(0,0,0,0.38); padding: 3px 9px;
    border-radius: 20px; pointer-events: none; backdrop-filter: blur(4px);
}
.page-num.left { left: 10px; }
.page-num.right { right: 10px; }

@keyframes slideInRight { from { opacity:0; transform:translateX(28px); } to { opacity:1; transform:translateX(0); } }
@keyframes slideInLeft  { from { opacity:0; transform:translateX(-28px); } to { opacity:1; transform:translateX(0); } }
#brochure .brochure-slide.active.anim-right { animation: slideInRight 0.42s cubic-bezier(0.4,0,0.2,1) both; }
#brochure .brochure-slide.active.anim-left  { animation: slideInLeft  0.42s cubic-bezier(0.4,0,0.2,1) both; }

.progress-wrap {
    display: flex; align-items: center; gap: 12px; margin-top: 16px;
}
.progress-label { font-size: 0.75rem; color: #888; white-space: nowrap; min-width: 96px; }
.progress-bar { flex: 1; height: 4px; background: #eee; border-radius: 4px; overflow: hidden; }
/* ✅ was green gradient, now gold */
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--light-gold));
    width: 0%; border-radius: 4px;
}
.controls-row {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; margin-top: 14px;
}
.ctrl-btn {
    width: 42px; height: 42px; border-radius: 50%;
    background: #fff; border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.09);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; color: #333;
}
/* ✅ was green, now gold */
.ctrl-btn:hover {
    border-color: var(--primary); color: var(--primary);
    box-shadow: 0 4px 16px rgba(200,146,45,0.25); transform: scale(1.06);
}
.ctrl-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.dots { display: flex; gap: 7px; align-items: center; }
.dot.brochure-dot { width: 7px; height: 7px; border-radius: 50%; background: #ccc; cursor: pointer; transition: all 0.3s; }

.request-brochure-wrap { text-align: center; padding: 20px 0 28px; }
/* ✅ was green, now gold */
.request-brochure-btn {
    display: inline-flex; align-items: center; gap: 9px;
    background: linear-gradient(90deg, var(--primary), var(--light-gold));
    color: var(--dark);
    font-family: 'Outfit', sans-serif; font-size: 0.88rem;
    font-weight: 700; letter-spacing: 0.06em;
    padding: 13px 32px; border-radius: 5px; border: none;
    cursor: pointer; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(200,146,45,0.35);
}
.request-brochure-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(200,146,45,0.5);
}
.request-brochure-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* ═══════════════════════════════════
   PARTNER LOGO TICKER
═══════════════════════════════════ */
.logo-ticker-section {
    width: 100%; background: #fff;
    border-top: 1px solid #e8e8e4; border-bottom: 1px solid #e8e8e4;
    padding: 22px 0; overflow: hidden; position: relative;
}
.logo-ticker-section::before,
.logo-ticker-section::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.logo-ticker-section::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.logo-ticker-section::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }
.ticker-track {
    display: flex; gap: 56px; align-items: center;
    width: max-content;
    animation: ticker 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.ticker-logo {
    display: flex; align-items: center; justify-content: center;
    height: 52px; min-width: 80px; flex-shrink: 0;
    filter: grayscale(100%) opacity(0.55);
    transition: filter 0.3s;
}
.ticker-logo:hover { filter: grayscale(0%) opacity(1); }
.logo-svg-wrap {
    display: flex; align-items: center; gap: 6px;
    font-family: 'Outfit', sans-serif; font-weight: 700;
    font-size: 1rem; white-space: nowrap; user-select: none;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer {
    background: var(--footer-bg);
    color: #fff;
    position: relative;
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 100% 100%, rgba(200,146,45,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 0% 50%, rgba(200,146,45,0.04) 0%, transparent 50%);
    pointer-events: none;
}
.footer-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 56px 40px 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.4fr;
    gap: 48px;
    position: relative; z-index: 1;
}
.footer-logo-wrap {
    display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.footer-logo-wrap img { height: 64px; width: auto; object-fit: contain; }
/* ✅ was green, now gold */
.footer-brand-text .brand-name {
    font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 800;
    color: var(--primary); letter-spacing: 0.04em; line-height: 1;
}
.footer-brand-text .brand-sub {
    font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: rgba(255,255,255,0.45); margin-top: 3px;
}
.footer-tagline {
    font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7;
    margin-top: 4px; max-width: 280px;
}
.footer-col h4 {
    font-size: 1rem; font-weight: 700; color: #fff;
    margin-bottom: 20px; letter-spacing: 0.02em;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links li { display: flex; align-items: center; gap: 10px; }
/* ✅ was green, now gold */
.footer-links li::before {
    content: ''; width: 7px; height: 7px; border-radius: 50%;
    background: var(--primary); flex-shrink: 0;
}
.footer-links a {
    color: rgba(255,255,255,0.7); text-decoration: none;
    font-size: 0.9rem; transition: color 0.2s;
}
/* ✅ was green, now gold */
.footer-links a:hover { color: var(--primary); }

.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; }
/* ✅ was green, now gold */
.contact-icon {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(200,146,45,0.12); border: 1px solid rgba(200,146,45,0.3);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    margin-top: 1px;
}
.contact-icon svg { width: 14px; height: 14px; fill: none; stroke: var(--primary); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-text { font-size: 0.86rem; color: rgba(255,255,255,0.7); line-height: 1.55; }
.contact-text a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.contact-text a:hover { color: var(--primary); }
.follow-title { font-size: 1rem; font-weight: 700; color: #fff; margin-top: 24px; margin-bottom: 14px; }
.social-icons { display: flex; gap: 10px; }
.social-icon {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); text-decoration: none;
    transition: all 0.25s;
}
/* ✅ was green, now gold */
.social-icon:hover {
    background: var(--primary); border-color: var(--primary);
    color: var(--dark); transform: translateY(-2px);
}
.social-icon svg { width: 16px; height: 16px; fill: currentColor; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 18px 40px; text-align: center;
    position: relative; z-index: 1;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom p + p { margin-top: 4px; color: rgba(255,255,255,0.3); font-size: 0.76rem; }

/* ═══════════════════════════════════
   FLOATING BUTTONS
═══════════════════════════════════ */
.scroll-top {
    position: fixed;
    bottom: 104px; right: 24px;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--primary); border: none; color: var(--white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(200,146,45,0.5);
    z-index: 100;
    /* Hidden by default — JS adds .visible after scroll */
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.2s;
}
.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.scroll-top:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 8px 28px rgba(200,146,45,0.65); }

.whatsapp-fab {
    position: fixed;
    bottom: 40px; right: 24px;
    width: 52px; height: 52px; border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; z-index: 100;
    box-shadow: 0 4px 24px rgba(37,211,102,0.45);
    animation: wpPulse 2.5s infinite;
}
@keyframes wpPulse {
    0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
}

/* ═══════════════════════════════════
   RESPONSIVE — 1200px
═══════════════════════════════════ */
@media (max-width: 1200px) {
    .cat-item { padding: 18px 40px; }
    .nav-inner { padding: 0 24px; }
}

/* ═══════════════════════════════════
   RESPONSIVE — 1024px (tablet)
═══════════════════════════════════ */
@media (max-width: 1024px) {
    .desktop-nav { display: none; }
    .hamburger   { display: flex; }

    /* Hide category bar on tablet/mobile */
    .category-bar { display: none !important; }

    /* Recenter phone number */
    .hero-phone {
        left: 50% !important;
        bottom: 40px;
        transform: translateX(-50%);
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        z-index: 20;
        display: inline-flex !important;
        justify-content: center;
        align-items: center;
        gap: 8px;
        width: max-content;
    }

    .loc-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; padding: 48px 32px 36px; }
}

/* ═══════════════════════════════════
   RESPONSIVE — 860px
═══════════════════════════════════ */
@media (max-width: 860px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════
   RESPONSIVE — 768px
═══════════════════════════════════ */
@media (max-width: 768px) {
    .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px 32px; }
    .footer-bottom { padding: 16px 24px; }

    .loc-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

    .hero-content { bottom: 160px; }
    .slider-dots  { bottom: 140px; }
}

/* ═══════════════════════════════════
   RESPONSIVE — 600px (mobile)
═══════════════════════════════════ */
@media (max-width: 600px) {
    .nav-inner { padding: 0 16px; height: 68px; }
    .logo-wrap img { height: 50px; }
    .mobile-menu { inset: 68px 0 0 0; padding: 28px 20px; }
    .hero { margin-top: 0; min-height: 520px; }
    .page-hero { padding-top: 68px; }

    .hero-content { bottom: 130px; }
    .slider-dots  { bottom: 110px; }
    .slider-btn   { display: none; }
    .hero-phone   { font-size: 1rem; bottom: 28px; }

    .blog-grid  { grid-template-columns: 1fr; }
    .news-grid  { grid-template-columns: 1fr; }

    .proj-card      { width: 200px; }
    .proj-img-wrap  { height: 220px; }

    .video-section {
        min-height: 420px;
    }
    .video-inner    { padding: 56px 16px; }
    .video-caption  { font-size: 1.3rem; }
    .play-btn       { width: 68px; height: 68px; }

    .section-head { padding: 48px 16px 28px; }
    .locations-section { padding: 52px 16px 60px; }
    .blog-section { padding: 44px 16px 48px; }

    #brochure { padding: 40px 12px 0; }
    #brochure .brochure-slide { gap: 6px; }
    .spine-divider { width: 6px; }
    .ctrl-btn { width: 38px; height: 38px; }

    .footer-inner { padding: 36px 16px 28px; }
    .footer-bottom { padding: 14px 16px; }

    .scroll-top   { bottom: 96px; right: 16px; }
    .whatsapp-fab { bottom: 32px; right: 16px; }
}



         /* ═══════════════════════════════════════════════════════
           PROJECTS PAGE — scoped styles (extends style.css)
        ═══════════════════════════════════════════════════════ */

        /* ── PAGE HERO ── */
        .page-hero {
            position: relative;
            height: 62vh;
            min-height: 420px;
            padding-top: 80px;
            display: flex;
            align-items: flex-end;
            overflow: hidden;
        }
        .page-hero-bg {
            position: absolute;
            inset: 0;
            background: url('image/building-19.jpeg') center/cover no-repeat;
            transform: scale(1.06);
            transition: transform 8s ease;
        }
        .page-hero:hover .page-hero-bg { transform: scale(1); }
        .page-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(16, 24, 40, 0.35) 0%,
                rgba(16, 24, 40, 0.82) 100%
            );
        }
        .page-hero-content {
            position: relative;
            z-index: 1001;
            padding: 0 clamp(1.5rem, 6vw, 7rem) clamp(2.5rem, 5vw, 4rem);
        }
        .page-hero-breadcrumb {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.5);
            margin-bottom: 1rem;
        }
        .page-hero-breadcrumb a { color: var(--primary); text-decoration: none; }
        .page-hero-breadcrumb span { color: rgba(255,255,255,0.35); }
        .page-hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.8rem, 7vw, 5.5rem);
            font-weight: 600;
            color: var(--white);
            line-height: 1.05;
        }
        .page-hero-title em { font-style: italic; color: var(--primary); }

        /* ── TICKER STRIP ── */
        .ticker-wrap {
            background: var(--primary);
            overflow: hidden;
            padding: 11px 0;
            white-space: nowrap;
        }
        .ticker-track {
            display: inline-flex;
            align-items: center;
            gap: 2rem;
            animation: tickerRoll 28s linear infinite;
        }
        .ticker-track span {
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--dark);
            white-space: nowrap;
        }
        .ticker-dot { color: rgba(16,24,40,0.55) !important; font-size: 0.6rem !important; }
        @keyframes tickerRoll {
            from { transform: translateX(0); }
            to   { transform: translateX(-50%); }
        }

        /* ── FILTER TABS ── */
        .projects-filter-bar {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .pf-btn {
            font-family: 'Outfit', sans-serif;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 0.55rem 1.4rem;
            border-radius: 2px;
            border: 1px solid rgba(200,146,45,0.28);
            background: transparent;
            color: rgba(255,255,255,0.55);
            cursor: pointer;
            transition: all 0.25s;
        }
        .pf-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        .pf-btn.active {
            background: linear-gradient(90deg, var(--primary), var(--light-gold));
            border-color: transparent;
            color: var(--dark);
        }

        /* ── SHARED SECTION STYLES ── */
        .proj-section {
            padding: clamp(4rem, 6vw, 6.5rem) clamp(1.5rem, 6vw, 7rem);
        }
        .proj-section.alt { background: #0b1424; }
        .proj-section.dark { background: var(--dark); }

        .proj-section-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 1.5rem;
            flex-wrap: wrap;
            max-width: 1340px;
            margin: 0 auto 3rem;
        }
        .proj-label-group { display: flex; align-items: center; gap: 1rem; }

        .status-dot {
            width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
        }
        .dot-ongoing   { background: #C8922D; box-shadow: 0 0 0 4px rgba(200,146,45,0.18); animation: dotPulse 2s infinite; }
        .dot-upcoming  { background: #4a7ede; box-shadow: 0 0 0 4px rgba(74,126,222,0.18); }
        .dot-completed { background: #4caf7d; box-shadow: 0 0 0 4px rgba(76,175,125,0.18); }
        @keyframes dotPulse {
            0%,100% { box-shadow: 0 0 0 4px rgba(200,146,45,0.18); }
            50%      { box-shadow: 0 0 0 8px rgba(200,146,45,0.05); }
        }

        .proj-section-heading {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.9rem, 3.8vw, 3rem);
            font-weight: 600;
            color: var(--white);
            line-height: 1.1;
        }
        .proj-section-heading em { font-style: italic; color: var(--primary); }

        .proj-count-badge {
            font-size: 0.72rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.4);
            padding: 0.4rem 0.9rem;
            border: 1px solid rgba(200,146,45,0.15);
            border-radius: 2px;
            white-space: nowrap;
        }

        /* ── PROJECT GRID ── */
        .proj-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.6rem;
            max-width: 1340px;
            margin: 0 auto;
        }
        @media (max-width: 900px)  { .proj-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 560px)  { .proj-grid { grid-template-columns: 1fr; } }

        /* ── PROJECT CARD ── */
        .proj-card-item {
            position: relative;
            border-radius: 4px;
            overflow: hidden;
            background: #111e33;
            border: 1px solid rgba(200,146,45,0.1);
            cursor: pointer;
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
        }
        .proj-card-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 28px 64px rgba(0,0,0,0.55);
            border-color: rgba(200,146,45,0.35);
        }

        .proj-card-img {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
        }
        .proj-card-img img {
            width: 100%; height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.55s ease;
        }
        .proj-card-item:hover .proj-card-img img { transform: scale(1.07); }

        /* gradient scrim */
        .proj-card-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(11,20,36,0.72) 0%, transparent 55%);
        }

        /* type tag — top left */
        .proj-type-tag {
            position: absolute;
            top: 1rem; left: 1rem;
            z-index: 2;
            font-size: 0.67rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--dark);
            background: linear-gradient(90deg, var(--primary), var(--light-gold));
            padding: 0.28rem 0.7rem;
            border-radius: 2px;
        }

        /* status pill — top right */
        .proj-status-pill {
            position: absolute;
            top: 1rem; right: 1rem;
            z-index: 2;
            font-size: 0.67rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 0.28rem 0.75rem;
            border-radius: 2px;
        }
        .pill-ongoing   { background: rgba(200,146,45,0.15); color: var(--light-gold); border: 1px solid rgba(200,146,45,0.4); }
        .pill-upcoming  { background: rgba(74,126,222,0.15); color: #82a9f0; border: 1px solid rgba(74,126,222,0.4); }
        .pill-completed { background: rgba(76,175,125,0.15); color: #7ad5a8; border: 1px solid rgba(76,175,125,0.4); }

        /* card body */
        .proj-card-body {
            padding: 1.3rem 1.4rem 1.5rem;
        }
        .proj-card-location {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.76rem;
            color: rgba(255,255,255,0.45);
            letter-spacing: 0.04em;
            margin-bottom: 0.45rem;
        }
        .proj-card-location svg {
            width: 12px; height: 12px;
            fill: none; stroke: var(--primary); stroke-width: 2;
            flex-shrink: 0;
        }
        .proj-card-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.28rem;
            font-weight: 600;
            color: var(--white);
            line-height: 1.25;
            transition: color 0.2s;
        }
        .proj-card-item:hover .proj-card-name { color: var(--light-gold); }

        .proj-card-arrow {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.72rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--primary);
            margin-top: 0.9rem;
            opacity: 0;
            transform: translateX(-6px);
            transition: opacity 0.3s, transform 0.3s;
        }
        .proj-card-arrow svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }
        .proj-card-item:hover .proj-card-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        /* ── STATS STRIP between sections ── */
        .stats-strip {
            background: #111e33;
            border-top: 1px solid rgba(200,146,45,0.1);
            border-bottom: 1px solid rgba(200,146,45,0.1);
        }
        .stats-strip-inner {
            max-width: 1340px;
            margin: 0 auto;
            padding: 0 clamp(1.5rem, 6vw, 7rem);
            display: flex;
            align-items: stretch;
        }
        .stat-cell {
            flex: 1;
            padding: 2rem 1.5rem;
            text-align: center;
            border-right: 1px solid rgba(200,146,45,0.1);
            transition: background 0.3s;
        }
        .stat-cell:last-child { border-right: none; }
        .stat-cell:hover { background: rgba(200,146,45,0.04); }
        .stat-val {
            display: block;
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }
        .stat-lbl {
            display: block;
            font-size: 0.72rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.4);
            margin-top: 0.4rem;
        }
        @media (max-width: 600px) {
            .stats-strip-inner { flex-wrap: wrap; }
            .stat-cell { flex: 0 0 50%; border-bottom: 1px solid rgba(200,146,45,0.1); }
        }

        /* ── CTA BANNER ── */
        .cta-banner-section {
            padding: clamp(4rem, 6vw, 6.5rem) clamp(1.5rem, 6vw, 7rem);
            background: var(--dark);
        }
        .cta-banner-inner {
            max-width: 1340px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(2rem, 5vw, 5rem);
            align-items: center;
            background: linear-gradient(135deg, #111e33 0%, #0b1424 100%);
            border: 1px solid rgba(200,146,45,0.18);
            border-radius: 4px;
            overflow: hidden;
        }
        @media (max-width: 800px) { .cta-banner-inner { grid-template-columns: 1fr; } }

        .cta-banner-content {
            padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
        }
        .cta-eyebrow {
            font-size: 0.72rem;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 0.9rem;
            display: block;
        }
        .cta-heading {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 600;
            color: var(--white);
            line-height: 1.12;
            margin-bottom: 1.1rem;
        }
        .cta-heading em { font-style: italic; color: var(--primary); }
        .cta-body {
            color: rgba(255,255,255,0.6);
            font-size: 0.95rem;
            line-height: 1.75;
            margin-bottom: 2rem;
            max-width: 420px;
        }
        .cta-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .btn-primary-p {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, var(--primary), var(--light-gold));
            color: var(--dark);
            font-weight: 700;
            font-size: 0.82rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 0.9rem 2rem;
            border-radius: 2px;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 6px 24px rgba(200,146,45,0.3);
        }
        .btn-primary-p:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 36px rgba(200,146,45,0.45);
        }
        .btn-ghost-p {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: 1px solid rgba(200,146,45,0.4);
            color: var(--primary);
            font-weight: 600;
            font-size: 0.82rem;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            padding: 0.85rem 1.8rem;
            border-radius: 2px;
            text-decoration: none;
            transition: all 0.3s;
        }
        .btn-ghost-p:hover {
            background: rgba(200,146,45,0.1);
            border-color: var(--primary);
        }
        .btn-ghost-p svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }

        .cta-banner-visual {
            position: relative;
            height: 100%;
            min-height: 320px;
        }
        .cta-banner-visual img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .cta-banner-visual::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, #111e33 0%, transparent 40%);
            z-index: 1;
        }
        @media (max-width: 800px) {
            .cta-banner-visual { min-height: 240px; }
            .cta-banner-visual::before { background: linear-gradient(180deg, #111e33 0%, transparent 40%); }
        }

        /* ── ACTIVE NAV ── */
        .desktop-nav a.active { color: var(--white) !important; }
        .desktop-nav a.active::after { transform: scaleX(1) !important; }

        /* ── SCROLL REVEAL ── */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.65s ease, transform 0.65s ease;
        }
        .reveal.visible { opacity: 1; transform: none; }
        .reveal.d1 { transition-delay: 0.1s; }
        .reveal.d2 { transition-delay: 0.2s; }
        .reveal.d3 { transition-delay: 0.3s; }
        .reveal.d4 { transition-delay: 0.4s; }
        .reveal.d5 { transition-delay: 0.5s; }

        /* ══════════════════════════════════════════════
           CONTACT PAGE — SCOPED STYLES
           Inherits: preloader, header, footer, mobile-menu
           from style.css
        ══════════════════════════════════════════════ */

        /* ── PAGE HERO ── */
        .contact-hero {
            position: relative;
            min-height: 60vh;
            display: flex;
            align-items: flex-end;
            padding-bottom: clamp(3rem, 6vw, 5rem);
            background: var(--dark);
            overflow: hidden;
        }
        .contact-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(135deg, rgba(200,146,45,0.08) 0%, transparent 60%),
                linear-gradient(to bottom, rgba(16,24,40,0.2) 0%, rgba(16,24,40,0.95) 100%);
            z-index: 1;
        }
        /* Subtle grid texture */
        .contact-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(200,146,45,0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(200,146,45,0.04) 1px, transparent 1px);
            background-size: 80px 80px;
            z-index: 0;
        }
        /* Large architectural silhouette line art */
        .hero-graphic {
            position: absolute;
            right: 0; top: 0; bottom: 0;
            width: 55%;
            z-index: 0;
            overflow: hidden;
        }
        .hero-graphic svg {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .contact-hero-inner {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            padding: 120px clamp(1.5rem, 6vw, 5rem) 0;
        }
        .contact-hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 0.72rem;
            letter-spacing: 0.38em;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 1.2rem;
        }
        .contact-hero-eyebrow::before {
            content: '';
            display: block;
            width: 32px;
            height: 1px;
            background: var(--primary);
        }
        .contact-hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(3rem, 7vw, 5.5rem);
            font-weight: 700;
            line-height: 1.05;
            color: var(--white);
            letter-spacing: -0.01em;
            margin-bottom: 1.4rem;
        }
        .contact-hero h1 em {
            color: var(--primary);
            font-style: italic;
        }
        .contact-hero-desc {
            font-size: clamp(0.9rem, 1.8vw, 1.05rem);
            color: rgba(255,255,255,0.6);
            max-width: 480px;
            line-height: 1.75;
        }
        /* Breadcrumb */
        .hero-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 2.5rem;
            font-size: 0.75rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.35);
        }
        .hero-breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
        .hero-breadcrumb a:hover { color: var(--primary); }
        .hero-breadcrumb span { color: var(--primary); }

        /* ── REACH STRIP ── */
        .reach-strip {
            background: #111e33;
            border-top: 1px solid rgba(200,146,45,0.15);
            border-bottom: 1px solid rgba(200,146,45,0.15);
        }
        .reach-strip-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            padding: 0 clamp(1.5rem, 5vw, 5rem);
        }
        .reach-item {
            display: flex;
            flex-direction: column;
            gap: 0.45rem;
            padding: 2.2rem 1.5rem;
            border-right: 1px solid rgba(200,146,45,0.1);
            transition: background 0.3s;
        }
        .reach-item:last-child { border-right: none; }
        .reach-item:hover { background: rgba(200,146,45,0.04); }
        .reach-icon {
            width: 42px; height: 42px;
            display: flex; align-items: center; justify-content: center;
            background: rgba(200,146,45,0.1);
            border: 1px solid rgba(200,146,45,0.25);
            border-radius: 4px;
            margin-bottom: 0.5rem;
        }
        .reach-icon svg {
            width: 20px; height: 20px;
            fill: none;
            stroke: var(--primary);
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .reach-label {
            font-size: 0.68rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--primary);
        }
        .reach-value {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.65;
        }
        @media (max-width: 900px) {
            .reach-strip-inner { grid-template-columns: repeat(2, 1fr); }
            .reach-item { border-bottom: 1px solid rgba(200,146,45,0.1); }
            .reach-item:nth-child(2) { border-right: none; }
            .reach-item:nth-child(3), .reach-item:nth-child(4) { border-bottom: none; }
        }
        @media (max-width: 520px) {
            .reach-strip-inner { grid-template-columns: 1fr; }
            .reach-item { border-right: none; }
            .reach-item:last-child { border-bottom: none; }
        }

        /* ── MAIN LAYOUT ── */
        .contact-body {
            background: var(--dark);
            padding: clamp(3.5rem, 6vw, 6rem) clamp(1.5rem, 5vw, 5rem);
        }
        .contact-wrap {
            max-width: 1400px;
            margin: 0 auto;
        }
        .contact-columns {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: clamp(2rem, 4vw, 4rem);
            align-items: start;
        }
        @media (max-width: 1100px) {
            .contact-columns { grid-template-columns: 1fr; }
        }

        /* ── FORM PANEL ── */
        .form-panel {
            background: #111e33;
            border: 1px solid rgba(200,146,45,0.15);
            border-radius: 4px;
            overflow: hidden;
        }
        .form-panel-head {
            padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem) 0;
            border-bottom: 1px solid rgba(200,146,45,0.1);
            padding-bottom: 2rem;
            margin-bottom: 0;
        }
        .form-eyebrow {
            font-size: 0.7rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 0.8rem;
            display: block;
        }
        .form-panel-head h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            font-weight: 600;
            color: var(--white);
            line-height: 1.1;
        }
        .form-panel-head h2 em {
            color: var(--primary);
            font-style: italic;
        }
        .form-panel-body {
            padding: clamp(2rem, 4vw, 3rem);
        }

        /* Form fields */
        .form-grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
            margin-bottom: 1.2rem;
        }
        @media (max-width: 640px) {
            .form-grid-2 { grid-template-columns: 1fr; }
        }
        .fgroup {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .fgroup label {
            font-size: 0.72rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.5);
            font-weight: 500;
        }
        .fgroup input,
        .fgroup select,
        .fgroup textarea {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(200,146,45,0.2);
            border-radius: 3px;
            color: var(--white);
            font-family: 'Outfit', sans-serif;
            font-size: 0.92rem;
            padding: 0.85rem 1rem;
            outline: none;
            transition: border-color 0.25s, background 0.25s;
            width: 100%;
            -webkit-appearance: none;
            appearance: none;
        }
        .fgroup input::placeholder,
        .fgroup textarea::placeholder { color: rgba(255,255,255,0.25); }
        .fgroup input:focus,
        .fgroup select:focus,
        .fgroup textarea:focus {
            border-color: rgba(200,146,45,0.6);
            background: rgba(200,146,45,0.05);
        }
        .fgroup select {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C8922D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            cursor: pointer;
        }
        .fgroup select option { background: #111e33; color: var(--white); }
        .fgroup textarea { resize: vertical; min-height: 130px; }
        .fgroup-full { margin-bottom: 1.2rem; }

        /* Budget pills */
        .budget-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-top: 0.2rem;
        }
        .budget-pill {
            padding: 0.45rem 1rem;
            border: 1px solid rgba(200,146,45,0.25);
            border-radius: 100px;
            background: transparent;
            color: rgba(255,255,255,0.55);
            font-family: 'Outfit', sans-serif;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.04em;
            cursor: pointer;
            transition: all 0.2s;
        }
        .budget-pill:hover {
            border-color: rgba(200,146,45,0.6);
            color: var(--primary);
        }
        .budget-pill.active {
            background: linear-gradient(135deg, var(--primary), var(--light-gold));
            border-color: transparent;
            color: var(--dark);
            font-weight: 600;
        }

        /* Submit row */
        .submit-row {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 1.8rem;
            padding-top: 1.8rem;
            border-top: 1px solid rgba(200,146,45,0.1);
        }
        .btn-submit {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: linear-gradient(135deg, var(--primary), var(--light-gold));
            color: var(--dark);
            font-family: 'Outfit', sans-serif;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 1rem 2.2rem;
            border: none;
            border-radius: 3px;
            cursor: pointer;
            box-shadow: 0 6px 24px rgba(200,146,45,0.3);
            transition: all 0.3s;
        }
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 36px rgba(200,146,45,0.45);
        }
        .btn-submit svg {
            width: 16px; height: 16px;
            fill: none;
            stroke: var(--dark);
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .form-note {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.35);
            line-height: 1.6;
        }

        /* Form success */
        .form-success {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 4rem 2rem;
            gap: 1.2rem;
        }
        .form-success.show { display: flex; }
        .success-ring {
            width: 72px; height: 72px;
            border-radius: 50%;
            background: rgba(200,146,45,0.12);
            border: 2px solid rgba(200,146,45,0.4);
            display: flex; align-items: center; justify-content: center;
        }
        .success-ring svg {
            width: 28px; height: 28px;
            stroke: var(--primary);
            fill: none;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .form-success h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 600;
            color: var(--white);
        }
        .form-success p {
            color: rgba(255,255,255,0.5);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* ── SIDEBAR ── */
        .contact-sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .sidebar-card {
            background: #111e33;
            border: 1px solid rgba(200,146,45,0.15);
            border-radius: 4px;
            padding: 1.8rem 2rem;
        }
        .sidebar-eyebrow {
            font-size: 0.67rem;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 0.5rem;
            display: block;
        }
        .sidebar-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 1rem;
            line-height: 1.15;
        }
        .sidebar-card p {
            font-size: 0.88rem;
            color: rgba(255,255,255,0.5);
            line-height: 1.7;
        }

        /* Hours list */
        .hours-list { display: flex; flex-direction: column; gap: 0.6rem; }
        .hours-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.65rem 0;
            border-bottom: 1px solid rgba(200,146,45,0.08);
            font-size: 0.86rem;
        }
        .hours-row:last-child { border-bottom: none; }
        .hours-row .day { color: rgba(255,255,255,0.55); }
        .hours-row .time { color: var(--white); font-weight: 500; }
        .hours-row .closed { color: rgba(255,255,255,0.3); font-style: italic; }

        /* Why us */
        .sidebar-link {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            margin-top: 1.2rem;
            font-size: 0.78rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--primary);
            text-decoration: none;
            transition: gap 0.2s;
        }
        .sidebar-link:hover { gap: 0.7rem; }
        .sidebar-link svg {
            width: 14px; height: 14px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* Trust badges */
        .trust-badges {
            display: flex;
            gap: 0.7rem;
            margin-top: 1.1rem;
            flex-wrap: wrap;
        }
        .trust-badge {
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 0.28rem 0.7rem;
            border: 1px solid rgba(200,146,45,0.35);
            color: var(--primary);
            border-radius: 2px;
        }

        /* Social buttons */
        .social-row {
            display: flex;
            gap: 0.7rem;
            margin-top: 1.2rem;
        }
        .social-btn {
            width: 40px; height: 40px;
            display: flex; align-items: center; justify-content: center;
            border: 1px solid rgba(200,146,45,0.25);
            border-radius: 4px;
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            transition: all 0.25s;
        }
        .social-btn:hover {
            background: rgba(200,146,45,0.1);
            border-color: var(--primary);
            color: var(--primary);
        }
        .social-btn svg {
            width: 18px; height: 18px;
            fill: currentColor;
        }

        /* ── MAP SECTION ── */
        .map-section {
            margin-top: clamp(3rem, 5vw, 5rem);
            border: 1px solid rgba(200,146,45,0.15);
            border-radius: 4px;
            overflow: hidden;
        }
        .map-header {
            background: #111e33;
            padding: 1.4rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid rgba(200,146,45,0.1);
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .map-label-text {
            font-size: 0.7rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 0.25rem;
        }
        .map-address-text {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
        }
        .map-directions-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--primary);
            border: 1px solid rgba(200,146,45,0.35);
            padding: 0.55rem 1.1rem;
            border-radius: 3px;
            text-decoration: none;
            transition: all 0.2s;
        }
        .map-directions-btn:hover {
            background: rgba(200,146,45,0.1);
            border-color: var(--primary);
        }
        .map-directions-btn svg {
            width: 13px; height: 13px;
            fill: none; stroke: currentColor;
            stroke-width: 2; stroke-linecap: round;
        }
        .map-wrapper {
            position: relative;
            height: clamp(280px, 40vw, 480px);
        }
        .map-wrapper iframe {
            width: 100%; height: 100%;
            display: block;
            border: none;
            filter: grayscale(30%) contrast(1.05);
        }

        /* ── SCROLL REVEAL ── */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.65s ease, transform 0.65s ease;
        }
        .reveal.visible { opacity: 1; transform: none; }
        .reveal-left {
            opacity: 0;
            transform: translateX(-24px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .reveal-left.visible { opacity: 1; transform: none; }
        .reveal-right {
            opacity: 0;
            transform: translateX(24px);
            transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
        }
        .reveal-right.visible { opacity: 1; transform: none; }

        /* ── WHATSAPP FAB (inherited but re-declared for this page) ── */
        .whatsapp-fab {
            position: fixed;
            bottom: 24px; right: 24px;
            z-index: 900;
            width: 54px; height: 54px;
            background: #25D366;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
            animation: waPulse 2.5s ease-in-out infinite;
            transition: transform 0.25s;
        }
        .whatsapp-fab:hover { transform: scale(1.1); }

        /* Scroll-to-top */
        .scroll-top {
            position: fixed;
            bottom: 88px; right: 24px;
            z-index: 900;
            width: 42px; height: 42px;
            background: rgba(16,24,40,0.9);
            border: 1px solid rgba(200,146,45,0.35);
            border-radius: 50%;
            color: var(--primary);
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            opacity: 0; transform: translateY(12px);
            transition: opacity 0.3s, transform 0.3s;
        }
        .scroll-top.visible { opacity: 1; transform: none; }
        .scroll-top:hover { background: rgba(200,146,45,0.15); }

/* ═══════════════════════════════════
   RESPONSIVE — 420px (small phones)
═══════════════════════════════════ */
@media (max-width: 420px) {
    .hero-title { font-size: 2.4rem; }
    .hero-subtitle { font-size: 0.82rem; }

    .cat-item { padding: 14px 20px; }
    .cat-label { font-size: 0.72rem; }

    .mobile-menu a { font-size: 1.5rem; padding: 10px 0; }

    .loc-stat-num { font-size: 0.9rem; }
    .loc-name { font-size: 1.15rem; }
}