:root {
    --primary-navy: #061b3d;
    --gold: #c9962d;
    --light-gold: #f6e8c8;
    --text-dark: #111827;
    --muted-text: #6b7280;
    --sbh-purple-1: #6d28d9;
    --sbh-purple-2: #9333ea;
    --sbh-purple-3: #7c3aed;
    --sbh-purple-soft: #f5edff;
    --sbh-gold: #d4a63d;
    --sbh-gold-soft: #fff7df;
    --sbh-text: #1f2937;
}

body {
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    color: var(--sbh-text);
    background: #f9f7ff;
}

.top-bar {
    background: #071633;
    color: #ffffff;
    font-size: 13px;
    padding: 5px 0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.contact-info {
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.15px;
    font-size: 12.5px;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-right: 10px;
    margin-right: 10px;
    position: relative;
}

.contact-info a svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    opacity: 0.95;
    flex-shrink: 0;
}

.contact-info a::after {
    content: "|";
    position: absolute;
    right: -2px;
    color: rgba(255, 255, 255, 0.85);
}

.contact-info a:last-child {
    margin-right: 0;
    padding-right: 0;
}

.contact-info a:last-child::after {
    content: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.whatsapp-btn {
    background: #25d366;
    color: #ffffff;
    border-radius: 25px;
    padding: 6px 13px;
    font-weight: 700;
    text-decoration: none;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.28);
}

.whatsapp-btn:hover {
    background: #1fb85a;
    color: #ffffff;
    text-decoration: none;
}

.main-header {
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(6, 27, 61, 0.08);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 16px;
}

.brand-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo {
    width: 200px;
    height: auto;
    display: block;
    object-fit: contain;
}

.brand-text {
    line-height: 1;
}

.brand-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: var(--primary-navy);
    line-height: 1;
}

.brand-subtitle {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.8px;
    color: var(--gold);
    margin-top: 3px;
}

.brand-location {
    font-size: 10px;
    letter-spacing: 1.8px;
    color: var(--primary-navy);
    margin-top: 3px;
}

.header-menu-toggle {
    display: none;
    border: 1px solid #d9dde6;
    background: #ffffff;
    border-radius: 10px;
    padding: 8px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.header-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #071633;
    border-radius: 2px;
}

.nav-collapse {
    display: block;
}

@media (min-width: 769px) {
    .header-menu-toggle {
        display: none !important;
    }

    .nav-collapse.collapse {
        display: block !important;
    }
}

.main-header .navbar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-header .nav-link {
    color: var(--primary-navy);
    font-weight: 600;
    text-decoration: none;
    padding: 8px 13px;
    border-radius: 24px;
    transition: all 0.25s ease;
    position: relative;
}

.main-header .nav-link:hover {
    color: var(--gold);
    text-decoration: none;
}

.main-header .nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.main-header .nav-link:hover::after {
    transform: scaleX(1);
}

.main-header .nav-link.active {
    background: var(--gold);
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(201, 150, 45, 0.18);
    text-decoration: none;
}

.main-header .nav-link.active::after {
    display: none;
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .contact-info {
        justify-content: center;
        gap: 6px 10px;
    }

    .contact-info a {
        margin-right: 0;
        padding-right: 0;
    }

    .contact-info a::after {
        content: none;
    }

    .nav-wrapper {
        gap: 10px;
        padding: 10px 0;
        min-height: auto;
        flex-wrap: wrap;
    }

    .brand-wrap {
        justify-content: flex-start;
        flex: 1 1 auto;
        min-width: 0;
    }

    .brand-logo {
        height: 56px;
        width: auto;
    }

    .brand-title {
        font-size: 20px;
    }

    .brand-subtitle {
        font-size: 10px;
    }

    .brand-location {
        font-size: 9px;
    }

    .header-menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .nav-collapse {
        width: 100%;
    }

    .nav-collapse:not(.show) {
        display: none;
    }

    .nav-collapse.show {
        display: block;
    }

    .main-header .navbar {
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 6px;
        padding-top: 4px;
        border-top: 1px solid #e9edf3;
    }

    .main-header .nav-link {
        padding: 8px 14px;
        font-size: 14px;
    }
}

.hero-modern {
    background: linear-gradient(120deg, rgba(109, 40, 217, 0.82), rgba(147, 51, 234, 0.72));
    color: #fff;
    border-radius: 20px;
    padding: 84px 48px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero-modern::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.hero-modern::after {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -140px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.hero-modern > * {
    position: relative;
    z-index: 2;
}

.hero-sub-card {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 14px;
    padding: 20px;
    backdrop-filter: blur(2px);
}

.hero-sub-card ul {
    margin: 0;
    padding-left: 16px;
}

.stat-card,
.soft-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.stat-card {
    padding: 18px;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
    border-top: 3px solid var(--sbh-gold);
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.soft-card {
    padding: 24px;
}

.section-title {
    font-weight: 800;
    color: #2e1065;
    position: relative;
    padding-bottom: 8px;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 68px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sbh-gold), #f3d083);
}

.gallery-tile {
    border-radius: 12px;
    width: 100%;
    height: 260px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(2, 6, 23, 0.12);
    transition: transform .2s ease, box-shadow .2s ease;
}

.gallery-link {
    display: block;
}

.gallery-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(76, 29, 149, 0.18);
}

.gallery-logo-tile {
    object-fit: contain;
    background: #fff;
    padding: 16px;
}

.highlight-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(2, 6, 23, 0.08);
    overflow: hidden;
}

.highlight-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.highlight-card .info {
    padding: 14px 16px;
}

.event-pill {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 14px 12px;
    text-align: center;
    font-weight: 600;
    background: #fff;
}

.event-grid .col-6:nth-child(1) .event-pill { background: #fff1f2; border-color: #fecdd3; color: #9f1239; }
.event-grid .col-6:nth-child(2) .event-pill { background: #eff6ff; border-color: #bfdbfe; color: #1d4ed8; }
.event-grid .col-6:nth-child(3) .event-pill { background: #ecfeff; border-color: #a5f3fc; color: #0e7490; }
.event-grid .col-6:nth-child(4) .event-pill { background: #fef3c7; border-color: #fde68a; color: #92400e; }
.event-grid .col-6:nth-child(5) .event-pill { background: #f3e8ff; border-color: #e9d5ff; color: #7e22ce; }
.event-grid .col-6:nth-child(6) .event-pill { background: #ecfdf5; border-color: #bbf7d0; color: #166534; }

.footer-modern {
    background: linear-gradient(120deg, #5b21b6, #7e22ce);
    color: #f5f3ff;
    padding: 46px 0;
}

.footer-modern a {
    color: #f5f3ff;
    text-decoration: none;
}

.footer-modern h5,
.footer-modern h6 {
    color: #ffe6a8;
}

.page-head {
    background: linear-gradient(120deg, #5b21b6, #7e22ce);
    color: #fff;
    border-radius: 16px;
    padding: 40px 28px;
    margin-bottom: 26px;
}

.content-stack > * + * {
    margin-top: 18px;
}

.feature-grid-card {
    height: 100%;
}

.facility-card {
    position: relative;
    border: 1px solid #ead9ff;
}

.facility-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #5b21b6;
    background: linear-gradient(135deg, var(--sbh-gold-soft), #fff);
    border: 1px solid #efd18b;
    margin-bottom: 10px;
}

.contact-info-card p {
    margin-bottom: 8px;
}

.map-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.location-share-card {
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    padding: 20px;
}

.location-qr-img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.section-gap {
    margin-top: 22px;
}

.cta-banner {
    background: linear-gradient(120deg, var(--sbh-purple-1), var(--sbh-purple-2));
    color: #fff;
    border-radius: 16px;
    padding: 28px;
}

.btn-dark {
    background: linear-gradient(90deg, var(--sbh-purple-3), var(--sbh-purple-2));
    border-color: var(--sbh-purple-3);
}

.btn-dark:hover,
.btn-dark:focus {
    background: linear-gradient(90deg, #6b21a8, var(--sbh-purple-3));
    border-color: #6b21a8;
}

.btn-outline-dark {
    color: var(--sbh-purple-1);
    border-color: #a78bfa;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
    color: #fff;
    background: linear-gradient(90deg, var(--sbh-purple-3), var(--sbh-purple-2));
    border-color: var(--sbh-purple-3);
}

.btn-warning {
    color: #5b3400;
    background: linear-gradient(90deg, #f4cd70, #d9a631);
    border-color: #d19a22;
}

.btn-warning:hover,
.btn-warning:focus {
    color: #4c2b00;
    background: linear-gradient(90deg, #eabf5f, #cc941e);
    border-color: #b77f0f;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 221, 153, 0.7);
    color: #fff7df;
    margin-bottom: 14px;
}

.mobile-sticky-enquiry {
    position: fixed;
    bottom: 14px;
    left: 12px;
    right: 12px;
    z-index: 1040;
    display: none;
}

.mobile-sticky-enquiry .btn {
    width: 100%;
    font-weight: 700;
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.26);
}

@media (max-width: 991.98px) {
    .topbar {
        font-size: 13px;
    }

    .hero-modern {
        padding: 40px 24px;
        border-radius: 16px;
    }

    .shantai-nav .nav-link {
        margin-left: 0;
        margin-top: 8px;
    }
}

@media (max-width: 767.98px) {
    .topbar .container {
        gap: 6px;
        justify-content: center !important;
        text-align: center;
    }

    .topbar a {
        margin-right: 8px;
        font-size: 12px;
    }

    .whatsapp-cta {
        margin-top: 6px;
        font-size: 12px !important;
        padding: 6px 10px;
    }

    .contact-info-card .btn,
    .location-share-card .btn {
        width: 100%;
    }

    .hero-modern h1 {
        font-size: 1.65rem;
        line-height: 1.2;
    }

    .hero-modern .lead {
        font-size: 1rem;
        margin-bottom: 1rem !important;
    }

    .stat-card {
        padding: 14px;
    }

    .soft-card {
        padding: 18px;
    }

    .gallery-tile {
        height: 210px;
    }

    .highlight-card img {
        height: 210px;
    }

    .cta-banner {
        padding: 20px;
    }

    .page-head {
        padding: 28px 18px;
        border-radius: 12px;
        margin-bottom: 18px;
    }

    .page-head h1 {
        font-size: 1.55rem;
        margin-bottom: 6px;
    }

    .page-head p {
        font-size: .95rem;
    }

    .section-gap {
        margin-top: 14px;
    }

    .location-qr-img {
        width: 170px;
        height: 170px;
    }

    .mobile-sticky-enquiry {
        display: block;
    }
}

@media (max-width: 420px) {
    .hero-modern {
        padding: 28px 16px;
    }

    .hero-modern h1 {
        font-size: 1.45rem;
    }

    .topbar a {
        font-size: 11px;
    }

    .topbar {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
