:root {
    --emerald-dark: #023430;
    --champagne-gold: #C5A059;
    --soft-ivory: #FAF9F6;
    --m3-card-bg: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--soft-ivory);
    color: var(--emerald-dark);
    overflow-x: hidden;
}

h1, h2, h3, .brand-font {
    font-family: 'Playfair Display', serif;
}

/* --- PREMIUM HEADER --- */
.navbar {
    background: rgba(250, 249, 246, 0.9) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.navbar-brand {
    font-weight: 800;
    color: var(--emerald-dark) !important;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- MODERN HERO --- */
.hero-section {
    padding-top: 120px;
    min-height: 95vh;
    display: flex;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text h1 span {
    color: var(--champagne-gold);
    font-style: italic;
}

.hero-img-box {
    position: relative;
}

.hero-img-box img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 400px 400px 30px 30px;
    border: 1px solid var(--champagne-gold);
    padding: 10px;
}

/* --- MATERIAL CARDS --- */
.m3-card {
    border: none;
    border-radius: 35px;
    background: #ffffff;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 40px rgba(2, 52, 48, 0.05);
}

.m3-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(2, 52, 48, 0.12);
}

.icon-circle {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    border-radius: 50% !important;
    background-color: #f1efea;
    color: var(--champagne-gold);
}

/* --- PLANS --- */
.package-featured {
    background: var(--emerald-dark) !important;
    color: white !important;
}

.package-featured .text-muted {
    color: #a7b7b5 !important;
}

.badge-gold {
    background: var(--champagne-gold);
    color: white;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    padding: 8px 16px;
}

/* --- FOOTER --- */
footer {
    background: var(--emerald-dark);
    color: white;
    padding: 80px 0 30px 0;
    border-radius: 50px 50px 0 0;
}

.footer-brand {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--champagne-gold);
}

/* --- OPTIMIZED MOBILE BOTTOM NAV --- */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    z-index: 2000;
    backdrop-filter: blur(10px);
    border-radius: 25px 25px 0 0; /* Keeps it rounded on mobile */
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
}

.bottom-nav a {
    text-decoration: none;
    color: #444;
    font-size: 0.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    transition: 0.3s;
}

.bottom-nav i {
    font-size: 1.4rem;
    margin-bottom: 2px;
    color: var(--emerald-dark);
    display: block;
}

.bottom-nav a:active, .bottom-nav a:focus {
    color: var(--champagne-gold);
}

/* --- BUTTONS --- */
.btn-premium {
    background: var(--champagne-gold);
    color: white;
    border-radius: 100px;
    padding: 18px 40px;
    font-weight: 700;
    border: none;
    transition: 0.3s;
}

.btn-premium:hover {
    background: #b18d4a;
    transform: scale(1.05);
    color: white;
}

/* --- REVEAL ANIMATION --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s all ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding-top: 100px;
    }

    .hero-img-box img {
        height: 450px;
        margin-top: 50px;
    }

    body {
        padding-bottom: 50px; /* Space for bottom nav */
    }
}