* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --noir: #0a0a0a;
    --noir-leger: #1a1a1a;
    --blanc: #ffffff;
    --blanc-casse: #f5f5f5;
    --or: #00D4FF;
    --or-clair: #00E5FF;
    --gris: #666666;
    --gris-clair: #999999;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--blanc-casse);
    background-color: var(--noir);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1.5rem 0;
    background: transparent;
}

#navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.98);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--blanc);
    letter-spacing: 2px;
}

.logo .vtc {
    color: var(--or);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--blanc-casse);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--or);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--or);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-phone {
    color: var(--or);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-phone:hover {
    color: var(--or-clair);
}

/* Sélecteur de langue */
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-link {
    color: var(--blanc-casse);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
}

.lang-link img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.lang-link:hover img {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 212, 255, 0.4);
}

.lang-link.active img {
    box-shadow: 0 4px 8px rgba(0, 212, 255, 0.6);
    border: 1px solid var(--or);
}

.lang-separator {
    color: var(--gris);
    font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('tesla.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--blanc);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--or);
    font-weight: 500;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--blanc-casse);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--or) 0%, var(--or-clair) 100%);
    color: var(--noir);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--or);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--or);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: var(--or);
    color: var(--noir);
    transform: translateY(-3px);
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    background: var(--or);
    color: var(--noir);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-small:hover {
    background: var(--or-clair);
    transform: scale(1.05);
}

/* Sections */
.presentation-section,
.philosophy-section,
.expertise-section,
.engagements-section,
.services-quick,
.tarifs-preview,
.contact-quick {
    padding: 5rem 2rem;
}

.presentation-section {
    background-color: var(--noir-leger);
    padding: 3rem 2rem;
}

.philosophy-section {
    background-color: var(--noir);
}

.expertise-section {
    background-color: var(--noir-leger);
}

.engagements-section {
    background-color: var(--noir);
}

.services-quick {
    background-color: var(--noir-leger);
}

.tarifs-preview {
    background-color: var(--noir);
}

.contact-quick {
    background-color: var(--noir-leger);
}

/* Introduction Content */
.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--blanc-casse);
    font-weight: 400;
}

.intro-text strong {
    color: var(--or);
    font-weight: 600;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--blanc);
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--or);
    margin: 1rem auto 0;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--gris-clair);
    line-height: 1.8;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(26, 26, 26, 0.6);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--or);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--or);
    font-weight: 600;
}

.feature-card p {
    color: var(--blanc-casse);
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-box {
    background: rgba(26, 26, 26, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--or);
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.2);
}

.service-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--blanc);
}

.service-box p {
    color: var(--gris-clair);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.link-gold {
    color: var(--or);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-gold:hover {
    color: var(--or-clair);
}

/* Tarifs Cards */
.tarifs-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.tarif-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.tarif-card.featured {
    border-color: var(--or);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.tarif-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--or);
}

.tarif-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--blanc);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--or);
    margin: 1rem 0;
}

.tarif-card p {
    color: var(--gris-clair);
}

.tarifs-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(26, 26, 26, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--or);
}

.contact-icon {
    font-size: 2.5rem;
}

.contact-item h4 {
    color: var(--or);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--blanc);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--or);
}

.contact-item p {
    color: var(--gris-clair);
    margin: 0;
}

.contact-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ========================================
   PAGE À PROPOS - STYLES
   ======================================== */

/* Hero Section À Propos */
.about-hero {
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(135deg, rgba(10, 10, 26, 0.9), rgba(0, 212, 255, 0.2)), 
                url('tesla-model-3.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-attachment: fixed;
}

/* Section Notre Histoire */
.about-story {
    padding: 6rem 2rem;
    background-color: var(--noir-leger);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-intro {
    font-size: 1.4rem;
    line-height: 1.9;
    color: var(--or);
    margin-bottom: 2rem;
    font-weight: 500;
    text-align: center;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--blanc-casse);
    margin-bottom: 1.8rem;
    text-align: justify;
}

.story-content p strong {
    color: var(--or);
    font-weight: 600;
}

.story-highlight {
    background: rgba(0, 212, 255, 0.1);
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--or);
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--blanc);
    margin-top: 2.5rem;
}

/* Section Nos Engagements */
.about-commitments {
    padding: 6rem 2rem;
    background-color: var(--noir);
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.commitment-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(0, 212, 255, 0.05));
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--or), var(--or-clair));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.commitment-card:hover::before {
    transform: scaleX(1);
}

.commitment-card:hover {
    transform: translateY(-15px);
    border-color: var(--or);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.3);
}

.commitment-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.commitment-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--or);
    font-weight: 600;
}

.commitment-card p {
    color: var(--blanc-casse);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.commitment-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--or), var(--or-clair));
    color: var(--noir);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Le Chauffeur */
.about-driver {
    padding: 6rem 2rem;
    background-color: var(--noir-leger);
}

.driver-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.driver-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.driver-placeholder {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(26, 26, 26, 0.9));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--or);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.driver-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.5);
}

.driver-icon {
    font-size: 8rem;
    color: var(--or);
}

.driver-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.driver-text .section-title::after {
    margin: 1rem 0 0 0;
}

.driver-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--blanc-casse);
    margin-bottom: 2rem;
}

.driver-intro strong {
    color: var(--or);
    font-weight: 600;
}

.driver-qualities {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.driver-qualities li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--blanc-casse);
    line-height: 1.7;
    font-size: 1.05rem;
}

.driver-qualities li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--or);
    font-weight: bold;
    font-size: 1.3rem;
}

.driver-qualities li strong {
    color: var(--or);
    font-weight: 600;
}

.driver-quote {
    background: rgba(0, 212, 255, 0.1);
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--or);
    border-radius: 8px;
    font-style: italic;
    color: var(--blanc);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 2rem;
}

/* Section CTA Final */
.about-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 26, 0.95), rgba(0, 212, 255, 0.1));
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 20px;
    border: 2px solid var(--or);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
}

.cta-box h2 {
    font-size: 2.2rem;
    color: var(--blanc);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-box p {
    font-size: 1.15rem;
    color: var(--blanc-casse);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-note {
    font-size: 0.95rem;
    color: var(--gris-clair);
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* Responsive - Page À Propos */
@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
        min-height: 400px;
        background-attachment: scroll;
    }
    
    .about-story,
    .about-commitments,
    .about-driver,
    .about-cta {
        padding: 4rem 1.5rem;
    }
    
    .story-intro {
        font-size: 1.2rem;
    }
    
    .story-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .commitments-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .driver-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .driver-placeholder {
        width: 220px;
        height: 220px;
    }
    
    .driver-icon {
        font-size: 6rem;
    }
    
    .driver-text .section-title {
        text-align: center;
    }
    
    .driver-text .section-title::after {
        margin: 1rem auto 0;
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
    }
    
    .cta-box h2 {
        font-size: 1.8rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background-color: var(--noir-leger);
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--or);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: var(--gris-clair);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: var(--blanc-casse);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--or);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom p {
    color: var(--gris-clair);
}

/* Widget Trustpilot dans le Footer */
.footer-trustpilot {
    text-align: center;
    padding: 2rem 0 1rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-trustpilot .trustpilot-widget {
    display: inline-block;
    max-width: 200px;
    margin: 0 auto;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

/* Page Header */
.page-header {
    padding: 10rem 2rem 5rem;
    background: linear-gradient(135deg, var(--noir) 0%, var(--noir-leger) 100%);
    text-align: center;
    border-bottom: 2px solid var(--or);
}

.page-header h1 {
    font-size: 3rem;
    color: var(--blanc);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--or);
}

/* Services Detailed */
.services-detailed {
    padding: 5rem 2rem;
    background-color: var(--noir);
}

.service-detail {
    margin-bottom: 4rem;
    background: rgba(26, 26, 26, 0.6);
    padding: 3rem;
    border-radius: 15px;
    border-left: 4px solid var(--or);
}

.service-detail-content {
    max-width: 900px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-detail h2 {
    font-size: 2rem;
    color: var(--or);
    margin-bottom: 1rem;
}

.service-intro {
    font-size: 1.1rem;
    color: var(--blanc-casse);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    color: var(--gris-clair);
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.6;
}

.service-price {
    font-size: 2rem;
    color: var(--or);
    font-weight: 700;
    margin: 1.5rem 0;
}

/* Tesla Advantages */
.tesla-advantages {
    padding: 5rem 2rem;
    background-color: var(--noir-leger);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
}

.advantage-item h3 {
    font-size: 1.3rem;
    color: var(--or);
    margin-bottom: 1rem;
}

.advantage-item p {
    color: var(--gris-clair);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--noir-leger) 0%, var(--noir) 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--blanc);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--gris-clair);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Tarifs Table */
.tarifs-table-section {
    padding: 5rem 2rem;
    background-color: var(--noir);
}

.pricing-table {
    overflow-x: auto;
    margin-top: 3rem;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 15px;
    overflow: hidden;
}

.pricing-table thead {
    background: #00D4FF;
    color: var(--noir);
}

.pricing-table th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-table td {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--blanc-casse);
}

.pricing-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
    transform: scale(1.01);
    transition: all 0.3s ease;
}

.pricing-table .featured-row {
    background: rgba(212, 175, 55, 0.15);
}

.tarifs-legal-notice {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(197, 160, 89, 0.1);
    border-left: 4px solid var(--or);
    border-radius: 4px;
}

.tarifs-legal-notice .legal-text {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin: 0;
    font-style: italic;
}

.price-cell {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--or);
}

.tarifs-notes {
    margin-top: 3rem;
    background: rgba(26, 26, 26, 0.6);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--or);
}

.tarifs-notes h3 {
    color: var(--or);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.tarifs-notes ul {
    list-style: none;
}

.tarifs-notes li {
    color: var(--blanc-casse);
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Forfaits Section */
.forfaits-section {
    padding: 5rem 2rem;
    background-color: var(--noir-leger);
}

.forfaits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.forfait-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.forfait-card.featured {
    border-color: var(--or);
    transform: scale(1.05);
}

.forfait-card .badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--or);
    color: var(--noir);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.forfait-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--or);
}

.forfait-card h3 {
    font-size: 1.5rem;
    color: var(--blanc);
    margin-bottom: 1rem;
}

.forfait-duration {
    font-size: 1.1rem;
    color: var(--gris-clair);
    margin-bottom: 1rem;
}

.forfait-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--or);
    margin: 1.5rem 0;
}

.forfait-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.forfait-features li {
    color: var(--gris-clair);
    margin-bottom: 0.8rem;
    padding-left: 1rem;
}

/* Bouton Forfait Premium */
.btn-forfait {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--noir);
    color: var(--or);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--or);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}

.btn-forfait:hover {
    background: var(--or);
    color: var(--noir);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(197, 160, 89, 0.6);
}

/* Forfaits Legal Notice */
.forfaits-legal-notice {
    margin-top: 3rem;
    padding: 1rem;
    text-align: center;
    color: var(--gris-clair);
    font-size: 0.95rem;
    font-style: italic;
}

/* L'Expérience à Bord Section */
.experience-section {
    margin-top: 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1) 0%, rgba(26, 26, 26, 0.8) 100%);
    border-radius: 15px;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.experience-title {
    text-align: center;
    font-size: 2rem;
    color: var(--or);
    margin-bottom: 3rem;
    font-weight: 600;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.experience-item {
    text-align: center;
    padding: 1.5rem;
}

.experience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(100%) brightness(1.5);
}

.experience-item h4 {
    color: var(--or);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.experience-item p {
    color: var(--gris-clair);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Supplements Section */
.supplements-section {
    padding: 5rem 2rem;
    background-color: var(--noir);
}

.supplements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.supplement-item {
    background: rgba(26, 26, 26, 0.6);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.supplement-item h4 {
    font-size: 1.2rem;
    color: var(--or);
    margin-bottom: 0.5rem;
}

.supplement-item p {
    color: var(--blanc-casse);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 5rem 2rem;
    background-color: var(--noir);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info-box,
.contact-form-box {
    background: rgba(26, 26, 26, 0.6);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.contact-info-box h2,
.contact-form-box h2 {
    color: var(--or);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-detail-item .icon {
    font-size: 2rem;
}

.contact-detail-item h4 {
    color: var(--or);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-detail-item a {
    color: var(--blanc);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-detail-item a:hover {
    color: var(--or);
}

.contact-detail-item p {
    color: var(--gris-clair);
    margin: 0;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--or);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: rgba(10, 10, 10, 0.5);
    color: var(--blanc-casse);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--or);
}

/* Rendre les icônes de calendrier et horloge visibles en blanc */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator,
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(1.2);
    cursor: pointer;
}

/* Géolocalisation dans le formulaire */
.input-with-geolocation {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.input-with-geolocation input {
    flex: 1;
}

.btn-geolocation {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.btn-geolocation:hover {
    transform: translateY(-50%) scale(1.2);
    filter: brightness(1.3);
}

.btn-geolocation:active {
    transform: translateY(-50%) scale(0.95);
}

.geolocation-loader {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(197, 160, 89, 0.3);
    border-top-color: var(--or);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.geolocation-message {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--or);
    font-style: italic;
}

.geolocation-message.error {
    color: #ff6464;
}

.geolocation-message.success {
    color: #00b67a;
}

.form-note {
    color: var(--gris-clair);
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: center;
}

/* Horaires Section */
.horaires-section {
    padding: 4rem 2rem;
    background-color: var(--noir-leger);
    text-align: center;
}

.horaires-content {
    max-width: 700px;
    margin: 2rem auto 0;
}

.horaires-main {
    font-size: 1.5rem;
    color: var(--or);
    margin-bottom: 1rem;
}

.horaires-content p {
    color: var(--gris-clair);
    line-height: 1.8;
}

/* Legal Content */
.legal-content {
    padding: 5rem 2rem;
    background-color: var(--noir);
}

.legal-section {
    background: rgba(26, 26, 26, 0.6);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--or);
}

.legal-section h2 {
    color: var(--or);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.legal-section h3 {
    color: var(--blanc);
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section p {
    color: var(--blanc-casse);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    color: var(--gris-clair);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-section a {
    color: var(--or);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--or-clair);
}

.legal-footer {
    text-align: center;
    padding: 2rem;
    color: var(--gris-clair);
    font-style: italic;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .forfaits-grid {
        grid-template-columns: 1fr;
    }
    
    .forfait-card.featured {
        transform: scale(1);
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .experience-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-right {
        gap: 1rem;
    }
    
    .language-selector {
        order: -1;
    }
    
    .nav-phone {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        letter-spacing: 0.5px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .services-grid,
    .tarifs-cards,
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .hero-section {
        background-attachment: scroll;
    }
    
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
        letter-spacing: 0.5px;
    }
    
    .contact-info-box,
    .contact-form-box {
        padding: 2rem 1.5rem;
    }
    
    .service-detail {
        padding: 2rem 1.5rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

/* Thank You Page */
.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 5rem;
    background: linear-gradient(135deg, var(--noir) 0%, var(--noir-leger) 100%);
}

.thank-you-content {
    max-width: 700px;
    text-align: center;
    background: rgba(26, 26, 26, 0.6);
    padding: 4rem 3rem;
    border-radius: 15px;
    border: 2px solid var(--or);
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--or);
    color: var(--noir);
    font-size: 4rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-content h1 {
    font-size: 2.5rem;
    color: var(--blanc);
    margin-bottom: 1.5rem;
}

.thank-you-message {
    font-size: 1.3rem;
    color: var(--or);
    margin-bottom: 1rem;
    font-weight: 600;
}

.thank-you-info {
    font-size: 1.1rem;
    color: var(--blanc-casse);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-urgence {
    background: rgba(10, 10, 10, 0.5);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.contact-urgence h3 {
    color: var(--or);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-urgence p {
    color: var(--gris-clair);
    margin-bottom: 1.5rem;
}

.urgence-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Trustpilot Review CTA on Thank You Page */
.trustpilot-review-cta {
    background: linear-gradient(135deg, rgba(0, 182, 122, 0.1), rgba(0, 81, 40, 0.1));
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 2px solid rgba(0, 182, 122, 0.3);
    text-align: center;
}

.trustpilot-review-cta h3 {
    color: var(--blanc);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.trustpilot-review-cta p {
    color: var(--blanc-casse);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.trustpilot-review-cta .btn-trustpilot {
    margin-top: 0.5rem;
}

.redirect-info {
    color: var(--gris-clair);
    font-size: 0.9rem;
    margin-top: 2rem;
    font-style: italic;
}

.link-home {
    display: inline-block;
    margin-top: 1rem;
    color: var(--or);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-home:hover {
    color: var(--or-clair);
}

/* Estimateur de Prix */
.estimateur-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--noir) 0%, var(--noir-leger) 100%);
}

.estimateur-box {
    max-width: 800px;
    margin: 3rem auto 0;
    background: rgba(26, 26, 26, 0.8);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid var(--or);
}

.estimateur-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.estimateur-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(0, 212, 255, 0.3);
    background: rgba(10, 10, 10, 0.5);
    color: var(--blanc-casse);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.estimateur-select:focus {
    outline: none;
    border-color: var(--or);
}

.estimateur-select option {
    background: var(--noir-leger);
    color: var(--blanc-casse);
    padding: 0.5rem;
}

#calculer-btn {
    margin-top: 1rem;
    width: 100%;
}

/* Résultat de l'estimateur */
.resultat-box {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    border: 2px solid var(--or);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.resultat-content h3 {
    color: var(--or);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.trajet-info {
    margin-bottom: 1.5rem;
}

.trajet-info p {
    color: var(--blanc-casse);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.trajet-info strong {
    color: var(--or);
}

.prix-final {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 10px;
    margin: 1.5rem 0;
}

.prix-label {
    font-size: 1.3rem;
    color: var(--blanc-casse);
    font-weight: 600;
}

.prix-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--or);
}

.resultat-note {
    text-align: center;
    color: var(--gris-clair);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.resultat-box .btn-primary {
    width: 100%;
}

/* Erreur de l'estimateur */
.erreur-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 100, 100, 0.1);
    border: 2px solid rgba(255, 100, 100, 0.5);
    border-radius: 10px;
    text-align: center;
    animation: shake 0.5s ease-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.erreur-box p {
    color: #ff6464;
    font-weight: 600;
    margin: 0;
}

/* Responsive Estimateur */
@media (max-width: 768px) {
    .estimateur-box {
        padding: 2rem 1.5rem;
    }

    .prix-value {
        font-size: 2.5rem;
    }

    .prix-label {
        font-size: 1.1rem;
    }
}

/* ========================================
   SECTION TÉMOIGNAGES / AVIS CLIENTS
   ======================================== */

.testimonials-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--noir-leger) 0%, var(--noir) 100%);
    position: relative;
}

.testimonials-section .section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gris-clair);
    margin-bottom: 4rem;
}

/* Grille des témoignages */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

/* Carte de témoignage - Design flottant */
.testimonial-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Effet de soulèvement au survol */
.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    border-color: var(--or);
}

/* Effet de brillance au survol */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(0, 212, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.testimonial-card:hover::before {
    opacity: 1;
    left: 100%;
}

/* Header du témoignage */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Avatar avec initiales */
.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--or) 0%, var(--or-clair) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--noir);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
    flex-shrink: 0;
}

/* Informations auteur */
.testimonial-author h4 {
    color: var(--blanc);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.testimonial-role {
    color: var(--or);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

/* Étoiles dorées */
.testimonial-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars .star {
    color: var(--or);
    font-size: 1.3rem;
    text-shadow: 0 2px 5px rgba(0, 212, 255, 0.3);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-stars .star {
    transform: scale(1.1);
}

/* Animation des étoiles au survol */
.testimonial-card:hover .testimonial-stars .star:nth-child(1) {
    animation: starPulse 0.6s ease 0s;
}
.testimonial-card:hover .testimonial-stars .star:nth-child(2) {
    animation: starPulse 0.6s ease 0.1s;
}
.testimonial-card:hover .testimonial-stars .star:nth-child(3) {
    animation: starPulse 0.6s ease 0.2s;
}
.testimonial-card:hover .testimonial-stars .star:nth-child(4) {
    animation: starPulse 0.6s ease 0.3s;
}
.testimonial-card:hover .testimonial-stars .star:nth-child(5) {
    animation: starPulse 0.6s ease 0.4s;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Texte du témoignage */
.testimonial-text {
    color: var(--blanc-casse);
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

/* Guillemets décoratifs */
.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--or);
    opacity: 0.3;
    font-family: Georgia, serif;
}

/* Footer du témoignage */
.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    font-size: 0.9rem;
}

.testimonial-location {
    color: var(--or);
    font-weight: 500;
}

.testimonial-date {
    color: var(--gris-clair);
    font-style: italic;
}

/* CTA Section des témoignages */
.testimonials-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(0, 212, 255, 0.2);
}

.testimonials-note {
    color: var(--blanc-casse);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.testimonials-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-trustpilot {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00b67a, #005128);
    color: var(--blanc);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #00b67a;
    box-shadow: 0 4px 15px rgba(0, 182, 122, 0.3);
}

.btn-trustpilot:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 182, 122, 0.5);
    background: linear-gradient(135deg, #00d48a, #00b67a);
}

@media (max-width: 768px) {
    .testimonials-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-trustpilot {
        width: 100%;
        max-width: 300px;
    }
}

/* Animation d'apparition au scroll */
.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Responsive Témoignages */
@media (max-width: 968px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-header {
        gap: 1rem;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .testimonial-author h4 {
        font-size: 1.1rem;
    }

    .testimonial-stars .star {
        font-size: 1.1rem;
    }

    .testimonial-footer {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .testimonial-text {
        font-size: 0.95rem;
        padding-left: 1rem;
    }

    .testimonial-text::before {
        font-size: 2.5rem;
    }
}

/* ========================================
   SYSTÈME DE PAIEMENT STRIPE
   ======================================== */

/* Option de paiement dans le formulaire */
/* Informations sur les moyens de paiement acceptés */
.payment-methods-info {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.payment-methods-title {
    color: var(--cyan);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    width: 100%;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
}

.payment-logo {
    color: var(--blanc-casse);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.payment-brands {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    width: 100%;
}

.brand-logo {
    height: 28px;
    width: auto;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: none;
}

.brand-logo:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.payment-secure {
    color: var(--gris-clair);
    font-size: 0.9rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .payment-logos {
        flex-direction: column;
        gap: 1rem;
    }
    
    .payment-brands {
        gap: 1rem;
    }
    
    .brand-logo {
        height: 24px;
    }
}

/* Actions dans le résultat de l'estimateur */
.resultat-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.resultat-actions .btn-secondary {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.resultat-actions .btn-payment-inline {
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

/* Badge Stripe sécurisé */
.stripe-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 91, 255, 0.1);
    border: 1px solid rgba(99, 91, 255, 0.3);
    border-radius: 20px;
    color: #635BFF;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Responsive Paiement */
@media (max-width: 768px) {
    .btn-payment {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        max-width: 100%;
    }

    .resultat-actions {
        flex-direction: column;
    }

    .resultat-actions .btn-secondary,
    .resultat-actions .btn-payment-inline {
        width: 100%;
        min-width: auto;
    }

    .payment-methods {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .btn-payment {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .payment-icon {
        font-size: 1.2rem;
    }
}


/* ========================================
   BANNIÈRE COOKIES RGPD
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    border-top: 2px solid var(--or);
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    color: var(--blanc-casse);
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--or);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-decline {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-cookie-accept {
    background: var(--or);
    color: var(--noir);
}

.btn-cookie-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.btn-cookie-decline {
    background: transparent;
    color: var(--blanc-casse);
    border: 2px solid var(--gris);
}

.btn-cookie-decline:hover {
    border-color: var(--or);
    color: var(--or);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-cookie-accept,
    .btn-cookie-decline {
        width: 100%;
    }
}

/* ========================================
   PAIEMENT STRIPE
   ======================================== */

.payment-option {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.payment-divider {
    text-align: center;
    position: relative;
    margin: 2rem 0;
}

.payment-divider span {
    background: rgba(26, 26, 26, 0.6);
    padding: 0 1rem;
    color: var(--gris-clair);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.payment-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 212, 255, 0.2);
}

.payment-text {
    text-align: center;
    color: var(--blanc-casse);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.btn-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #635BFF 0%, #7C3AED 100%);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(99, 91, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    flex-direction: column;
}

.btn-payment:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 91, 255, 0.6);
}

.payment-icon {
    font-size: 1.3rem;
}

.payment-methods {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0;
    text-transform: none;
}

.payment-secure {
    text-align: center;
    color: var(--gris-clair);
    font-size: 0.85rem;
    margin-top: 1rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .btn-payment {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}


/* ========================================
   WIDGET TRUSTPILOT
   ======================================== */

.trustpilot-widget-container {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 20px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    text-align: center;
}

.trustpilot-intro {
    margin-bottom: 2rem;
}

.trustpilot-intro h3 {
    color: var(--or);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.trustpilot-intro p {
    color: var(--gris-clair);
    font-size: 1rem;
}

.trustpilot-widget {
    margin: 2rem auto;
    max-width: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trustpilot-widget a {
    color: var(--or);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.trustpilot-widget a:hover {
    color: var(--or-clair);
}

@media (max-width: 768px) {
    .trustpilot-widget-container {
        padding: 2rem 1.5rem;
    }
    
    .trustpilot-intro h3 {
        font-size: 1.5rem;
    }
}


/* ========================================
   CONSENTEMENT RGPD - FORMULAIRE
   ======================================== */

.rgpd-consent {
    margin: 2rem 0 1.5rem 0;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 10px;
    border: 2px solid rgba(0, 212, 255, 0.2);
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: rgba(10, 10, 10, 0.5);
    border: 2px solid var(--or);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-container:hover .checkmark {
    background-color: rgba(0, 212, 255, 0.1);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--or);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid var(--noir);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    color: var(--blanc-casse);
    font-size: 0.95rem;
    line-height: 1.6;
}

.checkbox-label a {
    color: var(--or);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: var(--or-clair);
}

.rgpd-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 10px;
    border-left: 4px solid var(--or);
}

.rgpd-info p {
    color: var(--gris-clair);
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 0;
}

.rgpd-info strong {
    color: var(--or);
}

.rgpd-info a {
    color: var(--or);
    text-decoration: underline;
}

.rgpd-info a:hover {
    color: var(--or-clair);
}

/* ========================================
   BANNIÈRE COOKIES AMÉLIORÉE
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    padding: 2rem;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    border-top: 3px solid var(--or);
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.5s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-title {
    color: var(--or);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cookie-content p {
    color: var(--blanc-casse);
    margin: 0;
    line-height: 1.6;
}

.cookie-link {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gris-clair);
}

.cookie-link a {
    color: var(--or);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cookie-accept,
.btn-cookie-customize,
.btn-cookie-decline {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.btn-cookie-accept {
    background: var(--or);
    color: var(--noir);
}

.btn-cookie-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.btn-cookie-customize {
    background: transparent;
    color: var(--or);
    border: 2px solid var(--or);
}

.btn-cookie-customize:hover {
    background: var(--or);
    color: var(--noir);
}

.btn-cookie-decline {
    background: transparent;
    color: var(--blanc-casse);
    border: 2px solid var(--gris);
}

.btn-cookie-decline:hover {
    border-color: var(--or);
    color: var(--or);
}

/* Modal de Personnalisation */
.cookie-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background: var(--noir-leger);
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    border: 2px solid var(--or);
    animation: slideDown 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-modal-content h3 {
    color: var(--or);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cookie-modal-content > p {
    color: var(--blanc-casse);
    margin-bottom: 2rem;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gris);
    transition: 0.4s;
    border-radius: 34px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
    background-color: var(--or);
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

.cookie-switch input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-option-text {
    flex: 1;
}

.cookie-option-text strong {
    color: var(--or);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.cookie-option-text p {
    color: var(--gris-clair);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cookie-modal-buttons button {
    flex: 1;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-cookie-accept,
    .btn-cookie-customize,
    .btn-cookie-decline {
        width: 100%;
    }
    
    .cookie-modal-content {
        padding: 2rem 1.5rem;
    }
    
    .cookie-option {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cookie-modal-buttons {
        flex-direction: column;
    }
}


/* ========================================
   CHECKBOX RGPD PERSONNALISÉE
   ======================================== */

.rgpd-consent {
    margin: 2rem 0 1.5rem 0;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--or);
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
    user-select: none;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: rgba(10, 10, 10, 0.5);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.checkbox-container:hover .checkmark {
    border-color: var(--or);
    background-color: rgba(0, 212, 255, 0.1);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--or);
    border-color: var(--or);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid var(--noir);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    color: var(--blanc-casse);
    font-size: 0.95rem;
    line-height: 1.6;
}

.checkbox-label a {
    color: var(--or);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: var(--or-clair);
}

/* Message d'erreur pour checkbox non cochée */
.rgpd-consent.error {
    border-left-color: #ff6464;
    background: rgba(255, 100, 100, 0.05);
    animation: shake 0.5s;
}

.rgpd-consent.error .checkmark {
    border-color: #ff6464;
}

/* Animation de secousse pour attirer l'attention */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Styles pour les boutons désactivés */
button[type="submit"]:disabled,
.btn-payment[disabled] {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    filter: grayscale(50%);
}

button[type="submit"]:disabled:hover,
.btn-payment[disabled]:hover {
    transform: none !important;
    box-shadow: none !important;
}

@media (max-width: 768px) {
    .checkbox-container {
        padding-left: 30px;
    }
    
    .checkmark {
        height: 20px;
        width: 20px;
    }
    
    .checkbox-container .checkmark:after {
        left: 6px;
        top: 2px;
        width: 5px;
        height: 10px;
        border-width: 0 2px 2px 0;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
    }
}


/* ========================================
   TABLEAU LÉGAL (Politique de Confidentialité)
   ======================================== */

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 10px;
    overflow: hidden;
}

.legal-table thead {
    background: var(--or);
    color: var(--noir);
}

.legal-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.legal-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    color: var(--blanc-casse);
}

.legal-table tbody tr:last-child td {
    border-bottom: none;
}

.legal-table tbody tr:hover {
    background: rgba(0, 212, 255, 0.05);
}

/* Contact Info Legal */
.contact-info-legal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 15px;
    border-left: 4px solid var(--or);
}

.contact-legal-item {
    color: var(--blanc-casse);
}

.contact-legal-item strong {
    display: block;
    color: var(--or);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-legal-item a {
    color: var(--blanc);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-legal-item a:hover {
    color: var(--or);
}

@media (max-width: 768px) {
    .legal-table {
        font-size: 0.9rem;
    }
    
    .legal-table th,
    .legal-table td {
        padding: 0.75rem;
    }
    
    .contact-info-legal {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
}


/* ========================================
   PAGE FAQ - ACCORDÉON PREMIUM
   ======================================== */

.faq-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--noir) 0%, var(--noir-leger) 100%);
}

.faq-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

/* Accordéon FAQ */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--or);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.faq-item.active {
    border-color: var(--or);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}

/* Question (Bouton) */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(0, 212, 255, 0.05);
}

.faq-item.active .faq-question {
    background: rgba(0, 212, 255, 0.1);
}

.faq-icon {
    font-size: 2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: scale(1.1);
}

.faq-question-text {
    flex: 1;
    color: var(--blanc);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-toggle {
    background: rgba(0, 212, 255, 0.2);
}

.faq-item.active .faq-toggle {
    background: var(--or);
    transform: rotate(180deg);
}

.faq-arrow {
    color: var(--or);
    transition: all 0.3s ease;
}

.faq-item.active .faq-arrow {
    color: var(--noir);
}

/* Réponse (Contenu) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 2rem 2rem 5.5rem;
    color: var(--blanc-casse);
    line-height: 1.8;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer-content p {
    margin-bottom: 1rem;
}

.faq-answer-content strong {
    color: var(--or);
    font-weight: 600;
}

.faq-answer-content ul {
    list-style: none;
    margin: 1rem 0;
    padding-left: 0;
}

.faq-answer-content ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--blanc-casse);
}

.faq-answer-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--or);
    border-radius: 50%;
}

.faq-answer-content a {
    color: var(--or);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.faq-answer-content a:hover {
    color: var(--or-clair);
}

/* Notes et Highlights */
.faq-note {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border-left: 4px solid var(--or);
    border-radius: 8px;
    font-size: 0.95rem;
}

.faq-highlight {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-left: 4px solid var(--or);
    border-radius: 8px;
    font-size: 0.95rem;
}

/* Section CTA */
.faq-cta-section {
    padding: 5rem 2rem;
    background: var(--noir-leger);
}

.faq-cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    border: 2px solid var(--or);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
}

.faq-cta-box h2 {
    font-size: 2.5rem;
    color: var(--blanc);
    margin-bottom: 1rem;
}

.faq-cta-box > p {
    font-size: 1.1rem;
    color: var(--gris-clair);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.faq-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.faq-cta-note {
    font-size: 0.9rem;
    color: var(--gris-clair);
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1rem;
    }
    
    .faq-intro {
        margin-bottom: 3rem;
    }
    
    .faq-accordion {
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
        gap: 1rem;
    }
    
    .faq-icon {
        font-size: 1.5rem;
    }
    
    .faq-question-text {
        font-size: 1rem;
    }
    
    .faq-toggle {
        width: 28px;
        height: 28px;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .faq-note,
    .faq-highlight {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .faq-cta-section {
        padding: 3rem 1rem;
    }
    
    .faq-cta-box {
        padding: 2.5rem 1.5rem;
    }
    
    .faq-cta-box h2 {
        font-size: 2rem;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .faq-cta-buttons .btn-primary,
    .faq-cta-buttons .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .faq-icon {
        font-size: 1.3rem;
    }
    
    .faq-question-text {
        font-size: 0.95rem;
    }
    
    .faq-answer-content {
        padding: 0 1rem 1rem 1rem;
    }
}


/* ========================================
   PAGE DE SUIVI EN TEMPS RÉEL
   ======================================== */

.tracking-page {
    background: var(--noir);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header de suivi */
.tracking-header {
    background: linear-gradient(135deg, var(--noir) 0%, var(--noir-leger) 100%);
    padding: 1rem 0;
    border-bottom: 2px solid var(--or);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.tracking-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tracking-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--blanc);
}

.tracking-logo .vtc-text {
    color: var(--or);
}

.tracking-status {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--or);
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--or);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--or);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.status-text {
    color: var(--or);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Bandeau d'information */
.tracking-info-banner {
    background: var(--noir-leger);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.info-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 212, 255, 0.3));
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.85rem;
    color: var(--gris-clair);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--or);
}

.btn-call-driver {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--or) 0%, var(--or-clair) 100%);
    color: var(--noir);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-call-driver:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

.call-icon {
    font-size: 1.2rem;
}

.call-text {
    font-size: 1rem;
}

/* Conteneur de la carte */
.tracking-map-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: var(--noir);
}

.map-iframe-wrapper {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 212, 255, 0.3);
    position: relative;
}

.tracking-iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: opacity 0.5s ease;
}

/* Placeholder de chargement */
.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--noir-leger) 0%, var(--noir) 100%);
    transition: opacity 0.3s ease;
}

.placeholder-content {
    text-align: center;
    padding: 2rem;
}

.placeholder-icon {
    color: var(--or);
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.placeholder-icon.error {
    font-size: 4rem;
    animation: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.placeholder-content h2 {
    color: var(--blanc);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.placeholder-content p {
    color: var(--gris-clair);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 212, 255, 0.2);
    border-top-color: var(--or);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto 0;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Instructions */
.tracking-instructions {
    background: var(--noir-leger);
    padding: 2rem;
    margin: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.instructions-content {
    max-width: 800px;
    margin: 0 auto;
}

.instructions-content h3 {
    color: var(--or);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.instructions-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.instructions-content ul li {
    color: var(--blanc-casse);
    font-size: 1.1rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.privacy-note {
    background: rgba(0, 212, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--or);
    color: var(--blanc-casse);
    font-size: 0.95rem;
}

/* Footer de suivi */
.tracking-footer {
    background: var(--noir-leger);
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    margin-top: auto;
}

.tracking-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.tracking-footer p {
    color: var(--gris-clair);
    margin-bottom: 1rem;
}

.tracking-footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.tracking-footer .footer-links a {
    color: var(--or);
    text-decoration: none;
    transition: color 0.3s ease;
}

.tracking-footer .footer-links a:hover {
    color: var(--or-clair);
}

/* Responsive */
@media (max-width: 768px) {
    .tracking-header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .info-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .info-item {
        justify-content: center;
    }

    .btn-call-driver {
        width: 100%;
        justify-content: center;
    }

    .tracking-map-container {
        padding: 1rem;
    }

    .map-iframe-wrapper {
        height: 60vh;
        min-height: 400px;
    }

    .tracking-instructions {
        margin: 1rem;
        padding: 1.5rem;
    }

    .instructions-content h3 {
        font-size: 1.3rem;
    }

    .instructions-content ul li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .tracking-logo .logo-text {
        font-size: 1.5rem;
    }

    .info-value {
        font-size: 1rem;
    }

    .map-iframe-wrapper {
        height: 50vh;
        min-height: 350px;
    }
}

/* ========================================
   PAGE DE DÉMONSTRATION - SUIVI TEMPS RÉEL
   ======================================== */

.demo-section {
    padding: 5rem 2rem;
    background-color: var(--noir);
}

.demo-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.demo-intro h2 {
    font-size: 2rem;
    color: var(--blanc);
    margin-bottom: 1rem;
}

.demo-intro p {
    font-size: 1.1rem;
    color: var(--gris-clair);
    line-height: 1.8;
}

/* Générateur de lien */
.demo-generator {
    background: rgba(26, 26, 26, 0.8);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    max-width: 900px;
    margin: 0 auto 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.demo-generator h3 {
    font-size: 1.8rem;
    color: var(--or);
    margin-bottom: 2rem;
    text-align: center;
}

.demo-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(0, 212, 255, 0.3);
    background: rgba(10, 10, 10, 0.5);
    color: var(--blanc-casse);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.demo-input:focus {
    outline: none;
    border-color: var(--or);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.demo-input::placeholder {
    color: var(--gris);
}

.input-note {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--gris-clair);
    font-style: italic;
}

/* Résultat */
.result-box {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--or);
    border-radius: 15px;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-box h4 {
    font-size: 1.4rem;
    color: var(--or);
    margin-bottom: 1.5rem;
    text-align: center;
}

.result-url-box {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.result-url {
    flex: 1;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.7);
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 10px;
    color: var(--blanc-casse);
    font-size: 0.95rem;
    font-family: 'Courier New', monospace;
}

.btn-copy {
    padding: 1rem 1.5rem;
    background: var(--or);
    color: var(--noir);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-copy:hover {
    background: var(--or-clair);
    transform: scale(1.05);
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Modèle SMS */
.sms-template {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.6);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    animation: slideDown 0.4s ease;
}

.sms-template h4 {
    font-size: 1.3rem;
    color: var(--or);
    margin-bottom: 1rem;
    text-align: center;
}

.sms-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sms-textarea {
    width: 100%;
    min-height: 150px;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.7);
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 10px;
    color: var(--blanc-casse);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    resize: vertical;
}

/* Exemples prédéfinis */
.demo-examples {
    max-width: 1100px;
    margin: 0 auto 4rem;
}

.demo-examples h3 {
    font-size: 1.8rem;
    color: var(--blanc);
    margin-bottom: 2rem;
    text-align: center;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.example-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.example-card:hover {
    transform: translateY(-10px);
    border-color: var(--or);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.example-card h4 {
    font-size: 1.3rem;
    color: var(--or);
    margin-bottom: 1rem;
}

.example-card p {
    color: var(--blanc-casse);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.example-card strong {
    color: var(--or);
}

.example-card .btn-small {
    margin-top: 1rem;
}

/* Instructions */
.demo-instructions {
    max-width: 1000px;
    margin: 0 auto 4rem;
    background: rgba(26, 26, 26, 0.6);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 212, 255, 0.2);
}

.demo-instructions h3 {
    font-size: 1.8rem;
    color: var(--blanc);
    margin-bottom: 2rem;
    text-align: center;
}

.instructions-steps {
    display: grid;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--or) 0%, var(--or-clair) 100%);
    color: var(--noir);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.step-content h4 {
    font-size: 1.2rem;
    color: var(--or);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--blanc-casse);
    line-height: 1.7;
    font-size: 1rem;
}

/* Notes importantes */
.demo-notes {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 193, 7, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 193, 7, 0.3);
}

.demo-notes h3 {
    font-size: 1.6rem;
    color: #FFC107;
    margin-bottom: 1.5rem;
    text-align: center;
}

.demo-notes ul {
    list-style: none;
    padding: 0;
}

.demo-notes li {
    color: var(--blanc-casse);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
    font-size: 1rem;
}

.demo-notes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 6px;
    height: 6px;
    background: #FFC107;
    border-radius: 50%;
}

.demo-notes strong {
    color: #FFC107;
    font-weight: 600;
}

/* Responsive - Page de démonstration */
@media (max-width: 768px) {
    .demo-section {
        padding: 3rem 1rem;
    }

    .demo-generator {
        padding: 2rem 1.5rem;
    }

    .demo-generator h3 {
        font-size: 1.5rem;
    }

    .result-url-box {
        flex-direction: column;
    }

    .result-actions {
        flex-direction: column;
    }

    .result-actions .btn-secondary {
        width: 100%;
    }

    .examples-grid {
        grid-template-columns: 1fr;
    }

    .demo-instructions {
        padding: 2rem 1.5rem;
    }

    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .demo-notes {
        padding: 2rem 1.5rem;
    }

    .demo-notes li {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .demo-intro h2 {
        font-size: 1.6rem;
    }

    .demo-intro p {
        font-size: 1rem;
    }

    .demo-generator h3 {
        font-size: 1.3rem;
    }

    .demo-input {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .result-box {
        padding: 1.5rem;
    }

    .result-url {
        font-size: 0.85rem;
    }

    .btn-copy {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .example-card {
        padding: 1.5rem;
    }

    .example-card h4 {
        font-size: 1.1rem;
    }

    .demo-instructions h3 {
        font-size: 1.5rem;
    }

    .step-content h4 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    .demo-notes h3 {
        font-size: 1.4rem;
    }

    .demo-notes li {
        font-size: 0.95rem;
    }
}

/* ========================================
   GESTIONNAIRE DE SUIVI - INTERFACE CHAUFFEUR
   ======================================== */

.manager-section {
    padding: 3rem 2rem;
    background-color: var(--noir);
    min-height: 100vh;
}

.nav-status {
    color: var(--or);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Cards */
.manager-card {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.step-badge {
    background: linear-gradient(135deg, var(--or) 0%, var(--or-clair) 100%);
    color: var(--noir);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-header h2 {
    color: var(--blanc);
    font-size: 1.8rem;
    margin: 0;
}

.card-content {
    color: var(--blanc-casse);
}

/* Instructions */
.instruction-box {
    background: rgba(0, 212, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--or);
    margin-bottom: 1.5rem;
}

.instruction-box h3 {
    color: var(--or);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.instruction-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.instruction-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.instruction-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--or);
    color: var(--noir);
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.quick-links {
    margin-top: 1.5rem;
}

.quick-links h4 {
    color: var(--or);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

/* Formulaire */
.tracking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(0, 212, 255, 0.3);
    background: rgba(10, 10, 10, 0.5);
    color: var(--blanc-casse);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--or);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.form-input::placeholder {
    color: var(--gris);
}

.label-icon {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.input-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--gris-clair);
    font-style: italic;
}

.btn-full {
    width: 100%;
}

/* Section Résultat */
.result-section {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--or);
    border-radius: 15px;
    animation: slideDown 0.4s ease;
}

.result-success {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 10px;
}

.success-icon {
    font-size: 2rem;
}

.result-success h3 {
    color: #4CAF50;
    margin: 0;
    font-size: 1.3rem;
}

.result-url-container {
    margin-bottom: 1.5rem;
}

.result-url-container label {
    display: block;
    color: var(--or);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.url-display {
    display: flex;
    gap: 0.5rem;
}

.url-input {
    flex: 1;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.7);
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 10px;
    color: var(--blanc-casse);
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

.btn-copy-url {
    padding: 1rem 1.5rem;
    background: var(--or);
    color: var(--noir);
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-copy-url:hover {
    background: var(--or-clair);
    transform: scale(1.05);
}

/* Options d'envoi */
.send-option {
    background: rgba(10, 10, 10, 0.3);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 2px solid rgba(0, 212, 255, 0.2);
}

.option-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.option-header h3 {
    color: var(--blanc);
    font-size: 1.3rem;
    margin: 0;
}

.badge-recommended {
    background: #4CAF50;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-pro {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.send-option p {
    color: var(--gris-clair);
    margin-bottom: 1.5rem;
}

/* Aperçu SMS */
.sms-preview {
    margin: 1.5rem 0;
}

.sms-preview h4 {
    color: var(--or);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.sms-bubble {
    background: rgba(0, 212, 255, 0.15);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--or);
    max-width: 500px;
}

.sms-bubble p {
    color: var(--blanc-casse);
    line-height: 1.7;
    white-space: pre-line;
    margin: 0;
    font-size: 0.95rem;
}

.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Option avancée */
.advanced-option {
    border-color: rgba(255, 107, 107, 0.3);
}

.api-config {
    margin-top: 1rem;
}

.alert-info {
    background: rgba(33, 150, 243, 0.1);
    border: 2px solid rgba(33, 150, 243, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.alert-info strong {
    color: #2196F3;
    display: block;
    margin-bottom: 0.5rem;
}

.alert-info p {
    color: var(--blanc-casse);
    margin: 0.5rem 0;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.alert-warning strong {
    color: #FFC107;
    display: block;
    margin-bottom: 0.5rem;
}

.alert-warning p {
    color: var(--blanc-casse);
    margin: 0.5rem 0;
}

/* Historique */
.history-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--gris-clair);
}

.empty-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.empty-state p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.empty-state small {
    font-size: 0.9rem;
    color: var(--gris);
}

.history-item {
    background: rgba(10, 10, 10, 0.5);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.history-item:hover {
    border-color: var(--or);
    transform: translateX(5px);
}

.history-item.expired {
    opacity: 0.6;
    border-color: rgba(255, 255, 255, 0.1);
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.history-client strong {
    color: var(--blanc);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.history-phone {
    color: var(--gris-clair);
    font-size: 0.9rem;
}

.status-badge {
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-badge.generated {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
}

.status-badge.sent {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.history-details {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gris-clair);
}

.history-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Section Configuration API */
.api-setup-section {
    padding: 5rem 2rem;
    background-color: var(--noir-leger);
}

.api-setup-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--blanc);
    margin-bottom: 3rem;
}

.api-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.api-provider {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.api-provider h3 {
    color: var(--or);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.api-provider p {
    color: var(--gris-clair);
    margin-bottom: 1rem;
}

.api-provider ol {
    color: var(--blanc-casse);
    line-height: 1.8;
    padding-left: 1.5rem;
}

.api-provider ol li {
    margin-bottom: 0.8rem;
}

.api-provider code {
    background: rgba(0, 212, 255, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: var(--or);
}

/* Responsive - Gestionnaire */
@media (max-width: 768px) {
    .manager-section {
        padding: 2rem 1rem;
    }

    .manager-card {
        padding: 1.5rem;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-header h2 {
        font-size: 1.5rem;
    }

    .instruction-box {
        padding: 1.5rem;
    }

    .url-display {
        flex-direction: column;
    }

    .button-group {
        flex-direction: column;
    }

    .button-group .btn-primary,
    .button-group .btn-secondary {
        width: 100%;
    }

    .history-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .history-details {
        flex-direction: column;
        gap: 0.5rem;
    }

    .api-guide {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .step-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .card-header h2 {
        font-size: 1.3rem;
    }

    .form-input {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .sms-bubble {
        padding: 1rem;
    }

    .sms-bubble p {
        font-size: 0.85rem;
    }

    .history-item {
        padding: 1rem;
    }

    .history-client strong {
        font-size: 1rem;
    }
}

/* Message d'attente sur la page de suivi */
.waiting-message {
    font-size: 1.1rem;
    color: var(--or);
    margin: 1.5rem 0;
    font-weight: 600;
}

.waiting-tips {
    background: rgba(0, 212, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--or);
    margin: 2rem 0;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.waiting-tips h4 {
    color: var(--or);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.waiting-tips ul {
    list-style: none;
    padding: 0;
}

.waiting-tips li {
    color: var(--blanc-casse);
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.6;
}

.placeholder-content .btn-primary {
    margin-top: 2rem;
    display: inline-block;
}

/* ========================================
   DASHBOARD CHAUFFEUR - ADMIN MMG
   ======================================== */

.dashboard-body {
    background: var(--noir);
    min-height: 100vh;
}

/* ========================================
   ÉCRAN DE CONNEXION
   ======================================== */

.login-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--noir) 0%, var(--noir-leger) 100%);
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.login-screen.active {
    opacity: 1;
}

.login-lock-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: lockPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

@keyframes lockPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.8));
    }
}

.login-container {
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.login-container.shake {
    animation: shake 0.5s ease;
}

.login-container.success {
    border-color: #4CAF50;
    box-shadow: 0 10px 40px rgba(76, 175, 80, 0.5);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
    20%, 40%, 60%, 80% { transform: translateX(10px); }
}

.login-logo {
    margin-bottom: 2rem;
    animation: fadeInDown 0.6s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-logo .logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blanc);
}

.login-logo .vtc-text {
    color: var(--or);
}

.login-screen h1 {
    color: var(--blanc);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.6s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-subtitle {
    color: var(--gris-clair);
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.login-error {
    background: rgba(255, 107, 107, 0.2);
    border: 2px solid #FF6B6B;
    color: #FF6B6B;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    animation: slideDown 0.3s ease;
}

.login-success {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4CAF50;
    color: #4CAF50;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    animation: fadeInUp 0.6s ease 0.5s both;
}

/* ========================================
   HEADER DASHBOARD
   ======================================== */

.dashboard-screen {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.dashboard-screen.active {
    opacity: 1;
    transform: translateY(0);
}

.dashboard-header {
    background: var(--noir-leger);
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInDown 0.5s ease;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-small {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blanc);
}

.logo-small .vtc-text {
    color: var(--or);
}

.header-status {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-logout {
    background: rgba(255, 107, 107, 0.2);
    color: #FF6B6B;
    border: 2px solid #FF6B6B;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: #FF6B6B;
    color: white;
}

/* ========================================
   STATS RAPIDES
   ======================================== */

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--or);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 212, 255, 0.3));
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--or);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gris-clair);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   ACTIONS RAPIDES
   ======================================== */

.quick-actions {
    padding: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    color: var(--blanc);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.action-btn {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--blanc-casse);
}

.action-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--or);
    transform: translateY(-5px);
}

.action-icon {
    font-size: 2rem;
}

.action-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

/* ========================================
   SECTION RÉSERVATIONS
   ======================================== */

.bookings-section {
    padding: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.3);
    color: var(--blanc-casse);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--or);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--or) 0%, var(--or-clair) 100%);
    border-color: var(--or);
    color: var(--noir);
}

.bookings-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ========================================
   CARTE RÉSERVATION
   ======================================== */

.booking-card {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.booking-card:hover {
    border-color: var(--or);
    transform: translateX(5px);
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.booking-client h3 {
    color: var(--blanc);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.booking-phone {
    color: var(--gris-clair);
    font-size: 0.9rem;
}

.booking-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
}

.status-confirmed {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.status-completed {
    background: rgba(33, 150, 243, 0.2);
    color: #2196F3;
}

.status-cancelled {
    background: rgba(255, 107, 107, 0.2);
    color: #FF6B6B;
}

.booking-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.detail-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.detail-text {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.8rem;
    color: var(--gris-clair);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 1rem;
    color: var(--blanc-casse);
    font-weight: 600;
}

.booking-actions {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.btn-action {
    flex: 1;
    min-width: 120px;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid;
}

.btn-call {
    background: rgba(76, 175, 80, 0.2);
    border-color: #4CAF50;
    color: #4CAF50;
}

.btn-call:hover {
    background: #4CAF50;
    color: white;
}

.btn-gps {
    background: rgba(33, 150, 243, 0.2);
    border-color: #2196F3;
    color: #2196F3;
}

.btn-gps:hover:not(:disabled) {
    background: #2196F3;
    color: white;
}

.btn-gps:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-details {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--or);
    color: var(--or);
}

.btn-details:hover {
    background: var(--or);
    color: var(--noir);
}

.booking-status-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.status-btn {
    flex: 1;
    min-width: 100px;
    padding: 0.6rem 0.8rem;
    background: rgba(26, 26, 26, 0.5);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    color: var(--blanc-casse);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.status-btn:hover {
    border-color: var(--or);
}

.status-btn.active {
    background: linear-gradient(135deg, var(--or) 0%, var(--or-clair) 100%);
    border-color: var(--or);
    color: var(--noir);
}

/* ========================================
   MODALS
   ======================================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--noir-leger);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.modal-header h3 {
    color: var(--blanc);
    font-size: 1.5rem;
    margin: 0;
}

.btn-close {
    background: rgba(255, 107, 107, 0.2);
    border: 2px solid #FF6B6B;
    color: #FF6B6B;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close:hover {
    background: #FF6B6B;
    color: white;
    transform: rotate(90deg);
}

.modal-form {
    padding: 1.5rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.modal-actions button {
    flex: 1;
    min-width: 120px;
}

/* Boutons spéciaux */
.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.btn-sms {
    background: #2196F3;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-sms:hover {
    background: #1976D2;
    transform: scale(1.05);
}

.btn-danger {
    background: rgba(255, 107, 107, 0.2);
    border: 2px solid #FF6B6B;
    color: #FF6B6B;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background: #FF6B6B;
    color: white;
}

/* Aperçu GPS */
.gps-preview {
    margin: 1.5rem 0;
}

.gps-preview h4 {
    color: var(--or);
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Détails de réservation */
.booking-details {
    padding: 1.5rem;
}

.detail-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.detail-section:last-child {
    border-bottom: none;
}

.detail-section h4 {
    color: var(--or);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.detail-section p {
    color: var(--blanc-casse);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.detail-section strong {
    color: var(--or);
    font-weight: 600;
}

.detail-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-actions button {
    width: 100%;
}

/* ========================================
   NOTIFICATIONS
   ======================================== */

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--noir-leger);
    border: 2px solid;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    z-index: 2000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    max-width: 300px;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-success {
    border-color: #4CAF50;
    color: #4CAF50;
}

.notification-info {
    border-color: #2196F3;
    color: #2196F3;
}

.notification-warning {
    border-color: #FFC107;
    color: #FFC107;
}

.notification-error {
    border-color: #FF6B6B;
    color: #FF6B6B;
}

/* ========================================
   RESPONSIVE - DASHBOARD
   ======================================== */

@media (max-width: 768px) {
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 1rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .action-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .filter-btn {
        flex: 1;
        min-width: 80px;
    }

    .booking-details-grid {
        grid-template-columns: 1fr;
    }

    .booking-actions {
        flex-direction: column;
    }

    .btn-action {
        width: 100%;
    }

    .booking-status-actions {
        flex-direction: column;
    }

    .status-btn {
        width: 100%;
    }

    .modal-content {
        max-height: 95vh;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions button {
        width: 100%;
    }

    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .login-container {
        padding: 2rem 1.5rem;
    }

    .login-logo .logo-text {
        font-size: 2rem;
    }

    .dashboard-header {
        padding: 0.8rem;
    }

    .logo-small {
        font-size: 1.2rem;
    }

    .header-status {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }

    .btn-logout {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .booking-card {
        padding: 1rem;
    }

    .booking-client h3 {
        font-size: 1.1rem;
    }

    .booking-status {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ========================================
   PWA - BANNIÈRE D'INSTALLATION
   ======================================== */

.pwa-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--noir-leger) 0%, var(--noir) 100%);
    border-top: 2px solid var(--or);
    padding: 1rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    transition: bottom 0.3s ease;
}

.pwa-banner.show {
    bottom: 0;
}

.pwa-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pwa-banner-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 212, 255, 0.5));
}

.pwa-banner-text {
    flex: 1;
    min-width: 200px;
}

.pwa-banner-text strong {
    color: var(--or);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.pwa-banner-text p {
    color: var(--blanc-casse);
    font-size: 0.9rem;
    margin: 0;
}

.pwa-banner-actions {
    display: flex;
    gap: 0.5rem;
}

.pwa-btn-install {
    background: linear-gradient(135deg, var(--or) 0%, var(--or-clair) 100%);
    color: var(--noir);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pwa-btn-install:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.5);
}

.pwa-btn-close {
    background: transparent;
    border: 2px solid var(--gris);
    color: var(--gris);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pwa-btn-close:hover {
    border-color: var(--or);
    color: var(--or);
}

/* Notification de mise à jour */
.pwa-update-notification {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--noir-leger);
    border: 2px solid var(--or);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: top 0.3s ease;
}

.pwa-update-notification.show {
    top: 20px;
}

.pwa-update-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pwa-update-icon {
    font-size: 1.5rem;
}

.pwa-update-text {
    color: var(--blanc-casse);
    font-weight: 600;
}

.pwa-btn-update {
    background: var(--or);
    color: var(--noir);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pwa-btn-update:hover {
    background: var(--or-clair);
}

/* Mode standalone (app installée) */
.pwa-standalone #navbar {
    padding-top: env(safe-area-inset-top);
}

/* ========================================
   PRÉFÉRENCES PASSAGER
   ======================================== */

.preferences-section {
    background: rgba(0, 212, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.preferences-section h3 {
    color: var(--or);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.preferences-section h3::before {
    content: '✨';
    font-size: 1.5rem;
}

.preferences-grid {
    display: grid;
    gap: 1.5rem;
}

.preference-group {
    background: rgba(26, 26, 26, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.preference-group h4 {
    color: var(--or);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.preference-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.preference-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.preference-option:hover {
    background: rgba(0, 212, 255, 0.1);
}

.preference-option input[type="radio"],
.preference-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--or);
}

.preference-option label {
    color: var(--blanc-casse);
    cursor: pointer;
    flex: 1;
    font-size: 1rem;
}

.preference-option .option-icon {
    font-size: 1.3rem;
}

/* Champ Spotify */
.spotify-input {
    margin-top: 0.8rem;
    display: none;
}

.spotify-input.show {
    display: block;
}

.spotify-input input {
    width: 100%;
    padding: 0.8rem;
    background: rgba(10, 10, 10, 0.7);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    color: var(--blanc-casse);
    font-size: 0.95rem;
}

.spotify-input input:focus {
    outline: none;
    border-color: var(--or);
}

.spotify-input small {
    display: block;
    margin-top: 0.5rem;
    color: var(--gris-clair);
    font-size: 0.85rem;
}

/* ========================================
   CALENDRIER CALENDLY
   ======================================== */

.calendly-section {
    padding: 5rem 2rem;
    background-color: var(--noir-leger);
}

.calendly-container {
    max-width: 1000px;
    margin: 0 auto;
}

.calendly-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.calendly-intro h2 {
    font-size: 2.5rem;
    color: var(--blanc);
    margin-bottom: 1rem;
}

.calendly-intro p {
    font-size: 1.1rem;
    color: var(--gris-clair);
    max-width: 700px;
    margin: 0 auto;
}

.calendly-widget-container {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    min-height: 700px;
}

/* Personnalisation du widget Calendly */
.calendly-inline-widget {
    min-width: 100%;
    height: 700px;
    border-radius: 15px;
    overflow: hidden;
}

/* ========================================
   BOUTON FACTURE
   ======================================== */

.btn-invoice {
    background: linear-gradient(135deg, var(--or) 0%, var(--or-clair) 100%);
    color: var(--noir);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-invoice:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.5);
}

.btn-invoice::before {
    content: '📄';
    font-size: 1.2rem;
}

/* ========================================
   RESPONSIVE - PWA & PRÉFÉRENCES
   ======================================== */

@media (max-width: 768px) {
    .pwa-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .pwa-banner-actions {
        width: 100%;
        justify-content: center;
    }

    .pwa-btn-install {
        flex: 1;
    }

    .preferences-section {
        padding: 1.5rem;
    }

    .preference-group {
        padding: 1rem;
    }

    .calendly-widget-container {
        padding: 1rem;
    }

    .calendly-inline-widget {
        height: 600px;
    }
}

@media (max-width: 480px) {
    .pwa-banner {
        padding: 0.8rem;
    }

    .pwa-banner-icon {
        font-size: 2rem;
    }

    .pwa-banner-text strong {
        font-size: 1rem;
    }

    .pwa-banner-text p {
        font-size: 0.85rem;
    }

    .preferences-section h3 {
        font-size: 1.1rem;
    }

    .preference-group h4 {
        font-size: 1rem;
    }

    .preference-option label {
        font-size: 0.9rem;
    }
}


/* ========================================
   NOTIFICATIONS DASHBOARD
   ======================================== */

.dashboard-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--or);
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
    z-index: 10000;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.3s ease;
}

.dashboard-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.dashboard-notification.notification-success {
    border-color: #4caf50;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

.dashboard-notification.notification-error {
    border-color: #f44336;
    box-shadow: 0 4px 20px rgba(244, 67, 54, 0.3);
}

.notification-icon {
    font-size: 20px;
}

.notification-message {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

/* Bouton Facture dans les actions */
.btn-invoice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.btn-invoice:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
}

.btn-invoice:active {
    transform: translateY(0);
}


/* ========================================
   PAGE DE REMERCIEMENT - CONFIRMATION DÉTAILLÉE
   ======================================== */

.confirmation-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.confirmation-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.confirmation-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--or);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.confirmation-card.highlight {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 2px solid var(--or);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.confirmation-icon {
    font-size: 48px;
    margin-bottom: 15px;
    animation: pulse 2s ease-in-out infinite;
}

.confirmation-card h3 {
    color: var(--or);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.confirmation-card p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.confirmation-card p:last-child {
    margin-bottom: 0;
}

.confirmation-note {
    font-size: 14px !important;
    color: #999 !important;
    font-style: italic;
    margin-top: 10px;
}

/* Prochaines étapes */
.next-steps {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
}

.next-steps h3 {
    color: var(--or);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--or);
    transition: all 0.3s ease;
}

.steps-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.steps-list li:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--or) 0%, #00a8cc 100%);
    color: #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.step-content {
    flex: 1;
}

.step-content strong {
    display: block;
    color: var(--or);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.step-content p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

/* Animation pulse pour l'icône */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .confirmation-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .confirmation-card {
        padding: 20px;
    }
    
    .confirmation-icon {
        font-size: 36px;
    }
    
    .confirmation-card h3 {
        font-size: 18px;
    }
    
    .next-steps {
        padding: 20px;
    }
    
    .steps-list li {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .step-content strong {
        font-size: 16px;
    }
    
    .step-content p {
        font-size: 14px;
    }
}


/* ========================================
   PAGE RÉSERVATION - CENTRAGE BOUTON
   ======================================== */

.calendly-alternative {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.calendly-alternative h3 {
    color: var(--or);
    font-size: 22px;
    margin-bottom: 15px;
}

.calendly-alternative p {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 25px;
}

.calendly-alternative .btn-primary {
    display: inline-block;
    margin: 0 auto;
}

/* ========================================
   PAGE CONFIRMATION - STYLES
   ======================================== */

.confirmation-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 5rem;
    background: linear-gradient(135deg, var(--noir) 0%, var(--noir-leger) 50%, var(--noir) 100%);
}

.confirmation-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
    background: rgba(26, 26, 26, 0.9);
    border-radius: 20px;
    border: 2px solid var(--or);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    animation: fadeInScale 0.6s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation du checkmark */
.success-checkmark {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.check-icon {
    width: 120px;
    height: 120px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid var(--or);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0.05));
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.icon-line {
    height: 5px;
    background-color: var(--or);
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.icon-line.line-tip {
    top: 56px;
    left: 25px;
    width: 30px;
    transform: rotate(45deg);
    animation: checkTip 0.75s 0.3s ease-out forwards;
    opacity: 0;
}

.icon-line.line-long {
    top: 50px;
    right: 15px;
    width: 60px;
    transform: rotate(-45deg);
    animation: checkLong 0.75s 0.5s ease-out forwards;
    opacity: 0;
}

@keyframes checkTip {
    0% {
        width: 0;
        left: 25px;
        top: 56px;
        opacity: 0;
    }
    54% {
        width: 0;
        left: 25px;
        top: 56px;
        opacity: 1;
    }
    70% {
        width: 35px;
        left: 25px;
        top: 56px;
        opacity: 1;
    }
    100% {
        width: 30px;
        left: 25px;
        top: 56px;
        opacity: 1;
    }
}

@keyframes checkLong {
    0% {
        width: 0;
        right: 50px;
        top: 50px;
        opacity: 0;
    }
    65% {
        width: 0;
        right: 50px;
        top: 50px;
        opacity: 1;
    }
    84% {
        width: 65px;
        right: 15px;
        top: 50px;
        opacity: 1;
    }
    100% {
        width: 60px;
        right: 15px;
        top: 50px;
        opacity: 1;
    }
}

.icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid rgba(0, 212, 255, 0.3);
}

.icon-fix {
    top: 10px;
    width: 10px;
    left: 30px;
    z-index: 1;
    height: 100px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: var(--noir-leger);
}

/* Titres et textes */
.confirmation-title {
    font-size: 2.8rem;
    color: var(--blanc);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.6s 0.3s ease-out backwards;
}

.confirmation-subtitle {
    font-size: 1.2rem;
    color: var(--gris-clair);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s 0.4s ease-out backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Instructions */
.confirmation-instructions {
    background: transparent;
    padding: 2rem 0;
    border-radius: 0;
    border-left: none;
    margin-bottom: 2.5rem;
    text-align: left;
    animation: fadeInUp 0.6s 0.5s ease-out backwards;
}

.instruction-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border-left: none;
    transition: none;
}

.instruction-item:hover {
    background: transparent;
    border-left-color: transparent;
}

.instruction-item:last-child {
    margin-bottom: 0;
}

.instruction-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    color: var(--cyan);
    background: transparent;
    width: auto;
    height: auto;
    display: block;
    margin-top: 0.2rem;
}

.instruction-content {
    flex: 1;
}

.instruction-content h3 {
    color: var(--blanc);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0;
}

.instruction-item p {
    color: var(--gris-clair);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.instruction-item strong {
    color: var(--blanc);
    font-weight: 600;
}

/* Boutons d'action */
.confirmation-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s 0.6s ease-out backwards;
}

.confirmation-actions .btn-primary,
.confirmation-actions .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

/* Note d'urgence */
.urgence-note {
    background: rgba(0, 212, 255, 0.1);
    padding: 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    animation: fadeInUp 0.6s 0.7s ease-out backwards;
}

.urgence-note p {
    color: var(--blanc-casse);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.urgence-note a {
    color: var(--or);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.urgence-note a:hover {
    color: var(--or-clair);
    text-decoration: underline;
}

/* Section Expérience MMG VTC */
.experience-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    animation: fadeInUp 0.6s 0.6s ease-out backwards;
}

.experience-title {
    color: var(--or);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.experience-subtitle {
    color: var(--gris-clair);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.experience-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.experience-icon {
    font-size: 2.5rem;
    color: var(--or);
    background: rgba(212, 175, 55, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.experience-item:hover .experience-icon {
    transform: scale(1.1);
    background: rgba(212, 175, 55, 0.2);
}

.experience-label {
    color: var(--blanc-casse);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Rappel Bagages */
.baggage-reminder {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.05);
    border-left: 4px solid var(--cyan);
    border-radius: 10px;
    animation: fadeInUp 0.6s 0.7s ease-out backwards;
}

.baggage-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.baggage-reminder p {
    color: var(--blanc-casse);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.baggage-reminder strong {
    color: var(--cyan);
}

/* Appel à l'action Modification */
.modification-cta {
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0.05));
    border-radius: 15px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    text-align: center;
    animation: fadeInUp 0.6s 0.8s ease-out backwards;
}

.modification-cta h4 {
    color: var(--blanc);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.modification-cta p {
    color: var(--gris-clair);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.btn-sms {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--cyan) 0%, #0099cc 100%);
    color: var(--noir);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.btn-sms:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
    background: linear-gradient(135deg, #0099cc 0%, var(--cyan) 100%);
}

/* Section Ajout aux Contacts */
.add-contact-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 212, 255, 0.03));
    border-radius: 20px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    animation: fadeInUp 0.6s 0.5s ease-out backwards;
}

.add-contact-title {
    color: var(--blanc);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.add-contact-description {
    color: var(--gris-clair);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-add-contact {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--cyan) 0%, #0099cc 100%);
    color: var(--noir);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 60px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    border: none;
    cursor: pointer;
}

.btn-add-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.5);
    background: linear-gradient(135deg, #0099cc 0%, var(--cyan) 100%);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
}

.contact-action {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.contact-number {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .confirmation-section {
        padding: 6rem 1.5rem 3rem;
    }
    
    .confirmation-box {
        padding: 3rem 2rem;
    }
    
    .success-checkmark,
    .check-icon {
        width: 100px;
        height: 100px;
    }
    
    .icon-line.line-tip {
        top: 46px;
        left: 21px;
        width: 25px;
    }
    
    .icon-line.line-long {
        top: 41px;
        right: 13px;
        width: 50px;
    }
    
    .icon-circle {
        width: 100px;
        height: 100px;
    }
    
    .icon-fix {
        top: 8px;
        left: 25px;
        height: 85px;
    }
    
    .confirmation-title {
        font-size: 2rem;
    }
    
    .confirmation-subtitle {
        font-size: 1rem;
    }
    
    .confirmation-instructions {
        padding: 1.5rem 0;
    }
    
    .instruction-item {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .instruction-icon {
        font-size: 2rem;
    }
    
    .instruction-content h3 {
        font-size: 1.1rem;
    }
    
    .instruction-item p {
        font-size: 0.95rem;
    }
    
    .confirmation-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    .add-contact-section {
        padding: 2rem 1.5rem;
    }
    
    .btn-add-contact {
        padding: 1.2rem 2rem;
        font-size: 0.95rem;
    }
    
    /* Responsive Experience Section */
    .experience-section {
        padding: 2rem 1.5rem;
    }
    
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .experience-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .experience-label {
        font-size: 0.85rem;
    }
    
    /* Responsive Baggage Reminder */
    .baggage-reminder {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }
    
    .baggage-icon {
        font-size: 1.8rem;
    }
    
    .baggage-reminder p {
        font-size: 0.95rem;
    }
    
    /* Responsive Modification CTA */
    .modification-cta {
        padding: 1.5rem;
    }
    
    .modification-cta h4 {
        font-size: 1.1rem;
    }
    
    .btn-sms {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .confirmation-subtitle {
        font-size: 1.2rem;
    }
    
    .confirmation-instructions {
        padding: 1.5rem;
    }
    
    .instruction-icon {
        font-size: 1.5rem;
    }
    
    .instruction-item p {
        font-size: 0.95rem;
    }
    
    .confirmation-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .confirmation-actions .btn-primary,
    .confirmation-actions .btn-secondary {
        width: 100%;
    }
}

/* ========================================
   PAGE PAIEMENT CONFIRMÉ - STYLES
   ======================================== */

.next-steps-box {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 212, 255, 0.02));
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    margin: 2rem 0;
    animation: fadeInUp 0.6s 0.8s ease-out backwards;
}

.next-steps-box h3 {
    text-align: center;
    color: var(--or);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.4);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(0, 212, 255, 0.08);
    transform: translateX(5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--or), var(--or-clair));
    color: var(--noir);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: var(--or);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: var(--blanc-casse);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Included Box */
.included-box {
    background: rgba(26, 26, 26, 0.4);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    margin: 2rem 0;
    animation: fadeInUp 0.6s 0.9s ease-out backwards;
}

.included-box h3 {
    text-align: center;
    color: var(--or);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.included-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.included-item:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-5px);
}

.included-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.8rem;
}

.included-item p {
    color: var(--blanc-casse);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Trustpilot CTA */
.trustpilot-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 12px;
    margin-top: 2rem;
    animation: fadeInUp 0.6s 1s ease-out backwards;
}

.trustpilot-text {
    color: var(--blanc-casse);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.btn-trustpilot {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00b67a, #00a56a);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 182, 122, 0.3);
}

.btn-trustpilot:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 182, 122, 0.5);
}

/* Responsive - Page Paiement Confirmé */
@media (max-width: 768px) {
    .next-steps-box,
    .included-box {
        padding: 1.5rem;
    }
    
    .steps-timeline {
        gap: 1rem;
    }
    
    .step-item {
        padding: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-content h4 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .included-item {
        padding: 1rem 0.5rem;
    }
    
    .included-icon {
        font-size: 2rem;
    }
    
    .included-item p {
        font-size: 0.85rem;
    }
}

/* ========================================
   PAGE SUCCÈS RÉSERVATION - STYLES
   ======================================== */

.key-message {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.05));
    border-radius: 20px;
    border: 2px solid var(--or);
    margin: 2rem 0;
    animation: fadeInUp 0.6s 0.5s ease-out backwards;
}

.key-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.key-message h2 {
    color: var(--or);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.key-message p {
    color: var(--blanc-casse);
    font-size: 1.2rem;
    margin: 0;
}

.instruction-item.highlight {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.08));
    border: 2px solid var(--or);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.step-item.completed .step-number {
    background: linear-gradient(135deg, #00b67a, #00a56a);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(0, 182, 122, 0.3);
    }
    50% { 
        box-shadow: 0 4px 25px rgba(0, 182, 122, 0.6);
        transform: scale(1.05);
    }
}

/* Responsive - Page Succès */
@media (max-width: 768px) {
    .key-message {
        padding: 2rem 1.5rem;
    }
    
    .key-icon {
        font-size: 3rem;
    }
    
    .key-message h2 {
        font-size: 1.5rem;
    }
    
    .key-message p {
        font-size: 1rem;
    }
}

/* ========================================
   NOTIFICATIONS PAIEMENT DASHBOARD
   ======================================== */

.payment-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-content {
    background: linear-gradient(135deg, #00b67a, #00a56a);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 182, 122, 0.4);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 350px;
    animation: pulse 2s infinite;
}

.notification-icon {
    font-size: 2.5rem;
    animation: bounce 1s infinite;
}

.notification-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.notification-text p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.notification-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Effet de clignotement vert pour les réservations payées */
.paid-highlight {
    animation: greenFlash 1s ease-in-out 3;
    background: rgba(0, 212, 255, 0.2) !important;
}

@keyframes greenFlash {
    0%, 100% {
        background: rgba(0, 212, 255, 0.1);
        box-shadow: 0 0 0 rgba(0, 212, 255, 0);
    }
    50% {
        background: rgba(0, 212, 255, 0.3);
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    }
}

/* Badge "Payé" dans le dashboard */
.status-badge.paid {
    background: linear-gradient(135deg, #00b67a, #00a56a);
    color: white;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 182, 122, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .payment-notification {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .notification-content {
        min-width: auto;
        padding: 1rem 1.5rem;
    }
    
    .notification-icon {
        font-size: 2rem;
    }
}
