/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Refined Gold Palette - More sophisticated and muted */
    --gold: #C9A961;
    --gold-light: #D4B87A;
    --gold-dark: #A6894A;
    --gold-accent: #E8D5A3;
    --gold-glow: rgba(201, 169, 97, 0.15);
    
    /* Refined Green Palette - More natural and professional */
    --green: #5CB88A;
    --green-light: #7BC9A5;
    --green-dark: #4A9670;
    --green-natural: #3D7A5F;
    --green-forest: #2D5A45;
    --green-glow: rgba(92, 184, 138, 0.15);
    
    /* Professional Black/Gray Palette */
    --black: #0A0A0A;
    --black-light: #141414;
    --black-lighter: #1E1E1E;
    --black-section: #121212;
    
    /* Text Colors */
    --text-dark: #1f2937;
    --text-light: #A8A8A8;
    --text-lighter: #C8C8C8;
    --text-gold: #C9A961;
    --text-green: #5CB88A;
    
    /* Background Colors */
    --bg-light: #0F0F0F;
    --bg-white: #ffffff;
    --bg-section: #121212;
    --border-color: #252525;
    
    /* Professional Gradients */
    --gradient-1: linear-gradient(135deg, #C9A961 0%, #A6894A 100%);
    --gradient-2: linear-gradient(135deg, #D4B87A 0%, #C9A961 100%);
    --gradient-3: linear-gradient(135deg, #C9A961 0%, #E8D5A3 100%);
    --gradient-gold-green: linear-gradient(135deg, #C9A961 0%, #5CB88A 100%);
    --gradient-green: linear-gradient(135deg, #5CB88A 0%, #4A9670 100%);
    --gradient-gold-black: linear-gradient(135deg, #0A0A0A 0%, #1E1E1E 50%, #0A0A0A 100%);
    
    /* Refined Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.7);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.8);
    --shadow-gold: 0 0 20px rgba(201, 169, 97, 0.12);
    --shadow-green: 0 0 20px rgba(92, 184, 138, 0.12);
    --shadow-professional: 0 4px 24px rgba(0, 0, 0, 0.9), 0 0 1px rgba(255, 255, 255, 0.03);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-lighter);
    background-color: var(--black);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-professional);
    border-bottom: 1px solid rgba(201, 169, 97, 0.12);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: rgba(201, 169, 97, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 40px;
    transition: padding 0.3s ease;
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 1rem 20px;
    }
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
}

.logo-nav {
    width: 40px;
    height: 40px;
    display: block;
    object-fit: contain;
}

.brand-text {
    font-family: 'Georgia', serif;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.burger-line {
    width: 25px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-lighter);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold-green);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-menu a.btn-nav {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.nav-menu a.btn-nav::after {
    display: none;
}

.nav-menu a:hover {
    color: var(--green);
}

.btn-nav {
    background: var(--gradient-gold-green) !important;
    color: var(--black) !important;
    padding: 0.625rem 1.75rem !important;
    border-radius: 50px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    box-shadow: var(--shadow-gold), var(--shadow-green), var(--shadow-md) !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    border: none !important;
    display: inline-block !important;
    position: relative !important;
}

.btn-nav::after {
    display: none !important;
}

.btn-nav:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-gold), var(--shadow-green), var(--shadow-lg) !important;
    background: var(--gradient-green) !important;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--gold);
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(92,184,138,0.06) 0%, rgba(201,169,97,0.04) 30%, rgba(0,0,0,0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.logo-hero {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(201, 169, 97, 0.3));
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    line-height: 1.15;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(201, 169, 97, 0.25);
    font-family: 'Playfair Display', 'Georgia', serif;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
    color: var(--gold-accent);
    font-style: italic;
    font-weight: 400;
    font-family: 'Playfair Display', 'Georgia', serif;
    letter-spacing: 0.02em;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    line-height: 1.75;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    background: var(--gradient-gold-green);
    color: var(--black);
    padding: 1.125rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-gold), var(--shadow-green), var(--shadow-lg);
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold), var(--shadow-green), var(--shadow-xl);
    background: var(--gradient-green);
}

/* Section Styles */
.section {
    padding: 6rem 0;
    position: relative;
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    background: var(--gradient-gold-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', 'Georgia', serif;
    position: relative;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold-green);
    border-radius: 2px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.25rem;
    }
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--green-light);
    opacity: 0.9;
}

/* Introduction Section */
.intro-section {
    background: var(--bg-section);
    position: relative;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(92, 184, 138, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.content-grid {
    max-width: 900px;
    margin: 0 auto;
}

.content-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-lighter);
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.content-text p {
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.375rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--gold-accent);
    line-height: 1.75;
    font-family: 'Playfair Display', 'Georgia', serif;
    letter-spacing: 0.01em;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
    padding-left: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
    font-size: 1.3rem;
    text-shadow: 0 0 8px rgba(92, 184, 138, 0.3);
}

.feature-list li {
    color: var(--text-lighter);
}

/* How It Works Section */
.how-it-works-section {
    background: var(--black);
    position: relative;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 30%, rgba(92, 184, 138, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.info-card {
    background: var(--bg-section);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-professional);
    border: 1px solid rgba(201, 169, 97, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold-green);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold), var(--shadow-green), var(--shadow-xl);
    border-color: var(--green);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(92, 184, 138, 0.25));
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--gold);
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 1rem;
    font-weight: 300;
}

.highlight-box {
    background: var(--gradient-gold-green);
    color: var(--black);
    padding: 3.5rem 3rem;
    border-radius: 20px;
    margin-top: 4rem;
    text-align: center;
    box-shadow: var(--shadow-professional), var(--shadow-gold), var(--shadow-green);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(92, 184, 138, 0.08) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.highlight-text {
    font-size: 1.25rem;
    line-height: 1.75;
    font-weight: 500;
    font-family: 'Playfair Display', 'Georgia', serif;
    position: relative;
    z-index: 1;
}

/* Benefits Section */
.benefits-section {
    background: var(--bg-section);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(92, 184, 138, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.benefit-item {
    background: var(--black-section);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(201, 169, 97, 0.12);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-professional);
}

.benefit-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold-green);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-item:hover::after {
    transform: scaleX(1);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-green), var(--shadow-lg);
    border-color: var(--green);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 8px rgba(92, 184, 138, 0.3));
    transition: filter 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    filter: drop-shadow(0 0 12px rgba(92, 184, 138, 0.4));
}

.benefit-item h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--gold);
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 300;
}

/* FAQ Section */
.faq-section {
    background: var(--black);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(92, 184, 138, 0.015) 0%, transparent 50%);
    pointer-events: none;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--bg-section);
    border-radius: 12px;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-professional);
    border: 1px solid rgba(201, 169, 97, 0.08);
    border-left: 3px solid transparent;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 169, 97, 0.2);
    border-left-color: var(--green);
}

.faq-item.active {
    border-left-color: var(--green);
}

.faq-question {
    padding: 1.75rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--black-light);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gold);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    line-height: 1.5;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    color: var(--green);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.faq-answer ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Booking Section */
.booking-section {
    background: var(--black);
    color: var(--gold);
}

.booking-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-section);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 4rem 3rem;
    box-shadow: var(--shadow-professional), var(--shadow-gold), var(--shadow-green);
    border: 1px solid rgba(201, 169, 97, 0.15);
}

.booking-logo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.logo-booking {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(201, 169, 97, 0.3));
}

.booking-content {
    text-align: center;
}

.booking-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    color: var(--gold);
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.booking-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.booking-info {
    margin: 2rem 0;
}

.booking-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08) 0%, rgba(92, 184, 138, 0.08) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    position: relative;
    overflow: hidden;
}

.booking-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(92, 184, 138, 0.15), transparent);
    transition: left 0.5s ease;
}

.booking-phone:hover::before {
    left: 100%;
}

.phone-icon {
    font-size: 3rem;
}

.booking-label {
    font-size: 0.9rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.booking-number {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
}

.booking-note {
    margin-top: 1.5rem;
    color: var(--text-light);
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--gold);
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(201, 169, 97, 0.15);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.logo-footer {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Georgia', serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .navbar .container {
        position: relative;
    }

    .nav-brand {
        font-size: 1rem;
    }

    .brand-text {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .logo-nav {
        width: 30px;
        height: 30px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem 1rem;
        box-shadow: var(--shadow-xl);
        border-top: 1px solid rgba(201, 169, 97, 0.2);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(201, 169, 97, 0.08);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 1rem;
        width: 100%;
        font-size: 1.1rem;
    }

    .nav-menu .btn-nav {
        margin-top: 0.5rem;
        display: inline-block;
        width: auto;
        padding: 0.75rem 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .info-cards,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .booking-card {
        padding: 2rem 1.5rem;
    }

    .booking-content h2 {
        font-size: 2rem;
    }

    .booking-phone {
        flex-direction: column;
        text-align: center;
    }

    .booking-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
}
