/* TaxiDurbuy - Palette Nature/Ardennes */
:root {
    --primary: #ffc32a;
    --primary-hover: #e6af26;
    --secondary: #1A1A1A;
    --nature: #8dae5b;
    --nature-dark: #6d9244;
    --nature-light: #f4f8ef;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    --transition: all 0.3s ease;
    --container-max: 1200px;
    --container-padding: 20px;
    --header-height: 70px;
    --header-height-mobile: 60px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { font-family: 'Poppins', sans-serif; font-size: 16px; line-height: 1.6; color: var(--secondary); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); }

/* Utility Classes */
.highlight { color: var(--nature); }
.section { padding: 80px 0; }
.section-gray { background: var(--gray-100); }
.section-dark { background: var(--secondary); color: var(--white); }
.section-dark .highlight { color: var(--primary); }
.section-nature { background: var(--nature-light); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 28px; font-size: 1rem; font-weight: 600; border-radius: var(--radius-full); cursor: pointer; transition: var(--transition); border: none; }
.btn-primary { background: var(--primary); color: var(--secondary); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-nature { background: var(--nature); color: var(--white); }
.btn-nature:hover { background: var(--nature-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; border: 2px solid var(--secondary); color: var(--secondary); }
.btn-outline:hover { background: var(--secondary); color: var(--white); }
.btn-lg { padding: 18px 35px; font-size: 1.1rem; }

/* Section Headers */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-badge { display: inline-block; padding: 8px 20px; background: var(--nature); color: var(--white); font-size: 0.875rem; font-weight: 600; border-radius: var(--radius-full); margin-bottom: 15px; }
.section-dark .section-badge { background: var(--primary); color: var(--secondary); }
.section-header h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 15px; line-height: 1.2; }
.section-header p { color: var(--gray-600); font-size: 1.1rem; }
.section-dark .section-header p { color: rgba(255,255,255,0.8); }

/* Header */
.header { position: relative; width: 100%; z-index: 1000; }
.header-top { background: var(--secondary); color: var(--white); padding: 8px 0; font-size: 0.875rem; }
.header-top-content { display: flex; justify-content: space-between; align-items: center; }
.header-info { display: flex; align-items: center; gap: 25px; }
.header-info span { display: flex; align-items: center; gap: 8px; }
.header-info i { color: var(--nature); }
.header-top-links { display: flex; gap: 20px; }
.header-top-links a:hover { color: var(--primary); }
.header-social { display: flex; gap: 15px; }
.header-social a { width: 32px; height: 32px; background: rgba(255,255,255,0.1); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; }
.header-social a:hover { background: var(--nature); }

/* Navbar */
.navbar { background: var(--white); box-shadow: var(--shadow-md); position: sticky; top: 0; z-index: 1000; }
.nav-content { display: flex; align-items: center; justify-content: space-between; height: var(--header-height); }
.logo img { height: 144px; width: auto; margin-bottom: -50px; margin-top: -24px; position: relative; z-index: 10; }
.nav-menu { display: flex; gap: 35px; }
.nav-link { font-weight: 500; color: var(--gray-700); position: relative; padding: 5px 0; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--nature); transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--nature); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 15px; }

/* Language Selector Desktop */
.language-selector { display: flex; gap: 5px; }
.lang-btn { padding: 6px 10px; font-size: 0.8rem; font-weight: 600; border-radius: var(--radius); color: var(--gray-600); background: var(--gray-100); }
.lang-btn:hover { background: var(--gray-200); }
.lang-btn.active { background: var(--nature); color: var(--white); }

/* Language Selector Mobile */
.language-selector-mobile { display: none; position: relative; }
.lang-toggle { display: flex; align-items: center; justify-content: center; gap: 4px; width: 48px; height: 40px; background: var(--nature); color: var(--white); border: none; border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 700; cursor: pointer; }
.lang-toggle i { font-size: 0.6rem; }
.lang-dropdown { position: absolute; top: calc(100% + 8px); right: 0; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: var(--transition); min-width: 50px; z-index: 100; }
.language-selector-mobile:hover .lang-dropdown,
.language-selector-mobile.active .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown a { display: block; padding: 10px 15px; font-size: 0.85rem; font-weight: 600; color: var(--gray-700); text-align: center; }
.lang-dropdown a:hover { background: var(--gray-100); }
.lang-dropdown a.active { background: var(--nature); color: var(--white); }

/* Phone & CTA Buttons */
.phone-btn { display: flex; align-items: center; gap: 8px; padding: 10px 15px; background: var(--gray-100); border-radius: var(--radius-full); font-weight: 600; color: var(--secondary); }
.phone-btn i { color: var(--nature); }
.phone-btn:hover { background: var(--gray-200); }
.cta-btn { padding: 12px 24px; background: var(--primary); color: var(--secondary); font-weight: 700; border-radius: var(--radius-full); }
.cta-btn:hover { background: var(--primary-hover); transform: translateY(-2px); }

/* WhatsApp Button Mobile */
.whatsapp-btn { display: none; width: 40px; height: 40px; background: #25D366; color: var(--white); border-radius: var(--radius-full); align-items: center; justify-content: center; font-size: 1.2rem; }
.whatsapp-btn:hover { background: #128C7E; transform: scale(1.05); }

/* Mobile Menu Toggle */
.menu-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; width: 40px; height: 40px; background: var(--primary); border: none; border-radius: var(--radius-full); cursor: pointer; gap: 5px; padding: 10px; }
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--secondary); border-radius: 2px; transition: var(--transition); }

/* Hero Form Wrapper */
.hero-form-wrapper {
    position: relative;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-form-clickable {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    cursor: pointer;
}

.hero-form-wrapper iframe {
    display: block;
    pointer-events: none;
}

/* Hero Form Header */
.hero-form-header {
    background: var(--primary);
    color: var(--secondary);
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hero-form-header:hover {
    background: var(--primary-hover);
}

.hero-form-header i {
    font-size: 1.2rem;
}

/* Hero Section */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-img-desktop { display: block; }
.hero-img-mobile { display: none; }
.hero-bg-mobile-tile { display: none; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.6) 50%, rgba(45,90,61,0.7) 100%); z-index: 1; }
.hero > .container { position: relative; z-index: 2; flex: 1; display: flex; align-items: center; justify-content: center; padding-top: 40px; padding-bottom: 120px; max-width: 100%; }
.hero-content { max-width: 900px; text-align: center; display: flex; flex-direction: column; align-items: center; padding: 0 20px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: var(--nature); color: var(--white); font-size: 0.9rem; font-weight: 600; border-radius: var(--radius-xl); margin-bottom: 25px; }
.hero h1 { color: var(--white); margin-bottom: 25px; font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.15; text-align: center; width: 100%; }
.hero h1 .highlight { color: var(--primary); }
.hero p { color: rgba(255,255,255,0.9); font-size: clamp(1rem, 2vw, 1.2rem); margin-bottom: 35px; max-width: 750px; width: 100%; margin-left: auto; margin-right: auto; line-height: 1.7; text-align: center; }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-buttons .btn { padding: 18px 35px; font-size: 1.1rem; min-width: 200px; text-align: center; }
.hero-buttons .btn-primary { background: var(--primary); color: var(--secondary); border: 2px solid var(--primary); font-weight: 700; }
.hero-buttons .btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.hero-buttons .btn-outline:hover { background: var(--white); color: var(--secondary); }

.hero-stats { position: absolute; bottom: 0; left: 0; right: 0; background: var(--nature); padding: 25px 0; z-index: 3; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.stat-item { display: flex; align-items: center; gap: 15px; justify-content: center; color: var(--white); }
.stat-item i { font-size: 2rem; opacity: 0.9; }
.stat-info { text-align: left; }
.stat-number { display: block; font-size: 1.5rem; font-weight: 700; line-height: 1.2; }
.stat-label { font-size: 0.875rem; opacity: 0.9; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl); padding: 40px 30px; text-align: center; position: relative; transition: var(--transition); }
.step-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }
.step-icon { width: 80px; height: 80px; background: var(--nature); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; font-size: 2rem; color: var(--white); }
.step-card h3 { color: var(--white); margin-bottom: 15px; font-size: 1.25rem; }
.step-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.step-number { position: absolute; top: 20px; right: 25px; font-size: 3rem; font-weight: 800; color: rgba(255,255,255,0.1); }

/* Testimonials */
.testimonials-widget { min-height: 200px; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); transition: var(--transition); position: relative; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.service-card.featured { border: 2px solid var(--nature); }
.service-badge { position: absolute; top: 20px; right: 20px; background: var(--nature); color: var(--white); padding: 6px 15px; border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 600; z-index: 2; }
.service-img { position: relative; height: 200px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-img img { transform: scale(1.1); }
.service-icon { position: absolute; bottom: -25px; left: 25px; width: 50px; height: 50px; background: var(--nature); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.25rem; box-shadow: var(--shadow-md); }
.service-content { padding: 40px 25px 25px; }
.service-content h3 { margin-bottom: 10px; font-size: 1.25rem; }
.service-content > p { color: var(--gray-600); margin-bottom: 20px; font-size: 0.95rem; }
.service-features { margin-bottom: 20px; }
.service-features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; color: var(--gray-700); font-size: 0.9rem; }
.service-features i { color: var(--nature); font-size: 0.8rem; }
.service-btn { display: inline-flex; align-items: center; gap: 8px; color: var(--nature); font-weight: 600; }
.service-btn:hover { gap: 12px; }

/* Tourism Section */
.tourism-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.tourism-card { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); transition: var(--transition); }
.tourism-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.tourism-img { height: 180px; overflow: hidden; }
.tourism-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.tourism-card:hover .tourism-img img { transform: scale(1.1); }
.tourism-content { padding: 20px; }
.tourism-content h4 { margin-bottom: 5px; font-size: 1.1rem; color: var(--secondary); }
.tourism-content span { color: var(--gray-500); font-size: 0.85rem; }

/* Why Us */
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-us-content .section-badge { margin-bottom: 15px; }
.why-us-content h2 { margin-bottom: 20px; }
.why-us-content > p { color: var(--gray-600); margin-bottom: 30px; }
.features-list { display: flex; flex-direction: column; gap: 25px; }
.feature-item { display: flex; gap: 20px; }
.feature-icon { width: 60px; height: 60px; background: var(--nature-light); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: var(--nature); font-size: 1.5rem; flex-shrink: 0; }
.feature-text h4 { margin-bottom: 5px; font-size: 1.1rem; }
.feature-text p { color: var(--gray-600); font-size: 0.95rem; }
.why-us-image { position: relative; }
.why-us-image img { border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); }
.experience-badge { position: absolute; bottom: 30px; left: -30px; background: var(--nature); color: var(--white); padding: 20px 25px; border-radius: var(--radius-xl); text-align: center; box-shadow: var(--shadow-xl); }
.exp-number { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.exp-text { font-size: 0.9rem; opacity: 0.9; }

/* Zones */
.zones-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; }
.zones-map { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); min-height: 500px; }
.zones-map iframe { display: block; width: 100%; height: 100%; min-height: 500px; }
.zones-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; margin-bottom: 30px; }
.zone-group h4 { display: flex; align-items: center; gap: 10px; color: var(--nature); margin-bottom: 12px; font-size: 1rem; }
.zone-group ul { display: flex; flex-wrap: wrap; gap: 8px; }
.zone-group li { background: var(--white); padding: 6px 12px; border-radius: var(--radius); font-size: 0.85rem; color: var(--gray-700); border: 1px solid var(--gray-200); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.about-img-secondary { position: absolute; bottom: -30px; right: -30px; width: 60%; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); border: 5px solid var(--white); }
.about-badge { position: absolute; top: 30px; right: -20px; background: var(--nature); color: var(--white); padding: 15px 20px; border-radius: var(--radius-xl); text-align: center; box-shadow: var(--shadow-lg); }
.about-badge i { font-size: 1.5rem; margin-bottom: 5px; display: block; }
.about-badge span { font-size: 0.8rem; font-weight: 600; line-height: 1.3; }
.about-content .section-badge { margin-bottom: 15px; }
.about-content h2 { margin-bottom: 20px; }
.about-content > p { color: var(--gray-600); margin-bottom: 20px; }
.about-stats { display: flex; gap: 40px; margin: 30px 0; }
.about-stat { text-align: center; }
.stat-num { display: block; font-size: 2.5rem; font-weight: 800; color: var(--nature); line-height: 1; }
.stat-txt { font-size: 0.9rem; color: var(--gray-600); }

/* Airports */
.airports-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.airport-card { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.airport-card img { width: 100%; height: 200px; object-fit: cover; transition: var(--transition); }
.airport-card:hover img { transform: scale(1.1); }
.airport-info { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.8)); padding: 60px 20px 20px; color: var(--white); }
.airport-info h4 { margin-bottom: 5px; font-size: 1.1rem; }
.airport-info span { font-size: 0.9rem; opacity: 0.9; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info .section-badge { margin-bottom: 15px; }
.contact-info h2 { margin-bottom: 15px; }
.contact-info > p { color: var(--gray-600); margin-bottom: 30px; }
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.contact-card { display: flex; align-items: center; gap: 15px; padding: 20px; background: var(--gray-50); border-radius: var(--radius-lg); transition: var(--transition); }
.contact-card:hover { background: var(--nature-light); }
.contact-icon { width: 50px; height: 50px; background: var(--nature); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.25rem; flex-shrink: 0; }
.contact-text h4 { font-size: 0.95rem; margin-bottom: 3px; }
.contact-text span { font-size: 0.9rem; color: var(--gray-600); }
.contact-form-box { background: var(--nature-light); padding: 40px; border-radius: var(--radius-xl); }
.contact-form-box h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; color: var(--nature); }

/* Footer */
.footer { background: var(--secondary); color: var(--white); }
.footer-top { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo img { height: 80px; margin-bottom: 20px; }
.footer-about p { color: var(--gray-400); font-size: 0.95rem; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { background: var(--nature); }
.footer-links h4, .footer-contact h4 { margin-bottom: 20px; font-size: 1.1rem; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links a { color: var(--gray-400); font-size: 0.95rem; }
.footer-links a:hover { color: var(--primary); }
.footer-contact ul li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px; color: var(--gray-400); font-size: 0.95rem; }
.footer-contact i { color: var(--nature); margin-top: 4px; }
.footer-contact a { color: var(--gray-400); }
.footer-contact a:hover { color: var(--primary); }
.footer-reviews { padding: 30px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom { padding: 25px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.footer-bottom p { color: var(--gray-500); font-size: 0.9rem; }
.footer-bottom a { color: var(--primary); }
.footer-legal { display: flex; gap: 25px; }
.footer-legal a { color: var(--gray-500); font-size: 0.85rem; }
.footer-legal a:hover { color: var(--primary); }

/* Modal */
.reservation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reservation-modal.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 90vh;
    max-height: 900px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: var(--primary);
    flex-shrink: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-header h3 {
    color: var(--secondary);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.modal-close {
    width: 36px;
    height: 36px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--gray-800);
    transform: scale(1.1);
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-body iframe {
    width: 100%;
    height: 1500px;
    border: none;
}

.modal-footer {
    display: none;
    padding: 15px 20px;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
    flex-shrink: 0;
}

.modal-footer.visible {
    display: block;
}

.modal-reload-btn {
    width: 100%;
    padding: 15px 20px;
    background: var(--nature);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.modal-reload-btn:hover {
    background: var(--nature-dark);
}

/* Back to Top */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--nature); color: var(--white); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 999; box-shadow: var(--shadow-lg); }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--nature-dark); transform: translateY(-5px); }

/* ==================== RESPONSIVE ==================== */

@media (max-width: 1024px) {
    .services-grid, .airports-grid { grid-template-columns: repeat(2, 1fr); }
    .tourism-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 768px) {
    .header-top { display: none; }
    
    .navbar { 
        position: fixed; 
        top: 0; 
        left: 0; 
        right: 0; 
        height: var(--header-height-mobile);
        padding: 0;
        background: var(--secondary);
    }
    .nav-content { height: var(--header-height-mobile); }
    
    .logo img {
        height: 80px;
        margin-bottom: -20px;
        margin-top: 5px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: var(--header-height-mobile);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 0;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active { display: flex; }
    .nav-menu li { border-bottom: 1px solid var(--gray-200); }
    .nav-link { display: block; padding: 18px 0; font-size: 1.1rem; }
    
    .language-selector { display: none; }
    .language-selector-mobile { display: block; }
    .lang-toggle { background: var(--nature); color: var(--white); }
    .lang-dropdown a.active { background: var(--nature); color: var(--white); }
    .whatsapp-btn { display: flex; background: var(--nature); color: var(--white); }
    .whatsapp-btn:hover { background: var(--nature-dark); }
    .phone-btn span { display: none; }
    .phone-btn { width: 40px; height: 40px; padding: 0; justify-content: center; background: var(--nature); }
    .phone-btn i { color: var(--white); }
    .cta-btn { display: none; }
    .menu-toggle { display: flex; background: var(--nature); }
    .menu-toggle span { background: var(--white); }
    
    .hero { min-height: auto; padding-bottom: 0; }
    
    .hero-img-desktop { display: none; }
    .hero-img-mobile { display: none; }
    .hero-bg-mobile-tile {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/hero-ardennes-portrait.webp');
        background-repeat: repeat-y;
        background-size: 100% auto;
        background-position: top center;
    }
    
    .hero > .container {
        max-width: var(--container-max);
        justify-content: flex-start;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        align-items: flex-start;
        text-align: left;
        padding: 50px 0 0 0;
    }
    
    .hero h1,
    .hero p {
        text-align: left;
    }
    
    .hero-form-header {
        font-size: 1rem;
        padding: 12px 15px;
    }
    
    .hero-form-wrapper {
        max-width: 100%;
        margin: 25px 0 0;
    }
    .hero > .container { padding-top: 40px; padding-bottom: 30px; }
    .hero-stats { position: relative; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .tourism-grid { grid-template-columns: repeat(2, 1fr); }
    .why-us-grid, .about-grid, .zones-content, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .why-us-image { order: -1; max-width: 500px; margin: 0 auto; }
    .airports-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-img-secondary { position: relative; bottom: auto; right: auto; width: 100%; margin-top: 20px; border: none; }
    .about-badge { top: 20px; right: 20px; }
    .experience-badge { left: 20px; bottom: 20px; }
    
    .modal-container {
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
    }
    
    .modal-header {
        padding: 12px 15px;
        border-radius: 0;
    }
    
    .modal-header h3 {
        font-size: 1rem;
    }
    
    .modal-body iframe {
        height: 1500px;
    }
    
    .modal-footer {
        padding: 12px 15px;
    }
    
    .modal-reload-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .steps-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .tourism-grid { grid-template-columns: 1fr; }
    .airports-grid { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .zones-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-about { display: flex; flex-direction: column; align-items: center; }
    .footer-social { justify-content: center; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .footer-legal { flex-wrap: wrap; justify-content: center; gap: 15px; }
    .stats-grid { grid-template-columns: 1fr; gap: 15px; }
    .stat-item { justify-content: flex-start; padding: 10px 0; }
    .about-stats { flex-direction: column; gap: 20px; }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 15px;
        --header-height-mobile: 52px;
    }
    
    .hero-form-wrapper iframe {
        height: 400px;
    }
    
    .hero-form-header {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
    
    .logo img {
        height: 70px;
        margin-bottom: -20px;
    }
    
    .lang-toggle {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }
    
    .whatsapp-btn,
    .phone-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .menu-toggle {
        width: 36px;
        height: 36px;
    }
    
    .section { padding: 50px 0; }
    .section-header { margin-bottom: 35px; }
    
    .btn { padding: 12px 20px; font-size: 0.95rem; }
    .btn-lg { padding: 14px 25px; font-size: 1rem; }
}

@media (max-width: 380px) {
    .hero > .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero h1 { font-size: 1.5rem; }
    
    .nav-right {
        gap: 8px;
    }
    
    .lang-toggle,
    .whatsapp-btn,
    .phone-btn,
    .menu-toggle {
        width: 34px;
        height: 34px;
    }
}

/* ==================== LEGAL PAGES ==================== */

.legal-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #2d2d2d 100%);
    padding: 120px 0 60px;
    text-align: center;
    color: var(--white);
}

.legal-hero h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.legal-hero p {
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.legal-content {
    padding: 60px 0;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: var(--nature);
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--nature-light);
}

.legal-section h3 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin: 25px 0 10px;
}

.legal-section p,
.legal-section li {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-section li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.legal-section li::before {
    content: "•";
    color: var(--nature);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.legal-info-box {
    background: var(--nature-light);
    padding: 25px;
    border-radius: var(--radius-lg);
    margin: 20px 0;
    border-left: 4px solid var(--nature);
}

.legal-info-box p {
    margin-bottom: 8px;
}

.legal-info-box p:last-child {
    margin-bottom: 0;
}

.legal-info-box strong {
    color: var(--secondary);
}

.legal-link {
    color: var(--nature);
    text-decoration: underline;
}

.legal-link:hover {
    color: var(--nature-dark);
}

.legal-update {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.footer-legal a.active {
    color: var(--primary);
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 100px 0 40px;
    }
    
    .legal-content {
        padding: 40px 0;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
}
