:root {
    --bg-dark: #0a0a0c;
    --bg-lighter: #16161a;
    --primary-color: #d4af37; /* Gold/Champagne */
    --primary-hover: #b5952f;
    --text-light: #ffffff;
    --text-muted: #9ba0a6;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
    color: var(--text-light);
    background-color: var(--bg-dark);
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
}
.highlight {
    color: var(--primary-color);
}
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}
p {
    line-height: 1.6;
    color: var(--text-muted);
}
.text-center { text-align: center; }
.text-sm { font-size: 0.9rem; }
.mt-2 { margin-top: 1rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background-color: var(--primary-color);
    color: #000;
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}
.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
}
.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    padding: 15px 5%;
    background: rgba(10, 10, 12, 0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-color);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}
.nav-links li a {
    font-weight: 400;
    transition: color 0.3s ease;
}
.nav-links li a:hover {
    color: var(--primary-color);
}
.nav-dropdown {
    position: relative;
    cursor: pointer;
}
/* Invisible bridge to prevent hover loss */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
}
.nav-dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 15, 18, 0.98); /* Solid dark premium bg */
    min-width: 250px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    z-index: 1000;
    border: 1px solid rgba(212, 175, 55, 0.3); /* Subtle gold border */
    padding: 10px 0;
}
.nav-dropdown:hover .nav-dropdown-content,
.nav-dropdown.open .nav-dropdown-content {
    display: block;
}
.nav-dropdown-content a {
    color: #fff !important;
    padding: 14px 25px;
    text-decoration: none;
    display: block !important;
    text-align: left;
    font-size: 1.05rem;
    transition: background 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}
.nav-dropdown-content a:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-color) !important;
}
.burger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../assets/hero_bg.png');
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,12,0.2) 0%, rgba(10,10,12,0.85) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}
.badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #e0e0e0;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Sections Base */
.section {
    padding: 100px 0;
}
.dark-section {
    background-color: var(--bg-lighter);
}

/* Cards (Services & Glassmorphism) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}
.glass:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}
.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.glass h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

/* Testimonials */
.testimonial-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonial-card p {
    font-style: italic;
    margin: 20px 0;
    font-size: 1.05rem;
}
.stars {
    color: var(--primary-color);
    font-size: 1.2rem;
    letter-spacing: 2px;
}
.client-name {
    color: #fff;
    font-weight: 600;
    margin-top: auto;
}

/* Destinations Marquee */
.destinations {
    overflow: hidden;
}
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}
.marquee {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-light);
}
.marquee span {
    margin: 0 30px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}
.marquee span:hover {
    color: var(--primary-color);
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Engagements */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}
.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}
.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background: var(--primary-color);
    color: #000;
}
.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(212, 175, 55, 0.1) 100%);
}
.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: #050506;
    padding: 60px 0 20px;
    border-top: 1px solid #1a1a20;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.footer-links h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a:hover {
    color: var(--primary-color);
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1a1a20;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        background-position: center 30%;
    }
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(10,10,12,0.0) 0%, rgba(10,10,12,0.5) 100%);
    }
    .hero h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 12, 0.95);
        width: 100%;
        text-align: center;
        padding: 40px 0;
        transition: right 0.3s ease;
    }
    .nav-links.active { right: 0; }
    .nav-dropdown-content {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-top: 15px;
    }
    .nav-dropdown-content a {
        text-align: center;
        padding: 10px 20px;
        font-size: 1.1rem;
    }
    .nav-dropdown::after { display: none; }

    .burger { display: block; }
    .nav-btn { display: none; }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2000;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(10, 10, 12, 0.95);
    border-color: var(--primary-color);
}
.cookie-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 0.95rem;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
}
.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
}
.lang-dropdown {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}
.lang-dropbtn {
    background: transparent;
    color: #fff;
    border: 1px solid var(--primary-color);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}
.lang-dropbtn i {
    font-size: 1.2rem;
}
.lang-dropbtn:hover {
    background: rgba(212, 175, 55, 0.1);
}
.lang-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 10px;
    background-color: #fff;
    min-width: 150px;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    overflow: hidden;
}
.lang-dropdown-content a {
    color: #2c2520;
    padding: 12px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}
.lang-dropdown-content a .lang-code {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6a5e55;
    width: 35px;
    text-align: left;
}
.lang-dropdown-content a:hover {
    background-color: #f5f2f0;
}
.lang-dropdown-content a.active {
    background-color: #43362a;
    color: #fff;
}
.lang-dropdown-content a.active .lang-code {
    color: #a89a8e;
}
.lang-dropdown.open .lang-dropdown-content {
    display: block;
}

@media (max-width: 768px) {
    .lang-dropdown {
        margin: 20px auto;
    }
    .lang-dropdown-content {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* FAQ Section */
.faq { padding: 80px 0; }
.faq-item { background: var(--glass-bg); padding: 25px; border-radius: 12px; margin-bottom: 20px; border: 1px solid var(--glass-border); text-align: left; }
.faq-item h4 { color: var(--primary-color); font-size: 1.2rem; margin-bottom: 15px; }
.faq-item p { margin-bottom: 0; }
