/* ═══════════════════════════════════════════════════════════════
   Real Estate University — Navy Blue & Golden Yellow Light Theme
   PREMIUM LIGHT UI MODEL
   ═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:wght@500;600;700;800&display=swap');

:root {
    /* Brand Accent — Golden Yellow */
    --gold: #E8A317;
    --gold-light: #FFD166;
    --gold-dark: #C48A0F;
    --gold-rgb: 232, 163, 23;
    --header-h: 130px;
    --header-h-mobile: 60px;

    /* Navy Blue Brand */
    --royal: #0B2447;
    --royal-light: #193D6D;
    --royal-dark: #051329;
    --royal-rgb: 11, 36, 71;

    /* Light Background Palette */
    --bg-primary: #F4F6FB;
    --bg-card: #FFFFFF;
    --bg-elevated: #FFFFFF;
    --bg-surface: #EDF1F9;
    --bg-input: #F0F3FA;
    --border-subtle: rgba(11,36,71,0.10);
    --border-gold: rgba(232,163,23,0.30);

    /* Text — Dark Navy */
    --text-primary: #0B2447;
    --text-secondary: #4A5B7A;
    --text-muted: #8694AD;

    /* Premium Shadows */
    --shadow-card: 0 4px 24px rgba(11,36,71,0.08);
    --shadow-gold: 0 4px 20px rgba(232,163,23,0.15);
    --glow-gold: 0 0 20px rgba(232,163,23,0.18);
    --gold-glow: rgba(232,163,23,0.10);

    /* Staggered Leadership Architecture */
.staggered-card {
    transition: all 0.4s ease;
}
.staggered-img-wrap {
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.5s ease;
    border: 1px solid rgba(255,255,255,0.1);
}
.staggered-card:hover .staggered-img-wrap {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(11,36,71,0.15);
}
.staggered-info h4 {
    letter-spacing: -0.5px;
}
.staggered-logo-center {
    animation: floating 4s ease-in-out infinite;
}
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 991px) {
    .split-leadership-layout {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
    }
    .leadership-content {
        padding-right: 0 !important;
        text-align: center;
    }
    .leadership-content .sh-title {
        text-align: center !important;
    }
    .leadership-content ul li {
        justify-content: center;
    }
    .leadership-top-row {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
    }
    .staggered-logo-center {
        grid-column: span 2;
        order: -1;
        margin-bottom: 20px;
    }
}
@media (max-width: 640px) {
    .leadership-top-row {
        grid-template-columns: 1fr !important;
    }
    .staggered-logo-center {
        grid-column: span 1;
    }
    .leadership-bottom-row {
        margin-top: -20px;
    }
}

    /* Radii */
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-full: 50px;

    /* Layout */
    --header-h: 64px;
    --bottom-nav-h: 68px;
}

/* ─── Reset ─── */
*, *::before, *::after {
    margin: 0; padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,.serif { font-family: 'Playfair Display', serif; font-weight: 700; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ─── Utilities ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-spacing { padding: var(--header-h) 0 60px; }
@media (max-width: 991px) { .section-spacing { padding: calc(var(--header-h-mobile) + 30px) 0 40px; } }

/* ═══════════════════════════════
   HEADER / TOP BAR
   ═══════════════════════════════ */
.top-bar {
    position: sticky; top: 0; z-index: 200;
    height: var(--header-h);
    background: linear-gradient(135deg, #0B2447 0%, #051329 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 20px;
    border-bottom: none;
    box-shadow: 0 4px 20px rgba(11,36,71,0.25);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 800;
    color: #FFD166;
    letter-spacing: 0.5px;
}
.logo span { color: #FFFFFF; font-weight: 500; }

.top-icons { display: flex; gap: 10px; align-items: center; }

.icon-btn {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 12px;
    color: #FFD166;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.icon-btn:hover {
    background: rgba(255,255,255,0.22);
    box-shadow: 0 0 15px rgba(255,209,102,0.3);
}

.nav-link-with-icon {
    display: flex; align-items: center; gap: 8px;
    font-weight: 600; font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 8px 12px; border-radius: 8px;
}
.nav-link-with-icon i { color: var(--royal); transition: transform 0.3s ease; }
.nav-link-with-icon:hover { color: var(--royal); background: rgba(11,36,71,0.06); }
.nav-link-with-icon:hover i { transform: translateY(-2px); }

/* ═══════════════════════════════
   SEARCH BAR
   ═══════════════════════════════ */
.search-container { padding: 14px 20px; }
.search-bar {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    padding: 12px 18px; border-radius: var(--r-full);
    display: flex; align-items: center; gap: 12px;
    transition: all 0.3s; box-shadow: 0 2px 8px rgba(11,36,71,0.06);
}
.search-bar:focus-within { border-color: var(--royal); box-shadow: 0 0 0 3px rgba(11,36,71,0.12); }
.search-bar input { background: transparent; border: none; outline: none; color: var(--text-primary); width: 100%; font-size: 0.9rem; }
.search-bar input::placeholder { color: var(--text-muted); }

/* ═══════════════════════════════
   VORTEX HERO SLIDER
   ═══════════════════════════════ */
:root { --accent-vortex: #FFD166; }

.vortex-hero {
    position: relative; height: 100vh; width: 100%;
    overflow: hidden; background: linear-gradient(135deg, #0B2447, #051329);
    font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 30px;
}
.vortex-slide {
    position: absolute; inset: 0; opacity: 0; visibility: hidden;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.5s, transform 1.5s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1;
}
.vortex-slide.active { opacity: 1; visibility: visible; z-index: 3; }
.vortex-slide.vortex-slide-out { opacity: 0; visibility: visible; z-index: 2; } /* Keep visible during exit */

.vortex-media { position: absolute; inset: 0; z-index: 0; }
.vortex-video { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8) contrast(1.05); }
img.vortex-video { transform: scale(1); transition: transform 10s ease-out; }

/* Zoom In Effect */
.vortex-anim-zoom .vortex-slide.active img.vortex-video { transform: scale(1.15); }
.vortex-anim-zoom .vortex-slide.vortex-slide-out img.vortex-video { transform: scale(1.25); }

/* Fade Effect */
.vortex-anim-fade .vortex-slide { transition: opacity 2s ease, visibility 2s; }
.vortex-anim-fade .vortex-slide.active { opacity: 1; visibility: visible; }
.vortex-anim-fade .vortex-slide.vortex-slide-out { opacity: 0; }

/* Slide From Right */
.vortex-anim-slide .vortex-slide { transform: translateX(100%); opacity: 0.5; transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1), opacity 1.2s; }
.vortex-anim-slide .vortex-slide.active { transform: translateX(0); opacity: 1; visibility: visible; }
.vortex-anim-slide .vortex-slide.vortex-slide-out { transform: translateX(-100%); opacity: 0; visibility: visible; }

.vortex-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(circle at center, rgba(11,36,71,0.10) 0%, rgba(11,36,71,0.40) 100%),
                linear-gradient(to bottom, rgba(11,36,71,0.15) 0%, rgba(11,36,71,0.55) 100%);
}
.vortex-container {
    position: relative; z-index: 10; height: 100%;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 0 20px;
}
.vortex-content {
    max-width: 800px; transform: translateY(30px); opacity: 0;
    transition: 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}
.vortex-slide.active .vortex-content { transform: translateY(0); opacity: 1; }

.vortex-badge {
    font-size: 11px; font-weight: 900; letter-spacing: 4px;
    color: var(--accent-vortex); margin-bottom: 20px; display: block;
    text-shadow: 0 0 12px rgba(255,209,102,0.6); text-transform: uppercase;
}
.vortex-content h1 {
    font-size: clamp(1.8rem, 8vw, 4rem); font-weight: 900; line-height: 1.1;
    color: #fff; margin-bottom: 30px; text-shadow: 0 5px 20px rgba(0,0,0,0.4);
}
.vortex-accent {
    background: linear-gradient(90deg, #fff, #FFD166, #E8A317, #FFD166, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; animation: neonWave 3s linear infinite;
}
@keyframes neonWave { to { background-position: 200% center; } }

.vortex-btn-primary {
    background: transparent; color: var(--accent-vortex);
    padding: 14px 35px; border-radius: 100px; font-weight: 800;
    font-size: 13px; letter-spacing: 2px; border: 2px solid var(--accent-vortex);
    box-shadow: 0 0 20px rgba(255,209,102,0.3); transition: 0.4s;
    display: inline-block; text-decoration: none;
}
.hero-search-wrap {
    background: rgba(255,255,255,0.12); backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px; padding: 6px; margin-bottom: 35px;
    max-width: 550px; margin-left: auto; margin-right: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.hero-search-wrap .search-bar { background: transparent; border: none; box-shadow: none; padding: 10px 20px; }
.hero-search-wrap .search-bar input { color: #fff; font-weight: 500; }
.hero-search-wrap .search-bar input::placeholder { color: rgba(255,255,255,0.6); }

.vortex-btn-primary:hover {
    background: var(--accent-vortex); color: #0B2447;
    transform: translateY(-5px); box-shadow: 0 0 30px rgba(255,209,102,0.5);
}

.vortex-controls {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 12px; z-index: 100;
}
.vortex-dash {
    width: 35px; height: 3px; background: rgba(255,255,255,0.2);
    cursor: pointer; border-radius: 2px; position: relative; overflow: hidden; transition: all 0.3s;
}
.vortex-dash.active { width: 50px; background: rgba(255,255,255,0.3); }
.vortex-dash.active::after {
    content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 100%;
    background: var(--accent-vortex); transform: scaleX(0); transform-origin: left;
    animation: dashGrow 10s linear forwards;
}
@keyframes dashGrow { to { transform: scaleX(1); } }

@media (max-width: 768px) {
    .vortex-hero { height: 50vh; min-height: 420px; margin: 0 0 20px 0; border-radius: 0; }
    .vortex-content h1 { font-size: 1.7rem; margin-bottom: 15px; }
    .vortex-badge { margin-bottom: 12px; font-size: 10px; }
    .hero-search-wrap { margin-bottom: 25px; width: 100%; padding: 4px; }
    .vortex-btn-primary { padding: 12px 28px; font-size: 12px; }
    .vortex-controls { bottom: 20px; }
}

/* ═══════════════════════════════
   QUICK CATEGORIES
   ═══════════════════════════════ */
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 0 16px; margin-bottom: 30px; }
.cat-card {
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
    padding: 16px 8px; background: var(--bg-card); border-radius: var(--r-md);
    border: 1px solid var(--border-subtle); transition: all 0.35s;
    box-shadow: 0 2px 10px rgba(11,36,71,0.04);
}
.cat-card:hover { border-color: var(--royal); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.cat-icon {
    width: 48px; height: 48px; background: rgba(11,36,71,0.08);
    border-radius: 14px; display: flex; align-items: center; justify-content: center; transition: all 0.35s;
}
.cat-card:hover .cat-icon { background: rgba(11,36,71,0.15); }
.cat-card span { font-size: 0.72rem; font-weight: 600; color: var(--text-secondary); letter-spacing: 0.3px; }

/* ═══════════════════════════════
   ROW HEADERS
   ═══════════════════════════════ */
.row-header { display: flex; justify-content: space-between; align-items: center; padding: 0 20px; margin-bottom: 16px; }
.row-header h3 { font-size: 1.2rem; color: var(--text-primary); }
.row-header a { font-size: 0.8rem; color: var(--royal); font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* ═══════════════════════════════
   SPLIT SECTION LAYOUT
   ═══════════════════════════════ */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.split-img-wrapper {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
}
.split-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}
.split-img-wrapper:hover img {
    transform: scale(1.05);
}
.split-text-wrapper h3 {
    font-size: 1.8rem; color: var(--text-primary); margin-bottom: 16px; line-height: 1.3;
}
.split-text-wrapper p {
    color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 20px; line-height: 1.7;
}
@media (max-width: 768px) {
    .split-section { grid-template-columns: 1fr; gap: 30px; }
    .split-text-wrapper { text-align: center; }
    .split-text-wrapper h3 { font-size: 1.6rem; }
}

/* ═══════════════════════════════
   UNIFORM SECTION HEADERS
   ═══════════════════════════════ */
.section-header-centered {
    text-align: center;
    margin-bottom: 25px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-header-centered .sh-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 800;
    margin-bottom: 12px;
}
.section-header-centered .sh-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.1;
    font-weight: 800;
}
.section-header-centered .sh-title span {
    color: var(--gold);
}

/* ═══════════════════════════════
   PREMIUM PAGE HERO (For Secondary Pages)
   ═══════════════════════════════ */
.page-hero-header {
    background: linear-gradient(135deg, #0B2447 0%, #051330 100%);
    position: relative;
    padding: 35px 20px; /* Symmetrical Padding */
    margin-bottom: 25px;
    border-bottom: 3px solid var(--gold);
    overflow: hidden;
    text-align: center;
}

.page-hero-header > *:first-child { margin-top: 0 !important; }
.page-hero-header > *:last-child { margin-bottom: 0 !important; }

.page-hero-header .sh-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    max-width: 850px;
    margin: 15px auto 0;
    line-height: 1.6;
}

.page-hero-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(201, 161, 74, 0.15), transparent 40%);
    pointer-events: none;
}

/* Subtle blueprint/grid pattern */
.page-hero-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.page-hero-header .sh-title {
    color: #FFFFFF !important;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.page-hero-header .sh-subtitle {
    background: rgba(201, 161, 74, 0.1);
    border: 1px solid rgba(201, 161, 74, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    color: var(--gold) !important;
}

/* New Descriptor Footer for paragraphs moved below cards */
.page-footer-description {
    max-width: 850px;
    margin: 60px auto 0;
    text-align: center;
    padding: 40px;
    background: rgba(11, 36, 71, 0.02);
    border-radius: 24px;
    border: 1px dashed var(--border-subtle);
}
.page-footer-description p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ═══════════════════════════════
   HORIZONTAL SCROLL
   ═══════════════════════════════ */
.horizontal-scroll { display: flex; gap: 14px; overflow-x: auto; padding: 4px 20px 16px; scrollbar-width: none; scroll-snap-type: x mandatory; }
.horizontal-scroll::-webkit-scrollbar { display: none; }

/* ═══════════════════════════════
   PRODUCT / PROJECT CARDS
   ═══════════════════════════════ */
.product-card {
    min-width: 230px; width: 230px; background: var(--bg-card);
    border-radius: var(--r-md); overflow: hidden; scroll-snap-align: start;
    border: 1px solid var(--border-subtle); transition: all 0.35s ease;
    box-shadow: 0 2px 12px rgba(11,36,71,0.05);
}
.product-card:hover { border-color: var(--royal); box-shadow: var(--shadow-card); transform: translateY(-3px); }
.product-img { height: 140px; width: 100%; object-fit: cover; }
.product-info { padding: 14px; }
.product-info h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); }
.product-meta { font-size: 0.75rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.product-card .btn-outline {
    width: 100%; border: 1.5px solid var(--royal); color: var(--royal);
    padding: 8px; text-align: center; border-radius: var(--r-sm);
    font-size: 0.8rem; font-weight: 700; display: block; transition: all 0.3s; background: transparent;
}
.product-card .btn-outline:hover { background: rgba(11,36,71,0.08); }

/* ═══════════════════════════════
   TRAINING LIST
   ═══════════════════════════════ */
.training-list { padding: 0 20px; }
.list-item {
    display: flex; gap: 14px; background: var(--bg-card); padding: 14px;
    border-radius: var(--r-md); margin-bottom: 12px;
    border: 1px solid var(--border-subtle); border-left: 3px solid var(--royal); transition: all 0.3s;
}
.list-item:hover { border-color: var(--royal); box-shadow: var(--shadow-card); }
.list-thumb { width: 72px; height: 72px; border-radius: 12px; object-fit: cover; }
.list-content { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.list-content h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem; font-weight: 700; margin-bottom: 3px; color: var(--text-primary); }
.list-content p { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.4; }

/* ═══════════════════════════════
   TESTIMONIAL CARDS
   ═══════════════════════════════ */
.testimonial-card {
    min-width: 280px; background: var(--bg-card); padding: 22px;
    border-radius: var(--r-md); border: 1px solid var(--border-subtle);
    position: relative; overflow: hidden; transition: all 0.35s;
}
.testimonial-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--royal), var(--gold), var(--royal));
}
.testimonial-card:hover { border-color: var(--royal); box-shadow: var(--shadow-card); }
.stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 14px; }
.testimonial-card blockquote { font-size: 0.88rem; font-style: italic; color: var(--text-secondary); line-height: 1.65; margin-bottom: 18px; }
.avatar-row { display: flex; align-items: center; gap: 12px; }
.avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--royal), var(--royal-dark));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: 0.85rem;
}
.avatar-row h5 { font-weight: 700; font-size: 0.88rem; color: var(--text-primary); }
.avatar-row p { font-size: 0.72rem; color: var(--text-muted); }

/* ═══════════════════════════════
   DESKTOP OVERRIDES
   ═══════════════════════════════ */
@media (min-width: 768px) {
    .container { padding: 0 40px; }
    .categories-grid { grid-template-columns: repeat(6, 1fr); gap: 20px; padding: 0 40px; }
    .top-bar { height: 80px; padding: 0 50px; }
    .logo { font-size: 1.4rem; }
    .desktop-only { display: block; }
    .mobile-only { display: none; }
}
@media (max-width: 767px) {
    .desktop-only { display: none; }
    .mobile-only { display: block; }
}

.reveal { opacity: 0; transform: translateY(15px); transition: all 0.4s cubic-bezier(0.16,1,0.3,1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ─── WhatsApp Float ─── */
.whatsapp-float {
    position: fixed; bottom: 85px; right: 18px;
    width: 52px; height: 52px; background: #25D366; color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.35); z-index: 150; transition: all 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ═══════════════════════════════
   MOBILE SLIDE MENU
   ═══════════════════════════════ */
.mobile-menu-overlay {
    position: fixed; inset: 0; background: rgba(27,42,74,0.5);
    z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.35s ease;
}
.mobile-menu-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu {
    position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
    background: var(--bg-card); z-index: 2001;
    transition: right 0.4s cubic-bezier(0.25,0.8,0.25,1);
    overflow-y: auto; box-shadow: -10px 0 40px rgba(11,36,71,0.15);
    display: flex; flex-direction: column;
}
.mobile-menu.open { right: 0; }
.mobile-menu-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px 12px; border-bottom: 1px solid var(--border-subtle); margin-bottom: 16px;
}
.mobile-menu-nav { display: flex; flex-direction: column; padding: 0 12px; flex: 1; }
.mobile-menu-link {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px; color: var(--text-secondary);
    font-size: 0.92rem; font-weight: 600;
    border-radius: var(--r-sm); transition: all 0.25s;
}
.mobile-menu-link:hover, .mobile-menu-link.active { background: rgba(11,36,71,0.08); color: var(--royal); }
.mobile-menu-footer { padding: 20px 24px; border-top: 1px solid var(--border-subtle); margin-top: auto; }

/* ═══════════════════════════════
   PREMIUM SITE FOOTER
   ═══════════════════════════════ */
.site-footer {
    background: linear-gradient(135deg, #0B2447 0%, #051329 100%);
    border-top: 4px solid var(--gold);
    padding: 50px 0 50px;
    color: rgba(255,255,255,0.85);
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 100% 0%, rgba(201,161,74,0.15) 0%, transparent 50%);
    pointer-events: none;
}
.footer-top { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; position: relative; z-index: 10; }
.footer-brand { flex: 1.5; min-width: 280px; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.footer-col { flex: 1; min-width: 160px; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.footer-brand .logo { font-size: 1.8rem; margin-bottom: 15px; color: #fff; text-decoration: none; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; }
.footer-col h4 {
    color: #fff; font-size: 1.05rem; font-weight: 800;
    margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1.5px;
    position: relative; display: inline-block; text-align: left; margin-top: 0;
}
.footer-col h4::after {
    content: ''; position: absolute; left: 0; bottom: -8px;
    width: 40px; height: 3px; background: var(--gold); border-radius: 2px;
}
.footer-col a { display: block; color: rgba(255,255,255,0.75); text-decoration: none; margin-bottom: 12px; font-size: 0.85rem; transition: 0.3s; }
.footer-col a:hover { color: var(--gold); transform: translateX(5px); }
.footer-col a i { transition: transform 0.3s; }
.footer-col a:hover i { transform: scale(1.1); }

.footer-social-row { display: flex; justify-content: center; padding: 15px 0; margin-top: 25px; border-top: 1px solid rgba(255,255,255,0.10); position: relative; z-index: 10; }
.footer-contact-icons { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }
.social-icon-btn {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(11,36,71,0.05); color: var(--text-primary) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(11,36,71,0.1); box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.site-footer .social-icon-btn {
    background: rgba(255,255,255,0.05); color: #fff !important;
    border-color: rgba(255,255,255,0.1); box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.social-icon-btn svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 2px; }
.social-icon-btn.facebook:hover { background: #1877F2; border-color: #1877F2; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(24,119,242,0.4); }
.social-icon-btn.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: transparent; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(220,39,67,0.4); }
.social-icon-btn.linkedin:hover { background: #0A66C2; border-color: #0A66C2; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(10,102,194,0.4); }
.social-icon-btn.twitter:hover { background: #1DA1F2; border-color: #1DA1F2; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(29,161,242,0.4); }
.social-icon-btn.youtube:hover { background: #FF0000; border-color: #FF0000; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(255,0,0,0.4); }

.footer-bottom { margin-top: 15px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; position: relative; z-index: 10; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-bottom: 5px; display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; }
.footer-bottom a { color: #fff; text-decoration: none; font-weight: 700; margin-left: 5px; transition: 0.3s; }
.footer-bottom a:hover { color: var(--gold); }

/* ═══════════════════════════════
   TRAINING BATCHES
   ═══════════════════════════════ */
.batch-tab {
    padding: 10px 22px; font-size: 0.82rem; font-weight: 700;
    border: none; cursor: pointer; display: flex; align-items: center; gap: 6px;
    transition: all 0.3s; font-family: inherit; color: var(--text-muted);
    background: var(--bg-card); border: 1px solid var(--border-subtle);
}
.batch-tab:first-child { border-radius: 30px 0 0 30px; }
.batch-tab:last-child { border-radius: 0 30px 30px 0; }
.batch-tab.active { background: var(--royal); color: #fff; border-color: var(--royal); }

.batch-table-wrap { padding: 0 16px; }
.batch-table-scroll {
    overflow-x: hidden; overflow-y: auto; max-height: 360px;
    -webkit-overflow-scrolling: touch; scroll-behavior: smooth;
    border-radius: var(--r-md); border: 1px solid var(--border-subtle);
    scrollbar-width: none; -ms-overflow-style: none;
}
.batch-table-scroll::-webkit-scrollbar { display: none; }
.batch-table { width: 100%; min-width: 820px; border-collapse: collapse; background: var(--bg-card); }
.batch-table thead tr { border-bottom: 2px solid var(--royal); }
.batch-table th {
    padding: 14px 16px; position: sticky; top: 0; background: var(--bg-surface);
    z-index: 10; box-shadow: 0 2px 4px rgba(11,36,71,0.08);
    font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1px; color: var(--royal); text-align: left; white-space: nowrap;
}
.batch-table tbody tr { border-bottom: 1px solid var(--border-subtle); transition: all 0.25s; }
.batch-table tbody tr:last-child { border-bottom: none; }
.batch-table tbody tr:hover { background: rgba(11,36,71,0.04); }
.batch-table td { padding: 14px 16px; vertical-align: middle; font-size: 0.85rem; }

.bt-program-cell { display: flex; align-items: center; gap: 10px; min-width: 180px; }
.bt-program-cell strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.bt-program-cell span { display: block; font-size: 0.7rem; color: var(--text-muted); }
.bt-schedule-cell { display: flex; flex-direction: column; gap: 4px; min-width: 150px; }
.bt-schedule-cell div { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--text-secondary); white-space: nowrap; }
.bt-schedule-cell i { color: var(--royal); }

.bt-instructor-cell { display: flex; align-items: center; gap: 10px; min-width: 150px; }
.bt-instructor-avatar {
    width: 34px; height: 34px; border-radius: 50%;
    background: linear-gradient(135deg, var(--royal), var(--royal-dark));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: 0.82rem; flex-shrink: 0;
}
.bt-instructor-cell strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text-primary); margin-bottom: 1px; }
.bt-instructor-cell span { display: block; font-size: 0.68rem; color: var(--royal); }

.bt-enrollment-text { font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); display: block; margin-bottom: 6px; }
.bt-enrollment-bar { width: 80px; height: 5px; background: rgba(11,36,71,0.1); border-radius: 10px; overflow: hidden; }
.bt-enrollment-fill { height: 100%; background: linear-gradient(90deg, var(--royal), #10B981); border-radius: 10px; transition: width 0.5s ease; }

.batch-mode { font-size: 0.65rem; font-weight: 800; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; flex-shrink: 0; white-space: nowrap; }
.batch-mode.online { background: rgba(16,185,129,0.15); color: #10B981; }
.batch-mode.offline { background: rgba(239,68,68,0.15); color: #EF4444; }
.batch-icon { width: 38px; height: 38px; background: rgba(11,36,71,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--royal); flex-shrink: 0; }

.batch-actions { display: flex; gap: 8px; }
.btn-enquiry {
    padding: 7px 14px; font-size: 0.72rem; font-weight: 800;
    border: 1.5px solid var(--royal); background: transparent; color: var(--royal);
    border-radius: 6px; cursor: pointer; font-family: inherit; letter-spacing: 0.5px; transition: all 0.3s;
}
.btn-enquiry:hover { background: rgba(11,36,71,0.08); }
.btn-join {
    padding: 7px 14px; font-size: 0.72rem; font-weight: 800;
    border: none; background: var(--royal); color: #fff;
    border-radius: 6px; cursor: pointer; font-family: inherit; letter-spacing: 0.5px;
    transition: all 0.3s; text-decoration: none; display: inline-block;
}
.btn-join:hover { background: var(--royal-light); }

/* ═══════════════════════════════
   SLIDER NAVIGATION ARROWS
   ═══════════════════════════════ */
.batch-slider-wrap { position: relative; padding: 0 16px; max-width: 1300px; margin: 0 auto; }
.slider-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; background: var(--bg-card);
    border: 1px solid var(--border-subtle); border-radius: 50%;
    color: var(--royal); display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s; z-index: 10;
    box-shadow: 0 4px 15px rgba(11,36,71,0.1);
}
.slider-nav:hover { background: var(--royal); color: #fff; border-color: var(--royal); box-shadow: 0 0 20px rgba(11,36,71,0.3); }
.slider-nav.prev { left: -22px; }
.slider-nav.next { right: -22px; }

@media (max-width: 1200px) { .slider-nav.prev { left: 5px; } .slider-nav.next { right: 5px; } }
@media (max-width: 991px) { .desktop-only { display: none !important; } .mobile-only { display: block !important; } }

.batch-slider {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; gap: 20px; scrollbar-width: none;
    scroll-behavior: smooth; cursor: grab; user-select: none; -webkit-user-select: none;
}
.batch-slider::-webkit-scrollbar { display: none; }
.batch-slider:active { cursor: grabbing; }

.batch-slide-card {
    flex: 0 0 calc((100% - 40px) / 3); min-width: calc((100% - 40px) / 3);
    scroll-snap-align: start; background: var(--bg-card);
    border: 1px solid var(--border-subtle); border-radius: var(--r-md);
    padding: 20px 22px; transition: border-color 0.3s;
    box-shadow: 0 2px 12px rgba(11,36,71,0.05);
}
@media (max-width: 991px) { .batch-slider-wrap { max-width: 700px; } .batch-slide-card { flex: 0 0 100%; min-width: 100%; } }
.batch-slide-card:hover { border-color: var(--royal); }

.bsc-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--border-subtle); }
.bsc-program { display: flex; gap: 12px; align-items: center; flex: 1; }
.bsc-program h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.bsc-program p { font-size: 0.72rem; color: var(--text-muted); }
.bsc-details { display: flex; justify-content: space-between; align-items: center; gap: 15px; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--border-subtle); }
.bsc-details-left { display: flex; flex-direction: column; gap: 12px; }
.bsc-details-right { display: flex; align-items: center; gap: 12px; }
.bsc-row { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-secondary); }
.bsc-row i { color: var(--royal); flex-shrink: 0; }
.bsc-bottom { display: flex; justify-content: space-between; align-items: center; }
.bsc-enrollment { display: flex; align-items: center; gap: 8px; }
.bsc-enrollment span { font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); }

.batch-slider-dots { display: flex; justify-content: center; gap: 6px; padding: 14px 0 4px; }
.batch-slider-dots .bs-dot {
    width: 8px; height: 8px; border-radius: 50%; background: rgba(11,36,71,0.15);
    border: none; padding: 0; cursor: pointer; transition: all 0.3s;
}
.batch-slider-dots .bs-dot.active { width: 24px; border-radius: 4px; background: var(--royal); }

/* ═══════════════════════════════
   ENQUIRY MODAL
   ═══════════════════════════════ */
.modal-overlay { position: fixed; inset: 0; background: rgba(27,42,74,0.5); z-index: 3000; opacity: 0; visibility: hidden; transition: all 0.3s; }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
    position: fixed; bottom: -100%; left: 50%; transform: translateX(-50%);
    width: min(420px, calc(100% - 32px)); max-height: 90vh; overflow-y: auto;
    scrollbar-width: none; -ms-overflow-style: none; /* Hide scrollbar */
    background: var(--bg-card); border-radius: var(--r-lg) var(--r-lg) 0 0;
    padding: 24px; z-index: 3001;
    transition: bottom 0.4s cubic-bezier(0.25,0.8,0.25,1);
    border: 1px solid var(--border-subtle); box-shadow: 0 -10px 50px rgba(11,36,71,0.15);
}
.modal.open { bottom: 0; }
.modal::-webkit-scrollbar { display: none; } /* Hide Chrome/Safari scrollbar */
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.modal-field { margin-bottom: 16px; }
.modal-field label { display: block; font-size: 0.72rem; color: var(--royal); margin-bottom: 6px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.modal-field input, .modal-field textarea {
    width: 100%; background: var(--bg-input); border: 1px solid var(--border-subtle);
    color: var(--text-primary); padding: 12px 14px; border-radius: var(--r-sm);
    font-size: 0.88rem; font-family: inherit; outline: none; transition: 0.3s; resize: vertical;
}
.modal-field input:focus, .modal-field textarea:focus { border-color: var(--royal); }

.btn-gold {
    background: var(--royal); color: #fff; border: none;
    padding: 12px 28px; border-radius: 10px; font-size: 0.875rem;
    font-weight: 800; cursor: pointer; transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
}
.btn-gold:hover { background: var(--royal-light); }

.btn-royal {
    background: linear-gradient(135deg, var(--royal) 0%, var(--royal-dark) 100%);
    color: #fff; border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 28px; border-radius: 50px; font-size: 0.85rem;
    font-weight: 800; cursor: pointer; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
    box-shadow: 0 4px 15px rgba(11,36,71,0.25);
    letter-spacing: 0.5px;
}
.btn-royal i {
    transition: transform 0.3s ease;
}
.btn-royal:hover { 
    background: linear-gradient(135deg, var(--royal-light) 0%, var(--royal) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(11,36,71,0.4);
    color: var(--gold);
    border-color: var(--gold);
}
.btn-royal:hover i {
    transform: translateX(4px);
}

/* ═══════════════════════════════
   PREMIUM PROJECT CARDS
   ═══════════════════════════════ */
.project-premium-card {
    width: 100%; background: var(--bg-card);
    border-radius: var(--r-md); overflow: hidden; scroll-snap-align: start;
    border: 1px solid var(--border-subtle); transition: all 0.35s;
    box-shadow: 0 2px 12px rgba(11,36,71,0.05);
}
.project-premium-card:hover { border-color: var(--royal); box-shadow: var(--shadow-card); transform: translateY(-4px); }
.project-premium-img-wrap { position: relative; height: 160px; overflow: hidden; }
.project-premium-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.project-premium-card:hover .project-premium-img-wrap img { transform: scale(1.05); }
.project-type-badge {
    position: absolute; top: 10px; left: 10px;
    background: var(--royal); color: #fff;
    padding: 4px 12px; border-radius: 20px; font-size: 0.65rem;
    font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
}
.project-price {
    position: absolute; bottom: 10px; right: 10px;
    background: var(--gold); color: #fff;
    padding: 4px 12px; border-radius: 8px; font-size: 0.72rem;
    font-weight: 700; box-shadow: 0 2px 8px rgba(232,163,23,0.3);
}
.project-premium-info { padding: 14px; }
.project-premium-info h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.project-features { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 14px; }
.feature-tag {
    display: inline-flex; align-items: center; gap: 4px;
    background: rgba(11,36,71,0.08); color: var(--text-secondary);
    font-size: 0.65rem; padding: 4px 8px; border-radius: 6px; font-weight: 600;
}
.feature-tag i { color: var(--royal); }
.btn-wa-enquiry {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 10px; background: #25D366; color: #fff;
    border-radius: var(--r-sm); font-size: 0.8rem; font-weight: 700; transition: all 0.3s;
}
.btn-wa-enquiry:hover { background: #20BD5A; }

/* ═══════════════════════════════
   PREMIUM FEATURES GRID
   ═══════════════════════════════ */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.feature-card {
    background: var(--bg-card); padding: 20px 16px; border-radius: var(--r-md);
    border: 1px solid var(--border-subtle); text-align: center; transition: 0.3s;
    box-shadow: 0 2px 12px rgba(11,36,71,0.05);
}
.feature-card:hover { border-color: var(--royal); box-shadow: var(--shadow-card); }
.feature-card h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); }
.feature-card p { font-size: 0.75rem; color: var(--text-muted); }

.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; padding: 10px 0; }

/* ═══════════════════════════════
   EXPERTS SECTION
   ═══════════════════════════════ */
.experts-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.experts-content { padding-right: 0; }
.experts-profiles { display: flex; flex-direction: column; gap: 16px; }

.expert-card {
    display: flex; align-items: center; gap: 20px;
    background: var(--bg-primary); padding: 16px; border-radius: var(--r-md);
    border: 1px solid var(--border-subtle); transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(11,36,71,0.04);
}
.expert-card:hover { border-color: var(--royal); transform: translateX(-5px); box-shadow: 0 8px 25px rgba(11,36,71,0.08); }

.expert-img-wrap {
    width: 80px; height: 80px; border-radius: 50%; overflow: hidden;
    flex-shrink: 0; border: 3px solid #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.expert-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.expert-info h4 { font-size: 1.1rem; font-weight: 800; color: var(--text-primary); margin-bottom: 2px; }
.expert-info h6 { font-size: 0.8rem; font-weight: 700; color: var(--royal); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.expert-exp { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }
.expert-exp i { color: var(--gold); }

@media (min-width: 992px) {
    .experts-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
    .experts-content { padding-right: 40px; }
}

/* ═══════════════════════════════
   TESTIMONIALS (Side Scroller)
   ═══════════════════════════════ */
.testimonial-scroller {
    display: flex; overflow-x: auto; padding: 0 20px 30px; gap: 16px;
    scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; scroll-behavior: smooth;
}
.testimonial-scroller::-webkit-scrollbar { display: none; }
.testimonial-card {
    min-width: calc(33.333% - 11px); width: calc(33.333% - 11px);
    background: var(--bg-card); padding: 24px; border-radius: var(--r-lg);
    border: 1px solid var(--border-subtle); scroll-snap-align: start; flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    box-shadow: 0 2px 12px rgba(11,36,71,0.05);
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: 0 10px 30px rgba(11,36,71,0.12); }
.testimonial-card blockquote { font-size: 0.88rem; line-height: 1.6; color: var(--text-secondary); margin-bottom: 20px; font-style: italic; }
.stars { color: var(--gold); margin-bottom: 15px; display: flex; gap: 3px; }
.avatar-row { display: flex; align-items: center; gap: 12px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--royal); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; }
.avatar-row h5 { font-size: 0.9rem; color: var(--text-primary); margin-bottom: 2px; }
.avatar-row p { font-size: 0.72rem; color: var(--text-muted); }

/* ═══════════════════════════════
   PRESTIGE ROYAL HUB (Mobile Nav)
   ═══════════════════════════════ */
.bottom-nav {
    position: fixed; bottom: 0; left: 0; right: 0; height: 60px;
    background: #FFFFFF;
    display: flex !important; justify-content: space-around; align-items: center;
    padding: 0 5px;
    border-top: 2px solid rgba(11,36,71,0.15);
    box-shadow: 0 -4px 20px rgba(11,36,71,0.1);
    z-index: 2000;
}
.bottom-nav .nav-item {
    flex: 1; display: flex; align-items: center; justify-content: center;
    text-decoration: none; padding: 10px 0; position: relative; transition: all 0.3s ease;
}
.bottom-nav .nav-item svg {
    width: 24px; height: 24px;
    color: var(--royal) !important; stroke: var(--royal) !important;
    opacity: 1 !important; transition: all 0.3s ease;
}
.bottom-nav .nav-item span { display: none !important; }
.bottom-nav .nav-item:hover svg, .bottom-nav .nav-item.active svg {
    color: var(--royal-light) !important; stroke: var(--royal-light) !important;
    filter: drop-shadow(0 2px 8px rgba(11,36,71,0.4)); transform: translateY(-2px);
}
.bottom-nav .nav-item.active::after { display: none; }

.bottom-nav .nav-item.centered-action { position: relative; overflow: visible; flex: 1.1; }
.prominent-blob.gold-vibe {
    width: 56px; height: 56px;
    background: #0B2447;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin-top: -28px; margin-bottom: 2px;
    box-shadow: 0 4px 16px rgba(11,36,71,0.3), 0 2px 6px rgba(0,0,0,0.15);
    border: 4px solid #FFFFFF;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}
.prominent-blob.gold-vibe:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 22px rgba(11,36,71,0.5), 0 3px 8px rgba(0,0,0,0.15);
}
/* Force Golden Icon on Centered Home Blob */
.bottom-nav .nav-item.centered-action .prominent-blob.gold-vibe i,
.bottom-nav .nav-item.centered-action .prominent-blob.gold-vibe svg { 
    display: block !important;
    color: #E8A317 !important; 
    stroke: #E8A317 !important; 
    fill: none !important;
    stroke-width: 2.8px !important;
    opacity: 1 !important; 
    width: 28px !important; 
    height: 28px !important; 
    margin: 0 auto !important;
}
.bottom-nav .nav-item.centered-action span { color: var(--royal) !important; font-weight: 700; font-size: 0.58rem; }
.bottom-nav .nav-item.centered-action.active::after { display: none; }

@media (min-width: 992px) { .bottom-nav { display: none !important; } }
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
@media (max-width: 1024px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; } .projects-grid { gap: 20px; } }
@media (max-width: 600px) {
    .footer-top { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-brand, .footer-col { text-align: left !important; align-items: flex-start; display: flex; flex-direction: column; }
    .footer-brand p, .footer-col h4 { text-align: left !important; }
    .footer-col a { text-align: left !important; justify-content: flex-start; }
    .site-footer { display: none !important; }
    .whatsapp-float { bottom: 105px; }
    .projects-grid { display: grid; grid-template-columns: 1fr; gap: 16px; padding: 0 16px 30px; }
    .project-premium-card { width: 100%; border-radius: 12px; box-shadow: 0 4px 18px rgba(11,36,71,0.08); }
    .project-premium-img-wrap { height: 180px; border-radius: 12px 12px 0 0; }
    .project-premium-info { padding: 14px; }
    .project-premium-info h4 { font-size: 1rem; margin-bottom: 6px; }
    .product-meta { font-size: 0.8rem; margin-bottom: 10px; }
    .project-type-badge { font-size: 0.65rem; padding: 3px 8px; top: 8px; left: 8px; }
    .project-price { font-size: 0.8rem; padding: 3px 10px; bottom: 8px; right: 8px; }
    .project-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
    .btn-wa-enquiry { padding: 10px 8px; font-size: 0.82rem; gap: 6px; border-radius: 8px; }
    .testimonial-scroller { display: flex; overflow-x: auto; padding: 10px 24px 30px; gap: 16px; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; }
    .testimonial-card { min-width: 85%; width: 85%; flex-shrink: 0; scroll-snap-align: center; margin: 0; }
}

/* ═══════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════ */
.why-choose-grid {
    display: grid; grid-template-columns: 1fr; gap: 24px;
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
.wcu-card {
    display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
    background: var(--bg-card); padding: 30px; border-radius: var(--r-lg);
    border: 1px solid var(--border-subtle); transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(11,36,71,0.03);
}
.wcu-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(11,36,71,0.06); border-color: var(--gold); }
.wcu-icon-wrap {
    width: 60px; height: 60px; border-radius: 50%; background: color-mix(in srgb, var(--royal) 10%, transparent);
    display: flex; align-items: center; justify-content: center; color: var(--royal);
    transition: all 0.3s;
}
.wcu-card:hover .wcu-icon-wrap { background: var(--gold); color: #fff; }
.wcu-content h3 { font-size: 1.25rem; font-weight: 800; color: var(--text-primary); margin-bottom: 10px; }
.wcu-content p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

@media (min-width: 768px) {
    .why-choose-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (min-width: 1024px) {
    .why-choose-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 20px; }
}
/* ═══════════════════════════════
   PREMIUM SECTION HEADERS
   ═══════════════════════════════ */
.sh-subtitle {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 12px;
    display: block;
}

.sh-title {
    font-family: var(--hfont), serif;
    font-size: 2.22rem;
    color: var(--text-primary);
    line-height: 1.25;
    font-weight: 800;
    margin-top: 5px;
    margin-bottom: 20px;
}

.sh-title span {
    color: var(--royal);
}

.sh-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 40px;
}

.section-spacing {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (max-width: 768px) {
    .section-spacing {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .sh-title { font-size: 1.8rem; }
}
