@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:wght@700;900&display=swap');

:root {
    /* Spiritual Premium Palette */
    --saffron: #FF9933;
    --saffron-dark: #E67E22;
    --crimson: #D91656;
    --divine-blue: #1B3B6F;
    --midnight: #0A192F;
    --gold: #D4AF37;
    --gold-light: #F1D592;
    
    /* Neutrals */
    --light: #F8FAFC;
    --white: #FFFFFF;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-800: #1E293B;
    
    /* Effects */
    --glass: rgba(255, 255, 255, 0.1);
    --glass-dark: rgba(0, 0, 0, 0.2);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.15);
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--gray-800);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .premium-font {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* --- Premium Navigation --- */
.navbar {
    padding: 1.5rem 0;
    transition: var(--transition-fast);
    z-index: 1000;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white) !important;
    transition: var(--transition-fast);
}

.navbar.scrolled .navbar-brand {
    color: var(--divine-blue) !important;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: var(--transition-fast);
}

.navbar.scrolled .nav-link {
    color: var(--gray-800) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--saffron);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-cta {
    background: linear-gradient(135deg, var(--saffron), var(--crimson));
    color: var(--white) !important;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(217, 22, 86, 0.2);
    transition: var(--transition-fast);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(217, 22, 86, 0.3);
}

/* --- Hero Section with Video --- */
.hero-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s 0.3s forwards ease-out;
}

/* --- Statistics Section --- */
.stats-section {
    background: var(--white);
    padding: 5rem 0;
    margin-top: -80px;
    position: relative;
    z-index: 2;
    border-radius: 40px 40px 0 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--divine-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--crimson);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* --- Premium Package Cards --- */
.section-title {
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--divine-blue);
    margin-bottom: 1rem;
}

.section-title .divider {
    width: 80px;
    height: 4px;
    background: var(--saffron);
    margin: 0 auto;
}

.premium-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    border: none;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-slow);
    height: 100%;
}

.premium-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.card-img-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.premium-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--saffron);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
}

.card-price {
    color: var(--crimson);
    font-size: 1.5rem;
    font-weight: 700;
}

/* --- Why Choose Us --- */
.why-section {
    padding: 8rem 0;
    background: var(--gray-100);
}

.feature-box {
    padding: 3rem;
    background: var(--white);
    border-radius: 30px;
    transition: var(--transition-fast);
}

.feature-box i {
    font-size: 3rem;
    color: var(--saffron);
    margin-bottom: 2rem;
}

.feature-box:hover {
    background: var(--divine-blue);
    color: var(--white);
}

.feature-box:hover i {
    color: var(--gold);
}

/* --- Utilities --- */
.bg-midnight { background: var(--midnight); }
.bg-saffron { background: var(--saffron); }
.bg-crimson { background: var(--crimson); }
.text-divine-blue { color: var(--divine-blue); }

/* --- Animations --- */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .navbar {
        background: var(--white) !important;
        padding: 1rem 0;
    }
    .navbar-brand, .nav-link {
        color: var(--divine-blue) !important;
    }
    .nav-link {
        padding: 0.8rem 1rem;
        margin: 0;
        border-bottom: 1px solid var(--gray-100);
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-wrapper {
        height: auto;
        padding: 10rem 0 6rem;
    }
    .stats-section {
        margin-top: 0;
        border-radius: 0;
    }
}
