@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700&family=Nunito:wght@400;600;700;800&display=swap');

:root {
    --primary: #0f62fe;
    --primary-dark: #0043ce;
    --accent: #ffb703;
    --mint: #7de2d1;
    --bg-soft: #f4f9ff;
    --text-dark: #14213d;
    --card-shadow: 0 14px 34px rgba(9, 37, 93, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Nunito", "Segoe UI", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #f8fbff;
    background-image:
        radial-gradient(circle at 12% 12%, rgba(125, 226, 209, 0.22) 0 120px, transparent 120px),
        radial-gradient(circle at 88% 5%, rgba(255, 183, 3, 0.18) 0 160px, transparent 160px),
        radial-gradient(circle at 50% 100%, rgba(15, 98, 254, 0.09) 0 220px, transparent 220px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Baloo 2", "Nunito", sans-serif;
    letter-spacing: 0.01em;
}

section {
    position: relative;
}

.hero-gradient {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(29, 78, 216, 0.92) 100%);
    overflow: hidden;
}

.hero-gradient::before,
.hero-gradient::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.hero-gradient::before {
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.12);
    top: -80px;
    right: -90px;
}

.hero-gradient::after {
    width: 220px;
    height: 220px;
    background: rgba(255, 183, 3, 0.28);
    bottom: -70px;
    left: -70px;
}

.hero-gradient .container {
    position: relative;
    z-index: 1;
}

.bg-soft {
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
}

.navbar {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(15, 98, 254, 0.08);
}

.navbar .nav-link {
    color: #64748b !important;
    border-radius: 999px;
    position: relative;
    transition: color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.navbar .nav-link:hover {
    color: var(--primary) !important;
    background-color: rgba(37, 99, 235, 0.09);
    transform: translateY(-1px);
}

.navbar .nav-link.active {
    color: var(--primary-dark) !important;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.14) 0%, rgba(125, 226, 209, 0.2) 100%);
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.22);
    transform: translateY(-1px);
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.btn-primary {
    background-color: var(--primary);
    border: none;
    border-radius: 999px;
    padding: 0.65rem 1.35rem;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(15, 98, 254, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-light {
    border-radius: 999px;
    font-weight: 800;
    color: #0b4bba;
}

.cover-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #ffffff;
    border-radius: 14px;
    box-shadow: var(--card-shadow);
}

.hero-img-wrap {
    height: 420px;
    background-color: #ffffff;
    border-radius: 14px;
    padding: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 46px rgba(6, 31, 81, 0.35);
}

.card,
.feature-card {
    border-radius: 14px;
    border: 0;
    box-shadow: var(--card-shadow);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.card:hover,
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(9, 37, 93, 0.17);
}

.feature-card {
    padding: 1.25rem;
    background: linear-gradient(170deg, #ffffff 0%, #f4f8ff 100%);
    height: 100%;
    border: 1px solid rgba(15, 98, 254, 0.1);
}

.thumb-square {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(15, 98, 254, 0.1);
    box-shadow: 0 10px 22px rgba(9, 37, 93, 0.12);
}

.gallery-thumb {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 30%;
    background-color: #dbeafe;
}

.thumb-rect {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(15, 98, 254, 0.1);
    box-shadow: 0 10px 22px rgba(9, 37, 93, 0.12);
}

.menu-chip {
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    background: linear-gradient(135deg, #d6ecff 0%, #e8f6ff 100%);
    color: #0b4bba;
    display: inline-block;
    margin: 0.25rem 0.25rem 0 0;
    font-size: 0.92rem;
    font-weight: 700;
    border: 1px solid rgba(15, 98, 254, 0.16);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-kicker::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 183, 3, 0.2);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.15rem;
}

.hero-pill {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.34);
    color: #ffffff;
    padding: 0.38rem 0.8rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
}

.stats-strip {
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 14px 28px rgba(11, 35, 82, 0.15);
    border: 1px solid rgba(15, 98, 254, 0.12);
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.stat-label {
    color: #4b648d;
    font-size: 0.93rem;
    margin-top: 0.2rem;
}

.media-panel {
    background: linear-gradient(160deg, #ffffff 0%, #edf5ff 100%);
    border-radius: 18px;
    padding: 1rem;
    border: 1px solid rgba(15, 98, 254, 0.12);
    box-shadow: var(--card-shadow);
}

.media-panel video {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(15, 98, 254, 0.18);
}

.map-embed-wrap {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(15, 98, 254, 0.18);
    box-shadow: 0 10px 22px rgba(9, 37, 93, 0.12);
}

.map-embed {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
}

.video-panel {
    max-width: 640px;
    margin: 0 auto;
}

.video-panel video {
    width: auto;
    max-width: 100%;
    height: min(70vh, 520px);
    object-fit: contain;
    background: #000;
    display: block;
    margin: 0 auto;
}

.stagger-in {
    animation: fadeUp 0.7s ease both;
}

.stagger-in:nth-child(2) {
    animation-delay: 0.08s;
}

.stagger-in:nth-child(3) {
    animation-delay: 0.16s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-footer {
    background: linear-gradient(145deg, #061736 0%, #0f172a 60%, #152543 100%);
    color: #e2e8f0;
}

.site-footer a {
    color: #e2e8f0;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.3rem;
}

.site-footer .social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(148, 163, 184, 0.2);
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: #e2e8f0;
    font-size: 1.1rem;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.site-footer .social-icon:hover {
    text-decoration: none;
    background: #ffffff;
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-small {
    color: #94a3b8;
    font-size: 0.92rem;
}

@media (max-width: 991px) {
    .hero-img-wrap {
        height: 320px;
    }

    .stats-strip {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .display-3 {
        font-size: 2.35rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .map-embed {
        height: 300px;
    }
}