:root {
    --brand-primary: #1e40af;
    --brand-accent: #3b82f6;
    --brand-dark: #0f172a;
    --brand-soft: #f0f7ff;
    --glass: rgba(255, 255, 255, 0.7);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f8fafc;
    color: var(--brand-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.bg-soft { background: #f0f7ff; }

.bg-gradient-night {
    background: radial-gradient(circle at 20% 20%, rgba(59,130,246,0.12), transparent 35%),
                radial-gradient(circle at 80% 0%, rgba(30,64,175,0.12), transparent 30%),
                linear-gradient(120deg, #0f172a, #1e3a8a);
}

.object-fit-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
    object-position: center;
}

.stat-number {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}

.stat-number span { font-size: 0.65em; }

/* FAQ styling */
.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.faq-accordion .accordion-button {
    padding: 18px 20px;
    font-weight: 700;
    gap: 12px;
    background: #ffffff;
}

.faq-accordion .accordion-button:focus { box-shadow: none; }

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--brand-primary);
    background: #eef4ff;
}

.faq-accordion .faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e2e8f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-accordion .accordion-button:not(.collapsed) .faq-icon {
    background: #1e40af;
    color: white;
    transform: rotate(45deg);
}

.faq-accordion .accordion-body {
    background: #fff;
    color: #475569;
}

h1, h2, h3, .font-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* --- MODERN PILL HEADER --- */
.header-container {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 95%;
    max-width: 1100px;
}

.nav-pill {
    background: var(--glass);
    backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--brand-dark);
    padding-left: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 14px;
    align-items: center;
}

.nav-links li { list-style: none; }

.nav-links a {
    text-decoration: none;
    color: #1f2937;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 16px;
    border-radius: 50px;
    transition: var(--transition);
    display: block;
}

.nav-links a:hover {
    color: var(--brand-primary);
    background: rgba(30, 64, 175, 0.08);
}

.btn-reserve {
    background: var(--brand-dark);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-reserve:hover {
    background: var(--brand-primary);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.2);
    color: white;
    text-decoration: none;
}

/* --- HERO: THE MASTERPIECE --- */
.hero-v2 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background: 
        radial-gradient(circle at 10% 10%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(30, 64, 175, 0.05) 0%, transparent 50%);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1;
    margin-bottom: 30px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    max-width: 34rem;
}

.hero-actions .btn {
    border-radius: 14px;
    padding: 12px 18px;
    font-weight: 700;
    line-height: 1.1;
}

.experience-card {
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    bottom: 40px;
    left: -30px;
    width: 280px;
    border: 1px solid #f1f5f9;
}

/* --- BENTO GRID SERVICES --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.bento-item {
    background: white;
    border-radius: 32px;
    padding: 32px;
    border: 1px solid #f1f5f9;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bento-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    border-color: var(--brand-accent);
}

.bento-item h4 { font-weight: 700; margin-top: 12px; }

.bento-primary { grid-column: span 8; background: var(--brand-dark); color: white; }
.bento-secondary { grid-column: span 4; }
.bento-tertiary { grid-column: span 4; }
.bento-quad { grid-column: span 8; background: #e0f2fe; }

/* --- ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .bento-primary, .bento-secondary, .bento-tertiary, .bento-quad { grid-column: span 12; }
    .nav-links { display: none; }
    .nav-pill { padding: 10px 14px; }
}

@media (max-width: 767px) {
    .hero-subtext { max-width: 100%; }

    .hero-actions {
        gap: 10px;
        flex-wrap: wrap;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        border-radius: 12px;
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .experience-card {
        position: absolute;
        left: 12px;
        right: auto;
        bottom: 16px;
        margin-top: 0;
        width: 210px;
    }
}
