/* ============================================
   TaxiZara - Global Stylesheet
   ============================================ */

:root {
    --primary: #ffc32a;
    --primary-dark: #D4A900;
    --secondary: #1A1A1A;
    --secondary-light: #2D2D2D;
    --secondary-dark: #000000;
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --font-primary: 'Poppins', sans-serif;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50%;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --shadow-xl: 0 12px 48px rgba(0,0,0,0.25);
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --container-max: 1200px;
    --container-padding: 20px;
    --header-height-mobile: 55px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-primary); line-height: 1.6; color: #343A40; background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition-base); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--secondary); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
p { margin-bottom: 1rem; color: var(--gray-600); }
.highlight { color: var(--primary); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 12px 28px; font-size: 1rem; font-weight: 600; border-radius: var(--radius-md);
    transition: var(--transition-base); cursor: pointer; border: 2px solid transparent; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--secondary); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--secondary); }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }

/* ============================================
   Header - FULL WIDTH
   ============================================ */
.header {
    width: 100%;
    min-width: 100%;
    z-index: 1000;
    background: var(--secondary);
}

.header-top { background: var(--secondary-dark); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.header-top-content { display: flex; justify-content: space-between; align-items: center; }
.header-info { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.header-info span { color: var(--gray-400); font-size: 0.875rem; display: flex; align-items: center; gap: 8px; }
.header-info i { color: var(--primary); }
.header-top-links { display: flex; gap: 20px; margin-left: 20px; }
.header-top-links a { color: var(--gray-400); font-size: 0.875rem; }
.header-top-links a:hover { color: var(--primary); }
.header-social { display: flex; gap: 15px; }
.header-social a { color: var(--gray-400); font-size: 1rem; }
.header-social a:hover { color: var(--primary); }

/* Navbar */
.navbar {
    padding: 8px 0;
    background: var(--secondary);
    width: 100%;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1001;
}

.logo img {
    height: 144px;
    width: auto;
    margin-top: 5px;
    margin-bottom: -45px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* Nav Menu */
.nav-menu { display: flex; align-items: center; gap: 35px; }
.nav-link { color: var(--white); font-weight: 500; font-size: 1rem; padding: 8px 0; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition-base); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--primary); }

/* Nav Right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Language Selector - DESKTOP */
.language-selector { display: flex; background: var(--secondary-light); border-radius: var(--radius-md); overflow: hidden; }
.lang-btn { padding: 8px 12px; color: var(--gray-400); font-size: 0.875rem; font-weight: 600; transition: var(--transition-base); }
.lang-btn:hover, .lang-btn.active { background: var(--primary); color: var(--secondary); }

/* Language Selector - MOBILE */
.language-selector-mobile {
    display: none;
    position: relative;
    flex-shrink: 0;
}

.lang-toggle {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: var(--radius-full);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    gap: 0px;
    padding-top: 5px;
}

.lang-toggle .fa-chevron-down {
    font-size: 0.65rem;
    color: var(--secondary);
    font-weight: 900;
    -webkit-text-stroke: 1px var(--secondary);
}

.lang-toggle:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--secondary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-base);
    z-index: 1002;
    min-width: 55px;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: block;
    padding: 10px 16px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    transition: var(--transition-base);
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
    background: var(--primary);
    color: var(--secondary);
}

/* Phone Button */
.phone-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--secondary-light);
    border-radius: var(--radius-md);
    color: var(--white);
    font-weight: 600;
    flex-shrink: 0;
}

.phone-btn i {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.phone-btn:hover {
    background: var(--primary);
    color: var(--secondary);
}

.phone-btn:hover i {
    background: var(--secondary);
    color: var(--primary);
}

/* WhatsApp Button - MOBILE */
.whatsapp-btn {
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-btn i {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: var(--transition-base);
}

.whatsapp-btn:hover i {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* CTA Button */
.cta-btn {
    padding: 10px 24px;
    background: var(--primary);
    color: var(--secondary);
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    flex-shrink: 0;
}

.cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Menu Toggle - DESKTOP (caché) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    cursor: pointer;
    z-index: 1002;
    flex-shrink: 0;
    min-width: 36px;
}

.menu-toggle span {
    width: 22px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-base);
    display: block;
}

/* ============================================
   Hero
   ============================================ */
/* 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 { 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(0,0,0,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(--primary); color: var(--secondary); 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 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 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: #e6af26;
}

.hero-form-header i {
    font-size: 1.2rem;
}
.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(--primary); 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; }
.stat-item i { font-size: 2rem; color: var(--secondary); opacity: 0.8; }
.stat-info { display: flex; flex-direction: column; }
.stat-number { font-size: 1.75rem; font-weight: 800; color: var(--secondary); line-height: 1; }
.stat-label { font-size: 0.875rem; color: var(--secondary); opacity: 0.8; }

/* ============================================
   Sections
   ============================================ */
.section { padding: 80px 0; }
.section-dark { background: var(--secondary); }
.section-gray { background: var(--gray-100); }
.section-header { text-align: center; margin-bottom: 50px; max-width: 800px; margin-left: auto; margin-right: auto; }
.section-badge { display: inline-block; padding: 8px 20px; background: rgba(247,198,0,0.15); color: var(--primary); font-size: 0.875rem; font-weight: 600; border-radius: var(--radius-xl); margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.section-dark .section-badge { background: rgba(247,198,0,0.2); }
.section-header h2 { margin-bottom: 15px; }
.section-dark .section-header h2 { color: var(--white); }
.section-header p { font-size: 1.1rem; }
.section-dark .section-header p { color: var(--gray-400); }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step-card { position: relative; background: var(--secondary-light); padding: 40px 30px 70px; border-radius: var(--radius-lg); text-align: center; transition: var(--transition-base); }
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.step-number { position: absolute; bottom: 15px; right: 20px; font-size: 3.5rem; font-weight: 900; color: var(--primary); opacity: 0.2; line-height: 1; }
.step-icon { width: 80px; height: 80px; background: var(--primary); color: var(--secondary); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 25px; box-shadow: 0 8px 25px rgba(247,198,0,0.3); }
.step-card h3 { color: var(--white); margin-bottom: 15px; font-size: 1.25rem; }
.step-card p { color: var(--gray-400); font-size: 0.95rem; margin-bottom: 0; }

/* Reservation - NO SCROLLBAR + HAUTEUR AUGMENTÉE */
.reservation-section { padding: 60px 0; background: var(--gray-100); }
.reservation-box { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); max-width: 800px; margin: 0 auto; }
.reservation-header { background: var(--primary); padding: 25px 30px; text-align: center; }
.reservation-header h2 { color: var(--secondary); font-size: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 5px; }
.reservation-header p { color: var(--secondary); opacity: 0.8; margin-bottom: 0; font-size: 0.95rem; }
.reservation-body { padding: 30px; overflow: hidden; }
.reservation-body iframe { width: 100%; min-height: 550px; border: none; overflow: hidden; }
.new-request-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; margin-top: 20px; padding: 15px 25px; background: var(--secondary); color: var(--white); font-weight: 600; font-size: 0.95rem; border-radius: var(--radius-md); border: none; cursor: pointer; transition: var(--transition-base); }
.new-request-btn:hover { background: var(--secondary-light); transform: translateY(-2px); }

/* Testimonials */
.testimonials-widget { min-height: 200px; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding-top: 20px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); overflow: visible !important; box-shadow: var(--shadow-md); transition: var(--transition-base); position: relative; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.service-card.featured { border: 3px solid var(--primary); }
.service-badge { position: absolute; top: 20px; right: 20px; background: var(--primary); color: var(--secondary); padding: 6px 15px; font-size: 0.8rem; font-weight: 700; border-radius: var(--radius-xl); z-index: 2; }
.service-img { position: relative; height: 220px; overflow: visible !important; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-icon { position: absolute; bottom: -35px; left: 30px; width: 70px; height: 70px; background: var(--primary); color: var(--secondary); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; box-shadow: 0 8px 25px rgba(247,198,0,0.4); border: 4px solid var(--white); z-index: 10; }
.service-content { padding: 50px 30px 30px; }
.service-content h3 { margin-bottom: 12px; font-size: 1.4rem; }
.service-content > p { font-size: 0.95rem; margin-bottom: 20px; }
.service-features { margin-bottom: 25px; }
.service-features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; color: var(--gray-700); font-size: 0.95rem; }
.service-features i { color: var(--primary); font-size: 0.9rem; }
.service-btn { display: inline-flex; align-items: center; gap: 8px; color: var(--secondary); font-weight: 600; padding: 10px 0; border-bottom: 2px solid transparent; transition: var(--transition-base); }
.service-btn:hover { color: var(--primary); border-color: var(--primary); }

/* Why Us */
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-us-content .section-badge { display: inline-block; }
.why-us-content h2 { margin-bottom: 20px; }
.why-us-content > p { margin-bottom: 30px; }
.features-list { display: flex; flex-direction: column; gap: 25px; }
.feature-item { display: flex; gap: 20px; }
.feature-item .feature-icon { width: 60px; height: 60px; min-width: 60px; background: rgba(247,198,0,0.15); color: var(--primary); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.feature-text h4 { margin-bottom: 5px; font-size: 1.1rem; }
.feature-text p { font-size: 0.95rem; margin-bottom: 0; }
.why-us-image { position: relative; }
.why-us-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.experience-badge { position: absolute; bottom: -20px; left: -20px; background: var(--primary); color: var(--secondary); padding: 25px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-lg); }
.exp-number { display: block; font-size: 2.5rem; font-weight: 800; line-height: 1; }
.exp-text { font-size: 0.875rem; font-weight: 600; }

/* Zones */
.zones-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.zones-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.zones-map iframe { width: 100%; height: 100%; min-height: 450px; }
.zones-info { display: flex; flex-direction: column; justify-content: center; }
.zones-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; margin-bottom: 30px; }
.zone-group h4 { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 1rem; color: var(--secondary); }
.zone-group h4 i { color: var(--primary); }
.zone-group ul li { padding: 5px 0 5px 15px; color: var(--gray-600); font-size: 0.95rem; position: relative; }
.zone-group ul li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; background: var(--primary); border-radius: var(--radius-full); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images { position: relative; }
.about-img-main { width: 80%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 350px; object-fit: cover; }
.about-img-secondary { position: absolute; bottom: -30px; right: 0; width: 60%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 5px solid var(--white); }
.about-img-secondary img { width: 100%; height: 200px; object-fit: cover; }
.about-badge { position: absolute; top: 20px; right: 20px; width: 100px; height: 100px; background: var(--primary); color: var(--secondary); border-radius: var(--radius-full); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: var(--shadow-md); }
.about-badge i { font-size: 1.5rem; margin-bottom: 5px; }
.about-badge span { font-size: 0.75rem; font-weight: 700; line-height: 1.2; }
.about-content .section-badge { display: inline-block; }
.about-content h2 { margin-bottom: 20px; }
.about-stats { display: flex; gap: 40px; margin: 30px 0; flex-wrap: wrap; }
.about-stat { text-align: center; }
.stat-num { display: block; font-size: 2.5rem; font-weight: 800; color: var(--primary); 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: 25px; max-width: 900px; margin: 0 auto; }
.airport-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition-base); }
.airport-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.airport-card img { width: 100%; height: 200px; object-fit: cover; }
.airport-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: var(--white); }
.airport-info h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 5px; }
.airport-info span { font-size: 0.85rem; opacity: 0.9; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info .section-badge { display: inline-block; }
.contact-info h2 { margin-bottom: 15px; }
.contact-info > p { 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(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: var(--transition-base); }
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.contact-icon { width: 50px; height: 50px; min-width: 50px; background: rgba(247,198,0,0.15); color: var(--primary); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.contact-text h4 { font-size: 0.9rem; margin-bottom: 3px; }
.contact-text span { font-size: 0.95rem; color: var(--gray-600); }
.contact-form-box { background: var(--white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.contact-form-box h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; font-size: 1.3rem; }
.contact-form-box h3 i { color: var(--primary); }

/* 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 { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo img { height: 70px; }
.footer-about p { color: var(--gray-400); font-size: 0.95rem; margin-bottom: 20px; }
.footer-social { display: flex; gap: 15px; }
.footer-social a { width: 40px; height: 40px; background: var(--secondary-light); color: var(--white); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: var(--transition-base); }
.footer-social a:hover { background: var(--primary); color: var(--secondary); }
.footer-links h4, .footer-contact h4 { color: var(--white); margin-bottom: 20px; font-size: 1.1rem; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: var(--gray-400); font-size: 0.95rem; }
.footer-links ul li a:hover { color: var(--primary); padding-left: 5px; }
.footer-contact ul li { display: flex; gap: 12px; margin-bottom: 15px; color: var(--gray-400); font-size: 0.95rem; }
.footer-contact ul li i { color: var(--primary); width: 20px; margin-top: 3px; }
.footer-contact ul li a { color: var(--gray-400); }
.footer-contact ul li a:hover { color: var(--primary); }
.footer-reviews { padding: 30px 0; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-bottom { padding: 25px 0; }
.footer-bottom-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-bottom p { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 0; }
.footer-bottom a { color: var(--primary); }
.footer-legal { display: flex; gap: 25px; flex-wrap: wrap; }
.footer-legal a { color: var(--gray-500); font-size: 0.9rem; }
.footer-legal a:hover { color: var(--primary); }

/* Back to Top */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--primary); color: var(--secondary); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transition: var(--transition-base); z-index: 999; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-5px); }

/* ============================================
   Modal Réservation Plein Écran
   ============================================ */
.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;
}

.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);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.modal-close:hover {
    background: var(--secondary-light);
    transform: scale(1.1);
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    -webkit-overflow-scrolling: touch;
}

.modal-body iframe {
    width: 100%;
    height: 1500px;
    border: none;
    display: block;
}

.modal-footer {
    padding: 15px 20px;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-400);
    flex-shrink: 0;
    display: none;
}

.modal-footer.visible {
    display: block;
}

.modal-reload-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: var(--secondary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
}

.modal-reload-btn:hover {
    background: var(--primary);
    color: var(--secondary);
}

/* Modal Mobile */
@media (max-width: 768px) {
    .modal-container {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
    }
    
    .modal-header {
        padding: 12px 15px;
    }
    
    .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;
    }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--secondary); flex-direction: column; padding: 20px; gap: 0; box-shadow: var(--shadow-lg); z-index: 1000; }
    .nav-menu.active { display: flex; }
    .nav-menu .nav-link { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; display: block; }
    .menu-toggle { display: flex; }
    .phone-btn span { display: none; }
    .hero { min-height: auto; padding-bottom: 100px; }
    
    .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-taxi-portrait-720x1280.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: 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: 80px; }
    .hero-stats { position: relative; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .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: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root {
        --header-height-mobile: 55px;
    }
    
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
    }
    
    .header-top { display: none; }
    body { padding-top: var(--header-height-mobile); }
    
    /* Navbar compact - FULL WIDTH */
    .navbar {
        padding: 5px 0;
        width: 100%;
    }
    
    .nav-content {
        gap: 6px;
        width: 100%;
    }
    
    /* Logo mobile */
    .logo img {
        height: 80px;
        margin-top: 3px;
        margin-bottom: -22px;
    }
    
    .nav-right {
        gap: 6px;
        flex: 0;
        justify-content: flex-end;
        flex-shrink: 0;
        overflow: visible;
    }
    
    .language-selector { display: none; }
    .language-selector-mobile { display: block; }
    
    /* WhatsApp visible en mobile */
    .whatsapp-btn {
        display: flex;
    }
    
    /* Phone button compact */
    .phone-btn {
        padding: 0;
        background: transparent;
    }
    .phone-btn i {
        width: 36px;
        height: 36px;
    }
    
    .cta-btn { display: none; }
    
    /* Menu toggle - JAUNE avec barres noires + AGRANDI */
    .menu-toggle {
        display: flex;
        padding: 6px;
        margin-right: 5px;
        background: var(--primary);
        border-radius: var(--radius-full);
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
    }
    
    .menu-toggle span {
        width: 18px;
        height: 2px;
        background: var(--secondary);
    }
    
    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: var(--header-height-mobile);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--secondary);
        flex-direction: column;
        padding: 30px 20px;
        gap: 0;
        overflow-y: auto;
        z-index: 999;
    }
    .nav-menu.active { display: flex; }
    .nav-menu .nav-link { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 1.1rem; }
    
    /* Hero */
    .hero { min-height: auto; padding-top: 10px; }
    .hero > .container { padding-top: 40px; padding-bottom: 60px; }
    .hero h1 { font-size: 1.75rem; }
    .hero-badge { display: none; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn { width: 100%; min-width: auto; padding: 16px 20px; font-size: 1rem; }
    .stats-grid { grid-template-columns: 1fr; gap: 15px; }
    .stat-item { justify-content: flex-start; padding: 10px 20px; background: rgba(0,0,0,0.1); border-radius: var(--radius-md); }
    .steps-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; gap: 50px; padding-top: 30px; }
    .service-icon { bottom: -30px; left: 20px; width: 60px; height: 60px; font-size: 1.5rem; }
    .service-content { padding: 45px 20px 25px; }
    .zones-grid { grid-template-columns: 1fr; }
    .zones-map iframe { min-height: 300px; }
    .about-img-secondary { display: none; }
    .about-img-main { width: 100%; }
    .airports-grid { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { justify-content: center; }
    .footer-social { justify-content: center; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; }
    .section { padding: 60px 0; }
    .reservation-header h2 { font-size: 1.2rem; flex-direction: column; gap: 8px; }
    .reservation-body { padding: 20px; overflow: hidden; }
    .reservation-body iframe { min-height: 600px; }
}

/* TRÈS PETITS ÉCRANS */
@media (max-width: 380px) {
    :root {
        --container-padding: 12px;
        --header-height-mobile: 50px;
    }
    
    .logo img {
        height: 65px;
        margin-bottom: -18px;
    }
    
    .lang-toggle {
        width: 34px;
        height: 34px;
        font-size: 0.7rem;
        padding-top: 3px;
    }
    
    .lang-toggle .fa-chevron-down {
        font-size: 0.5rem;
    }
    
    .phone-btn i {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .whatsapp-btn i {
        width: 32px;
        height: 32px;
        font-size: 1.05rem;
    }
    
    .menu-toggle {
        width: 35px;
        height: 35px;
        padding: 5px;
        margin-right: 3px;
        background: var(--primary);
        border-radius: var(--radius-full);
    }
    
    .menu-toggle span {
        width: 15px;
        height: 2px;
        background: var(--secondary);
    }
    
    .nav-right {
        gap: 5px;
        flex: 0;
        overflow: visible;
    }
    
    .hero > .container {
        padding-top: 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;
        padding-top: 4px;
    }
    
    .lang-toggle .fa-chevron-down {
        font-size: 0.55rem;
    }
    
    .phone-btn i {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
    
    .whatsapp-btn i {
        width: 34px;
        height: 34px;
        font-size: 1.1rem;
    }
    
    .menu-toggle {
        width: 38px;
        height: 38px;
        padding: 5px;
        margin-right: 5px;
        background: var(--primary);
        border-radius: var(--radius-full);
    }
    
    .menu-toggle span {
        width: 16px;
        height: 2px;
        background: var(--secondary);
    }
    
    .nav-right {
        flex: 0;
        overflow: visible;
    }
    
    .hero > .container {
        padding-top: 40px;
    }
    
    .hero h1 { font-size: 1.5rem; }
    .hero-buttons .btn { padding: 14px 20px; font-size: 1rem; }
    .section-header h2 { font-size: 1.5rem; }
    .step-card { padding: 30px 20px 60px; }
    .reservation-body { padding: 20px; overflow: hidden; }
    .reservation-body iframe { min-height: 600px; }
    .contact-form-box { padding: 25px; }
}