/* ═══════════════════════════════════════════════════════════════
   Realeaste University — Premium Charcoal & Gold Design System
   NEW UI MODEL: Soft Dark / Light-Black Theme
   ═══════════════════════════════════════════════════════════════ */
@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 Colors */
    --gold: #C9A14A;
    --gold-light: #E8D5A3;
    --gold-dark: #9B7A2F;
    --gold-rgb: 201, 161, 74;

    /* NEW: Light-Black / Charcoal Palette */
    --bg-primary: #18181B;
    --bg-card: #232328;
    --bg-elevated: #2A2A30;
    --bg-surface: #1E1E22;
    --bg-input: #2C2C33;
    --border-subtle: rgba(255,255,255,0.06);
    --border-gold: rgba(201,161,74,0.18);

    /* Text */
    --text-primary: #F5F5F5;
    --text-secondary: #A0A0A8;
    --text-muted: #6B6B75;

    /* Shadows & Effects */
    --shadow-card: 0 8px 32px rgba(0,0,0,0.25);
    --shadow-gold: 0 4px 24px rgba(201,161,74,0.12);
    --glow-gold: 0 0 20px rgba(201,161,74,0.2);

    /* 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: 50px 0; }

/* ═══════════════════════════════
   HEADER / TOP BAR
   ═══════════════════════════════ */
.top-bar {
    position: sticky; top: 0; z-index: 200;
    height: var(--header-h);
    background: rgba(24,24,27,0.88);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.5px;
}
.logo span { color: var(--text-primary); font-weight: 500; }

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

.icon-btn {
    width: 40px; height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.icon-btn:hover {
    background: rgba(201,161,74,0.12);
    box-shadow: var(--glow-gold);
}

.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(--gold);
    transition: transform 0.3s ease;
}
.nav-link-with-icon:hover {
    color: var(--gold);
    background: rgba(201,161,74,0.05);
}
.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;
}
.search-bar:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,161,74,0.1);
}
.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); }

/* ═══════════════════════════════
   HERO SLIDER — 3 Slides
   ═══════════════════════════════ */
.hero-slider {
    position: relative;
    margin: 0 16px 24px;
    border-radius: var(--r-lg);
    overflow: hidden;
    height: 200px;
    box-shadow: var(--shadow-card);
}

.slider-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25,0.8,0.25,1);
}

.slide {
    width: calc(100% / 3);
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 22px;
    position: relative;
    flex-shrink: 0;
}

.slide::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(24,24,27,0.1) 0%, rgba(24,24,27,0.85) 100%);
}

.slide-content {
    position: relative; z-index: 5;
    width: 100%;
}

.slide-badge {
    display: inline-block;
    background: rgba(201,161,74,0.2);
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
}

.slide-content h2 {
    font-size: 1.35rem;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.btn-gold {
    background: var(--gold);
    color: #000;
    padding: 10px 26px;
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-flex; align-items: center; gap: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.35s;
    border: none; cursor: pointer;
    box-shadow: 0 4px 16px rgba(201,161,74,0.3);
}
.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201,161,74,0.45);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 12px;
    right: 16px;
    z-index: 10;
    display: flex; gap: 6px;
}
.slider-dots .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none; cursor: pointer;
    transition: all 0.3s;
}
.slider-dots .dot.active {
    background: var(--gold);
    width: 22px;
    border-radius: 10px;
}

/* ═══════════════════════════════
   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;
}
.cat-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.cat-icon {
    width: 48px; height: 48px;
    background: rgba(201,161,74,0.08);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.35s;
}
.cat-card:hover .cat-icon {
    background: rgba(201,161,74,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(--gold);
    font-weight: 600;
    display: flex; align-items: center; gap: 4px;
}

/* ═══════════════════════════════
   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;
}
.product-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
    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(--gold);
    color: var(--gold);
    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(201,161,74,0.1);
}

/* ═══════════════════════════════
   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(--gold);
    transition: all 0.3s;
}
.list-item:hover {
    border-color: var(--border-gold);
    border-left-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.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(--gold), var(--gold-light), var(--gold));
}
.testimonial-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.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(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    color: #000; 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); }

/* ═══════════════════════════════
   BOTTOM NAV (MOBILE)
   → Main styles defined in PRESTIGE GOLD HUB section below
   ═══════════════════════════════ */

/* ═══════════════════════════════
   DESKTOP OVERRIDES
   ═══════════════════════════════ */
@media (min-width: 768px) {
    .container { padding: 0 40px; }
    .categories-grid { grid-template-columns: repeat(6, 1fr); gap: 20px; padding: 0 40px; }

    .hero-slider { height: 420px; margin: 0 40px 30px; border-radius: var(--r-lg); }
    .slide-content h2 { font-size: 2.8rem; }
    .slide-badge { font-size: 0.75rem; padding: 6px 16px; }


    .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; }
}

/* ─── Scroll Reveal ─── */
.reveal {
    opacity: 0; transform: translateY(24px);
    transition: all 0.7s 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(0,0,0,0.6);
    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(0,0,0,0.5);
    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(201,161,74,0.08);
    color: var(--gold);
}

.mobile-menu-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border-subtle);
    margin-top: auto;
}

/* ═══════════════════════════════
   PREMIUM SITE FOOTER
   ═══════════════════════════════ */
.site-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    padding: 50px 0 25px;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .site-footer {
        margin-bottom: var(--bottom-nav-h);
    }
}



/* ═══════════════════════════════
   PREMIUM SITE FOOTER
   ═══════════════════════════════ */
.site-footer {
    background: linear-gradient(180deg, #111114 0%, #09090B 100%);
    border-top: 1px solid rgba(201,161,74,0.15);
    padding: 80px 0 40px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}
.footer-brand { flex: 2; min-width: 300px; }
.footer-col { flex: 1; min-width: 160px; }

.footer-brand .logo {
    font-size: 1.6rem;
    margin-bottom: 15px;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}
.footer-col h4::after {
    content: '';
    position: absolute; left: 0; bottom: -8px;
    width: 30px; height: 2px;
    background: var(--gold);
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 14px;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-align: left;
}
.footer-col a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .footer-top { flex-direction: column; gap: 40px; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-col a:hover { padding-left: 0; transform: translateY(-2px); }
    .footer-col a { justify-content: center; }
}

/* ═══════════════════════════════
   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(--gold);
    color: #000;
    border-color: var(--gold);
}

/* Table Layout */
.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);
    
    /* Hide scrollbar for Chrome, Safari and Opera */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}
.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(--border-gold);
}
.batch-table th {
    padding: 14px 16px;
    position: sticky;
    top: 0;
    background: #1e1e24;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    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(201,161,74,0.04);
}

.batch-table td {
    padding: 14px 16px;
    vertical-align: middle;
    font-size: 0.85rem;
}

/* Program Cell */
.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);
}

/* Schedule Cell */
.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(--gold); }

/* Instructor Cell */
.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(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    color: #000;
    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(--gold);
}

/* Enrollment Cell  */
.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(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
}
.bt-enrollment-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #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(201,161,74,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    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(--gold);
    background: transparent;
    color: var(--gold);
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}
.btn-enquiry:hover { background: rgba(201,161,74,0.1); }

.btn-join {
    padding: 7px 14px;
    font-size: 0.72rem;
    font-weight: 800;
    border: none;
    background: var(--gold);
    color: #000;
    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(--gold-light); }

/* ═══════════════════════════════
   SLIDER NAVIGATION ARROWS
   ═══════════════════════════════ */
.batch-slider-wrap { position: relative; }
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}
.slider-nav:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}
.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-wrap {
    padding: 0 16px;
    max-width: 1300px;
    margin: 0 auto;
}

.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;
}

@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(--border-gold);
}

.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(--gold); 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(255,255,255,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(--gold);
}

/* ═══════════════════════════════
   ENQUIRY MODAL
   ═══════════════════════════════ */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.65);
    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;
    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(0,0,0,0.5);
}
.modal.open { bottom: 0; }

.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(--gold);
    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(--gold);
}

/* ═══════════════════════════════
   PREMIUM PROJECT CARDS
   ═══════════════════════════════ */
.project-premium-card {
    min-width: 270px; width: 270px;
    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;
}
.project-premium-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
    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: rgba(201,161,74,0.92);
    color: #000;
    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: rgba(0,0,0,0.75);
    color: #fff;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

.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(201,161,74,0.08);
    color: var(--text-secondary);
    font-size: 0.65rem;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
}
.feature-tag i { color: var(--gold); }

.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;
}
.feature-card h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; color: #fff; }
.feature-card p { font-size: 0.75rem; color: var(--text-muted); }

/* ═══════════════════════════════
   FEATURED PROJECTS GRID
   ═══════════════════════════════ */
.projects-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 10px 0;
}

/* ═══════════════════════════════
   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;
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: 0 10px 30px rgba(201,161,74,0.15); }
.testimonial-card blockquote { font-size: 0.88rem; line-height: 1.6; color: #ccc; 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(--gold); color: #000; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; }
.avatar-row h5 { font-size: 0.9rem; color: #fff; margin-bottom: 2px; }
.avatar-row p { font-size: 0.72rem; color: var(--text-muted); }

/* ═══════════════════════════════
   SITE FOOTER (Centered Bottom)
   ═══════════════════════════════ */
.site-footer {
    background: #0a0a0a;
    padding: 40px 0 20px;
    border-top: 1px solid var(--border-gold);
    color: #fff;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
}

.footer-brand .logo { font-size: 1.8rem; font-weight: 700; color: var(--gold); }
.footer-brand .logo span { color: #fff; }
.footer-brand p { color: #aaa; font-size: 0.9rem; line-height: 1.6; text-align: left; }

.footer-col h4 {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    text-align: left;
}
.footer-col h4::after {
    content: ''; position: absolute; left: 0; bottom: -6px;
    width: 30px; height: 3px; background: var(--gold);
}

.footer-col a {
    display: flex;
    flex-direction: column; /* Icon above text as requested */
    align-items: center;
    justify-content: center;
    color: #ddd;
    text-decoration: none;
    margin-bottom: 20px;
    font-size: 0.85rem;
    transition: 0.3s;
    text-align: center;
}
.footer-col a:hover { color: var(--gold); }
.footer-col a i { 
    color: var(--gold); 
    margin-right: 0; 
    margin-bottom: 8px; 
    width: 22px; 
    height: 22px; 
}

/* Social Row (Centered Again) */
.footer-contact-icons {
    display: flex;
    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(255,b,c,0.05); /* Soft dark base */
    background: rgba(255,255,255,0.05);
    color: #fff !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.social-icon-btn svg { width: 22px; height: 22px; 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.3); }
.social-icon-btn.instagram:hover { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); border-color: transparent; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3); }
.social-icon-btn.linkedin:hover { background: #0A66C2; border-color: #0A66C2; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(10, 102, 194, 0.3); }
.social-icon-btn.twitter:hover { background: #1DA1F2; border-color: #1DA1F2; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(29, 161, 242, 0.3); }
.social-icon-btn.youtube:hover { background: #FF0000; border-color: #FF0000; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3); }

/* ═══════════════════════════════
   PRESTIGE GOLD HUB (Mobile Nav)
   Icon-Only layout, Dark theme + Solid Gold
   ═══════════════════════════════ */
.bottom-nav {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: #0d0d0f;
    display: flex !important;
    justify-content: space-around;
    align-items: center;
    padding: 0 5px;
    border-top: 1px solid rgba(201,161,74,0.3);
    box-shadow: 0 -4px 25px rgba(0,0,0,0.8);
    z-index: 2000;
}

/* ── Each nav item: purely icon ── */
.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;
}

/* ── Icons: Solid Gold (No fading) ── */
.bottom-nav .nav-item svg {
    width: 24px;
    height: 24px;
    color: var(--gold) !important;
    stroke: var(--gold) !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

/* ── Labels: DISABLED completely ── */
.bottom-nav .nav-item span {
    display: none !important;
}

/* ── Hover / Active glow ── */
.bottom-nav .nav-item:hover svg,
.bottom-nav .nav-item.active svg {
    color: var(--gold-light) !important;
    stroke: var(--gold-light) !important;
    filter: drop-shadow(0 2px 8px rgba(201,161,74,0.6));
    transform: translateY(-2px);
}

/* No glowing dots needed for icon-only layout */
.bottom-nav .nav-item.active::after {
    display: none;
}

/* ══ Center item (Home) — Elevated Gold Circle ══ */
.bottom-nav .nav-item.centered-action {
    position: relative;
    overflow: visible;
    flex: 1.1;
}

.prominent-blob.gold-vibe {
    width: 54px;
    height: 54px;
    background: linear-gradient(145deg, #e2c773, #c9a14a 50%, #8e6c1e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -28px;
    margin-bottom: 2px;
    box-shadow:
        0 4px 16px rgba(201,161,74,0.4),
        0 2px 6px rgba(0,0,0,0.3);
    border: 3px solid #0d0d0f;
    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(201,161,74,0.5),
        0 3px 8px rgba(0,0,0,0.3);
}

.prominent-blob.gold-vibe svg {
    color: #000 !important;
    stroke: #000 !important;
    opacity: 1;
    margin-bottom: 0;
    width: 26px;
    height: 26px;
}

/* Center label always gold */
.bottom-nav .nav-item.centered-action span {
    color: var(--gold) !important;
    font-weight: 700;
    font-size: 0.58rem;
}

/* No dot indicator for center */
.bottom-nav .nav-item.centered-action.active::after {
    display: none;
}

@media (min-width: 992px) {
    .bottom-nav { display: none !important; }
}

.footer-bottom {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    font-size: 0.82rem;
    color: #666;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p { display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; }
.footer-bottom a { color: var(--gold); text-decoration: none; font-weight: 600; margin-left: 5px; }

@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: center !important;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .footer-brand p, .footer-col h4 {
        text-align: center !important;
    }
    .footer-col a {
        text-align: center !important;
        justify-content: center;
    }

    /* ═══════════════════════════════
       MOBILE CLEANUP: Only Bottom Nav
       ═══════════════════════════════ */
    .site-footer {
        display: none !important; /* Hide redundant desktop footer on mobile */
    }

    .whatsapp-float {
        bottom: 105px; /* Moves up to clear the bottom nav */
    }

    /* ═══════════════════════════════
       MOBILE PROJECT GRID (SINGLE COLUMN)
       ═══════════════════════════════ */
    .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(0,0,0,0.2);
    }
    .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; }

    /* ═══════════════════════════════
       MOBILE TESTIMONIALS (AUTO-CAROUSEL)
       ═══════════════════════════════ */
    .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;
    }
}


