@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --bg-main: #020612;
    --bg-secondary: #0a1631;
    --primary-gold: #d4af37;
    --primary-gold-light: #f3d573;
    --accent-blue: #2d5bff;
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --glass-bg: rgba(10, 22, 49, 0.45);
    --glass-border: rgba(255, 255, 255, 0.05);
    --gold-glow: rgba(212, 175, 55, 0.15);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Luxury Background Glow */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.05) 0%, rgba(45, 91, 255, 0.03) 30%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.header {
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(2, 6, 18, 0.9) 0%, transparent 100%);
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-decoration: none;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.header-nav a.nav-link {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.header-nav a.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

.header-nav a.nav-link:hover {
    color: #ffffff;
}

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

.btn-demo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #020612;
    background: linear-gradient(135deg, var(--primary-gold-light), var(--primary-gold));
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-demo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
}

.btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: #020612;
}

.btn-demo:hover::after {
    left: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100vw;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 6rem 5%;
    background-image: linear-gradient(to right, rgba(2, 6, 18, 1) 10%, rgba(2, 6, 18, 0.8) 40%, transparent 80%), url('/images/hero-bg.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    margin-top: 0;
    /* Reset since header is absolute */
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 10;
}

.content {
    flex: 1;
    padding: 10rem 5% 4rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3.5rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    max-width: 800px;
    width: 100%;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 35px 60px -15px rgba(0, 0, 0, 0.9);
    border-color: rgba(212, 175, 55, 0.2);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-primary);
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1 span.gold {
    background: linear-gradient(135deg, var(--primary-gold-light), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.2rem 3rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #020612;
    background: linear-gradient(135deg, var(--primary-gold-light), var(--primary-gold));
    border: none;
    border-radius: 4px;
    /* Flatter, elegant look */
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover::after {
    left: 200%;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.2rem 3rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Custom Success Color for Premium Theme */
.text-success {
    color: #4ade80 !important; /* Soft emerald green */
}
.border-success {
    border-color: #4ade80 !important;
}

/* Premium Form Elements */
.luxury-input {
    width: 100%;
    padding: 1.2rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.luxury-input:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 1px var(--gold-glow);
    background: rgba(0, 0, 0, 0.5);
}

.luxury-label {
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    display: block;
}

.footer {
    padding: 2rem 5%;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--primary-gold-light);
}

/* --- Mobile Responsive Adjustments --- */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .header {
        padding: 1.5rem 5%;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 1.5rem 5%;
        background: rgba(2, 6, 18, 0.98);
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    
    .header-nav.nav-open {
        display: flex;
    }
    
    .header-nav .btn-demo {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .hero-section {
        padding-top: 7rem;
        padding-bottom: 3rem;
        background-position: center;
        background-image: linear-gradient(to bottom, rgba(2, 6, 18, 1) 10%, rgba(2, 6, 18, 0.7) 100%), url('/images/hero-bg.png');
    }
    
    .content {
        padding-top: 7rem;
        padding-bottom: 2rem;
    }
    
    .glass-card {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        margin-bottom: 0.8rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content .d-flex {
        flex-direction: column;
    }
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 992px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid .glass-card {
        transform: none !important;
        z-index: 1 !important;
    }
}