/* ==========================================
   MARIO TAXI - STYLES CSS
   Design moderne et responsive pour service de taxi
   ========================================== */

/* === VARIABLES CSS === */
:root {
    /* Couleurs principales */
    --primary-color: #FFD700;        /* Jaune taxi */
    --primary-dark: #FFC000;
    --secondary-color: #1a1a1a;      /* Noir profond */
    --secondary-light: #2d2d2d;
    --accent-color: #4CAF50;         /* Vert pour succès */
    
    /* Couleurs de texte */
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-white: #ffffff;
    
    /* Couleurs de fond */
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-overlay: rgba(0, 0, 0, 0.7);
    
    /* Ombres */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Bordures */
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 25px;
    --radius-full: 50px;
}

/* === RESET ET BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* === TYPOGRAPHIE === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* === HEADER / NAVIGATION === */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-white);
    font-size: 1.5rem;
}

.logo i {
    color: var(--primary-color);
    font-size: 2rem;
}

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    color: var(--text-white);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    background-color: var(--secondary-light);
    color: var(--primary-color);
}

.nav-link.cta-link {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
}

.nav-link.cta-link:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Menu mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 3px;
    transition: var(--transition);
}

/* === BOUTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-image: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%),
        url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
    text-align: center;
    color: var(--text-white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 45, 45, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-md);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    font-weight: 300;
    animation: fadeInUp 1.2s ease;
    color: rgba(255, 255, 255, 0.9);
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
    animation: fadeInUp 1.4s ease;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.feature-badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
    animation: fadeInUp 1.6s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === SECTIONS === */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: var(--spacing-md);
}

/* === ENGAGEMENTS SECTION === */
.engagements {
    background-color: var(--bg-white);
    padding: var(--spacing-xl) 0;
}

.engagements-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.engagement-card {
    text-align: center;
    padding: var(--spacing-md);
}

.engagement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.engagement-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.engagement-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.engagement-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .engagements-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .engagements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .engagements-grid {
        grid-template-columns: 1fr;
    }
}

/* === SERVICES SECTION === */
.services {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.service-card {
    background-color: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.service-list {
    list-style: none;
    text-align: left;
    margin-top: var(--spacing-sm);
}

.service-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-list i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* === WHY US SECTION === */
.why-us {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: var(--text-white);
}

.why-us .section-title {
    color: var(--text-white);
}

.why-us .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.why-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.why-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    opacity: 0.3;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.why-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* === TARIFS SECTION === */
.tarifs {
    background-color: var(--bg-light);
}

.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.tarif-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.tarif-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.tarif-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.tarif-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--secondary-color);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.tarif-header {
    text-align: center;
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--bg-light);
    margin-bottom: var(--spacing-sm);
}

.tarif-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.tarif-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-from {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.tarif-list {
    list-style: none;
}

.tarif-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tarif-list i {
    color: var(--accent-color);
}

.tarifs-note {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--bg-white);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-sm);
}

.tarifs-note i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* === ZONE SECTION === */
.zone {
    background-color: var(--bg-white);
}

.zone-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.zone-text h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.zone-list {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.zone-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.zone-list i {
    color: var(--primary-color);
    width: 20px;
}

.zone-list strong {
    color: var(--text-dark);
}

.map-placeholder {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* === TEMOIGNAGES SECTION === */
.temoignages {
    background-color: var(--bg-light);
    padding: var(--spacing-xl) 0;
}

.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.temoignage-card {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.temoignage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.temoignage-stars {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.temoignage-stars i {
    margin-right: 2px;
}

.temoignage-text {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.temoignage-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #eee;
    padding-top: var(--spacing-sm);
}

.temoignage-author strong {
    color: var(--text-dark);
    font-size: 1rem;
}

.temoignage-author span {
    color: var(--text-light);
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .temoignages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .temoignages-grid {
        grid-template-columns: 1fr;
    }
}

/* === CONTACT SECTION === */
.contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-info {
    background-color: var(--secondary-color);
    color: var(--text-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    height: fit-content;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.info-item {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 30px;
}

.info-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.info-item p,
.info-item a {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.info-item a:hover {
    color: var(--primary-color);
}

.contact-promo {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    background-color: rgba(255, 215, 0, 0.1);
    border-left: 3px solid var(--primary-color);
    border-radius: var(--radius-sm);
}

.contact-promo h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-promo p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* === FORMULAIRE === */
.contact-form-container {
    background-color: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin-top: var(--spacing-sm);
}

/* Message de confirmation */
.confirmation-message {
    position: fixed;
    top: 100px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--text-white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    display: none;
    align-items: center;
    gap: 0.75rem;
    z-index: 2000;
    animation: slideInRight 0.5s ease;
}

.confirmation-message.show {
    display: flex;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* === FOOTER === */
.footer {
    background-color: var(--secondary-color);
    color: var(--text-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* === BOUTON SCROLL TOP === */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--secondary-color);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
}

/* === RESPONSIVE === */

/* Tablettes */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .zone-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .tarifs-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--secondary-color);
        flex-direction: column;
        padding: var(--spacing-md);
        transition: var(--transition);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem;
        border-bottom: 1px solid var(--secondary-light);
    }
    
    .hero {
        min-height: 100vh;
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .why-us-grid,
    .tarifs-grid {
        grid-template-columns: 1fr;
    }
    
    .tarif-card.featured {
        transform: scale(1);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .confirmation-message {
        right: 10px;
        left: 10px;
        font-size: 0.9rem;
    }
}

/* Très petits écrans */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .service-card,
    .why-card,
    .tarif-card {
        padding: var(--spacing-sm);
    }
}

/* === PAGES LOCALES === */

/* Breadcrumb */
.breadcrumb-section {
    background-color: var(--secondary-color);
    padding: 1rem 0;
    margin-top: 70px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb .current {
    color: var(--primary-color);
}

/* Hero Local */
.hero-local {
    min-height: 60vh;
    padding-top: 0;
}

.hero-local .hero-title {
    font-size: 2.5rem;
}

/* Introduction Section */
.intro-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.intro-content .lead strong {
    color: var(--text-dark);
}

/* Services Local */
.services-local {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}

.services-local .service-price {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: var(--spacing-sm);
}

.service-link {
    display: inline-block;
    margin-top: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.service-link:hover {
    text-decoration: underline;
}

/* Points de prise en charge */
.pickup-points {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-white);
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.point-category {
    background-color: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
}

.point-category h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.point-category h3 i {
    color: var(--primary-color);
}

.point-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.point-category li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.point-category li:last-child {
    border-bottom: none;
}

/* Tarifs Local */
.tarifs-local {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}

.tarifs-table-wrapper {
    overflow-x: auto;
    margin-top: var(--spacing-lg);
}

.tarifs-table-full {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.tarifs-table-full th,
.tarifs-table-full td {
    padding: 1rem 1.5rem;
    text-align: left;
}

.tarifs-table-full th {
    background-color: var(--secondary-color);
    color: var(--text-white);
    font-weight: 600;
}

.tarifs-table-full td {
    border-bottom: 1px solid var(--bg-light);
}

.tarifs-table-full tr:last-child td {
    border-bottom: none;
}

.tarifs-table-full tr.highlight {
    background-color: rgba(255, 215, 0, 0.1);
}

.tarifs-table-full tr.highlight td {
    font-weight: 600;
}

.tarifs-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* FAQ Local */
.faq-local {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.faq-item {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: var(--text-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-md);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

/* Related Zones */
.related-zones {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-light);
}

.zones-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.zone-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--bg-white);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 500;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.zone-link:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Hero Price Box */
.hero-price-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-color);
    margin: var(--spacing-md) 0;
}

.hero-price-box .price-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.hero-price-box .price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hero-price-box .price-note {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Features Section */
.features-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-md);
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--secondary-color);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Tarifs Info Box */
.tarifs-info-box {
    background-color: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
    border-left: 4px solid var(--primary-color);
}

.tarifs-info-box h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.tarifs-info-box h3 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.tarifs-info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tarifs-info-box li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tarifs-info-box li i {
    color: var(--accent-color);
    font-size: 0.85rem;
}

.tarifs-table-full .price-cell {
    color: var(--primary-color);
}

/* Process Section */
.process-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: var(--text-white);
}

.process-section .section-title {
    color: var(--text-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.process-step {
    text-align: center;
    padding: var(--spacing-md);
    position: relative;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-sm);
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Responsive pour pages locales */
@media (max-width: 768px) {
    .hero-local .hero-title {
        font-size: 1.8rem;
    }

    .intro-content .lead {
        font-size: 1rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-price-box .price-value {
        font-size: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
}

/* === PAGES LÉGALES === */
.legal-content {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-white);
}

.legal-content h1 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

.legal-section {
    margin-bottom: var(--spacing-lg);
}

.legal-section h2 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.legal-section p,
.legal-section li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-section ul {
    padding-left: 1.5rem;
    margin: var(--spacing-sm) 0;
}

.legal-section a {
    color: var(--primary-color);
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-update {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--bg-light);
    color: var(--text-light);
}

/* === BOUTON WHATSAPP === */
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background-color: #1DA851;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* === STICKY CTA MOBILE === */
.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--secondary-color);
    padding: 0.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    justify-content: space-around;
    align-items: center;
    gap: 0.5rem;
}

.sticky-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    flex: 1;
    text-align: center;
    transition: var(--transition);
}

.sticky-btn i {
    font-size: 1.25rem;
}

.sticky-btn-call {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.sticky-btn-call:hover {
    background-color: var(--primary-dark);
}

.sticky-btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.sticky-btn-whatsapp:hover {
    background-color: #1DA851;
}

.sticky-btn-book {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 1px solid var(--primary-color);
}

.sticky-btn-book:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Afficher le sticky CTA sur mobile uniquement */
@media (max-width: 768px) {
    .sticky-cta-mobile {
        display: flex;
    }

    /* Ajouter du padding en bas du body pour le sticky */
    body {
        padding-bottom: 70px;
    }

    /* Cacher le bouton scroll-top sur mobile quand sticky est visible */
    .scroll-top-btn {
        bottom: 80px;
    }
}

/* === PRINT === */
@media print {
    .navbar,
    .hero-cta,
    .scroll-top-btn,
    .confirmation-message,
    .sticky-cta-mobile {
        display: none;
    }

    body {
        font-size: 12pt;
        padding-bottom: 0;
    }

    section {
        page-break-inside: avoid;
    }
}

