/* ============================================== */
/* === GLOBAL STYLES & VARIABLES === */
/* ============================================== */

/* Variables CSS */
:root {
    --primary-color: #4a6bff;
    --secondary-color: #ff6b4a;
    --dark-color: #222;
    --light-color: #f8f8f8;
    --gray-color: #777;
    --light-gray: #eee;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
    overflow-x: hidden;
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.25rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Titres de section */
.section-title {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--dark-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 1rem auto;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* ============================================== */
/* === COMPOSANTS RÉUTILISABLES === */
/* ============================================== */

/* Boutons */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    text-align: center;
}

.cta-button:hover {
    background-color: #3a5ae8;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 107, 255, 0.2);
}

.cta-button-primary {
    background-color: var(--primary-color);
}

.cta-button-primary:hover {
    background-color: #3a5ae8;
}

.cta-button-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ============================================== */
/* === HEADER & NAVIGATION === */
/* ============================================== */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.98);
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links ul {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.langue {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: 1px solid var(--light-gray);
    background-color: white;
    font-family: var(--font-secondary);
    cursor: pointer;
}

/* Menu Hamburger */
.menu-hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 1001;
    padding: 0;
    transition: var(--transition);
}

.menu-hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    left: 0;
    transition: var(--transition);
    border-radius: 3px;
}

.menu-hamburger span:nth-child(1) {
    top: 0;
    transform-origin: left center;
}

.menu-hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}

.menu-hamburger span:nth-child(3) {
    bottom: 0;
    transform-origin: left center;
}

/* Animation du menu hamburger */
.menu-hamburger.active {
    transform: rotate(90deg);
}

.menu-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(2px, -3px);
    width: 110%;
}

.menu-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, 3px);
    width: 110%;
}

/* Menu mobile */
.nav-links.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    z-index: 1000;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.nav-links.mobile-menu ul {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 300px;
}

.nav-links.mobile-menu a {
    color: var(--dark-color);
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
    display: block;
    text-align: center;
    border-radius: 50px;
    transition: var(--transition);
}

.nav-links.mobile-menu a:hover,
.nav-links.mobile-menu a.active {
    background-color: rgba(74, 107, 255, 0.1);
    color: var(--primary-color);
}

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

/* Bouton CTA dans le menu mobile */
.nav-links.mobile-menu .cta-button {
    background-color: var(--primary-color);
    color: white !important;
    margin-top: 1rem;
}

.nav-links.mobile-menu .cta-button:hover {
    background-color: #3a5ae8;
}

/* ============================================== */
/* === SECTIONS PRINCIPALES === */
/* ============================================== */

/* Style général des sections */
section {
    box-shadow: 0 -1px 0 rgba(0,0,0,0.05), 
                0 1px 0 rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px;
    background: 
        linear-gradient(135deg, rgba(0, 57, 115, 0.85) 0%, rgba(229, 0, 126, 0.85) 100%),
        url('Image/photo_famille_vtc.webp') no-repeat center center/cover;
    color: white;
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    box-shadow: none; /* Exception pour la hero section */
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 40px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
    font-weight: 700;
}

.subtitle {
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.subtitle div:first-child {
    margin-bottom: 0.5rem;
}

.subtitle div:last-child {
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.badge {
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    padding: 1rem 2rem;
    font-weight: 600;
}

/* Section Réservation */
.reservation-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.formulaire {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.reservation-form {
    display: flex;
    flex-direction: column;
}
.form-group{
    padding-bottom: 20px;
}

.cardtypetransfert {
    margin-bottom: 2rem;
}

.typetransfert {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.typetransfert input[type="radio"] {
    display: none;
}

.typetransfert label {
    padding: 10px 20px;
    background-color: var(--light-gray);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.typetransfert input[type="radio"]:checked + label {
    background-color: var(--primary-color);
    color: white;
}

.reservation-form select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: inherit;
    background-color: white;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 1em;
}

#totalPrice {
    text-align: center;
    margin: 2rem 0;
    font-size: 1.2rem;
}

#totalPrice span {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.reservation-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.reservation-btn:hover {
    background-color: #025f8a;
    transform: translateY(-2px);
}

.reservation-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.reservation-image img {
    transition: var(--transition);
}

.reservation-image:hover img {
    transform: scale(1.05);
}

/* Section Présentation */
.elegant-transfer {
    padding: 80px 0;
    background: #f8fafc;
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.divider-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    margin: 0 auto;
}

.transfer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.transfer-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.highlight {
    border-top: 3px solid #3b82f6;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Section Destinations */
.destinations-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.destination-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.destination-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.destination-gallery {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.destination-content {
    padding: 1.5rem;
}

.destination-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}


/* Section Blog Preview */
.blog-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image-link img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content time {
    color: #666;
    font-size: 0.9em;
    display: block;
    margin-bottom: 10px;
}

.blog-content h3 {
    margin: 0 0 10px;
    font-size: 1.2em;
}

.blog-content h3 a {
    color: #333;
    text-decoration: none;
}

.blog-content h3 a:hover {
    color: #e63946;
}

.blog-content p {
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    color: #e63946;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.blog-cta {
    text-align: center;
    margin-top: 40px;
}

/* Section SEO */
.seo-section {
    padding: 100px 0;
}

.seo-content {
    max-width: 800px;
    margin: 0 auto;
}

.seo-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.seo-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.seo-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.destination-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.tag {
    background-color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--dark-color);
}

/* Section Services */
.services-section {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(74, 107, 255, 0.1);
    border-radius: 50%;
}

/* Section FAQ */
.faq-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: white;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background-color: white;
    border: none;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-question[aria-expanded="true"]::after {
    content: '-';
}

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

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Section Témoignages */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-rating {
    color: var(--warning-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--gray-color);
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: var(--dark-color);
}

.testimonial-date {
    color: var(--gray-color);
    font-weight: normal;
    font-size: 0.9rem;
}

/* Section CTA */
.cta-section {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, rgba(0, 57, 115, 0.9) 0%, rgba(229, 0, 126, 0.9) 100%),
        url('Image/chauffeuretclient.webp') no-repeat center center/cover;
    color: white;
    text-align: center;
    position: relative;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ============================================== */
/* === FOOTER === */
/* ============================================== */

.footer-section {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column a:hover {
    color: white;
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item svg {
    min-width: 20px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

.footer-badge {
    margin-top: 2rem;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.legal-links a:hover {
    color: white;
}
/* ============================================== */
/* === MEDIA QUERIES === */
/* ============================================== */

@media (max-width: 992px) {
    .reservation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-hamburger {
        display: block;
    }
    
    .nav-links:not(.mobile-menu) {
        display: none;
    }
    
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .hero-text {
        padding: 30px 20px;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: none;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 80px 0 60px;
    }
    
    .cta-content {
        padding: 40px 20px;
        margin: 0 20px;
        backdrop-filter: none;
        background: rgba(0,0,0,0.5);
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        width: 100%;
    }
}