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

:root {
    /* Couleurs principales */
    --primary-color: #ffb747;
    --primary-dark: #e6a340;
    --primary-light: #fff2e6;
    --primary-gradient: linear-gradient(135deg, #ffb747, #ff9f43);

    /* Palette naturelle enrichie */
    --sand: #f5f1eb;
    --sand-gradient: linear-gradient(135deg, #f5f1eb, #f0ebe3);
    --ocean: #4a90a4;
    --ocean-light: #6ba3b8;
    --ocean-gradient: linear-gradient(135deg, #4a90a4, #6ba3b8);
    --sky: #87ceeb;
    --sky-gradient: linear-gradient(135deg, #87ceeb, #a8d8ea);
    --stone: #8b8680;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #343a40;

    /* Couleurs accent Thaïlande */
    --thai-gold: #d4af37;
    --thai-red: #dc143c;
    --thai-green: #228b22;
    --emerald: #50c878;
    --coral: #ff7f7f;

    /* Gradients dynamiques */
    --gradient-warm: linear-gradient(135deg, #ffb747, #ff9f43, #ff8c42);
    --gradient-cool: linear-gradient(135deg, #4a90a4, #6ba3b8, #87ceeb);
    --gradient-sunset: linear-gradient(135deg, #ff9f43, #ff7f7f, #ff6b9d);
    --gradient-nature: linear-gradient(135deg, #50c878, #228b22, #32cd32);
    
    /* Typographie */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Lora', serif;
    
    /* Espacements */
    --container-max-width: 1200px;
    --section-padding: 65px 0;
    --section-padding-mobile: 60px 0;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Ombres */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ===== VOYAGE HIGHLIGHTS SECTION ===== */
.voyage-highlights {
    background: linear-gradient(135deg, #ffffff, #f8fffe);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 183, 71, 0.1);
    position: relative;
    overflow: hidden;
}

.voyage-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-warm);
    border-radius: 16px 16px 0 0;
}

.voyage-highlights h3 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.voyage-highlights h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.voyage-highlights-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
}

.voyage-highlights-list li {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--gray-dark);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.voyage-highlights-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.voyage-highlights-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-left-color: var(--primary-dark);
}

.voyage-highlights-list li:hover::before {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .voyage-highlights {
        padding: 30px 20px;
        margin: 30px 0;
        border-radius: 12px;
    }
    
    .voyage-highlights h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .voyage-highlights-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .voyage-highlights-list li {
        padding: 16px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .voyage-highlights {
        padding: 25px 15px;
    }
    
    .voyage-highlights h3 {
        font-size: 1.3rem;
    }
    
    .voyage-highlights-list li {
        padding: 14px;
        gap: 12px;
    }
}

/* ===== SHOW MORE/LESS FUNCTIONALITY ===== */
.voyage-highlights-toggle {
    text-align: center;
    margin-top: 25px;
}

.voyage-highlights-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 183, 71, 0.3);
}

.voyage-highlights-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 183, 71, 0.4);
}

.voyage-highlights-btn .arrow {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.voyage-highlights-btn.expanded .arrow {
    transform: rotate(180deg);
}

/* Hidden items */
.voyage-highlights-list li.hidden {
    display: none;
}

/* Desktop: hide after 5 items */
@media (min-width: 769px) {
    .voyage-highlights-list li:nth-child(n+6) {
        display: none;
    }
    
    .voyage-highlights-list.show-all li:nth-child(n+6) {
        display: flex;
    }
}

/* Mobile and tablet: hide after 3 items */
@media (max-width: 768px) {
    .voyage-highlights-list li:nth-child(n+4) {
        display: none;
    }
    
    .voyage-highlights-list.show-all li:nth-child(n+4) {
        display: flex;
    }
}

/* Hide toggle button if not enough items */
.voyage-highlights[data-count="1"] .voyage-highlights-toggle,
.voyage-highlights[data-count="2"] .voyage-highlights-toggle,
.voyage-highlights[data-count="3"] .voyage-highlights-toggle {
    display: none;
}

@media (min-width: 769px) {
    .voyage-highlights[data-count="4"] .voyage-highlights-toggle,
    .voyage-highlights[data-count="5"] .voyage-highlights-toggle {
        display: none;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.footer .container {
    max-width: 1480px;
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--black);
    position: relative;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-dark) 50%, var(--black) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        filter: drop-shadow(0 0 0px rgba(255, 183, 71, 0));
        transform: translateY(0);
    }
    100% {
        filter: drop-shadow(0 2px 8px rgba(255, 183, 71, 0.3));
        transform: translateY(-1px);
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--primary-dark), var(--primary-color), transparent);
    border-radius: 2px;
    animation: lineExpand 2s ease-out;
}

@keyframes lineExpand {
    0% { width: 0; opacity: 0; }
    50% { opacity: 1; }
    100% { width: 80px; opacity: 1; }
}

.section-title::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 183, 71, 0.05), transparent, rgba(74, 144, 164, 0.05));
    border-radius: 10px;
    z-index: -1;
    animation: backgroundPulse 4s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0; transform: translateX(-50%) scale(0.95); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 183, 71, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 183, 71, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark), var(--thai-gold));
    color: var(--white);
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(255, 183, 71, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--thai-gold), var(--primary-color));
    border-radius: inherit;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

.btn-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.btn-hero:hover::after {
    width: 300px;
    height: 300px;
}

.btn-hero:hover {
    transform: translateY(-4px) scale(1.05);
    animation: none;
    box-shadow: 0 12px 40px rgba(255, 183, 71, 0.6);
}


@keyframes pulse {
    0% { box-shadow: var(--shadow-heavy); }
    50% { box-shadow: 0 8px 30px rgba(255, 183, 71, 0.4); }
    100% { box-shadow: var(--shadow-heavy); }
}

/* CTA centré */
.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 183, 71, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 200px;
    border-radius: 50%;
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

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

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

.header-cta {
    white-space: nowrap;
}

/* Menu hamburger mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle:hover .hamburger-line {
    background: var(--primary-color);
}

/* Menu mobile overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    height: 100vh;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
}

.mobile-logo-img {
    height: 40px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--gray-dark);
    font-size: 2rem;
    cursor: pointer;
    padding: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: rotate(90deg);
}

.mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 15px;
    color: var(--gray-dark);
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mobile-nav-link:hover {
    background: var(--primary-light);
    border-color: var(--primary-color);
    color: var(--primary-dark);
    transform: translateX(10px);
}

.mobile-nav-icon {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.mobile-nav-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.mobile-nav-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-color) 100%);
    margin: 20px 0;
    border-radius: 1px;
}

.mobile-nav-legal {
    opacity: 0.8;
    font-size: 0.95rem;
}

.mobile-nav-legal .mobile-nav-text {
    font-size: 0.95rem;
}

.mobile-menu-cta {
    padding-top: 30px;
    border-top: 2px solid var(--primary-color);
}

.mobile-cta-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    border-radius: 15px;
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-medium);
    text-decoration: none;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-contact-link:hover {
    color: var(--primary-dark);
    background: var(--primary-light);
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-text {
    font-size: 0.9rem;
}

/* Styles pour les contacts détaillés */
.mobile-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 5px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-title {
    font-weight: 600;
    color: var(--gray-dark);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-phone {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-phone:hover {
    color: var(--primary-dark);
}

.contact-lang {
    font-size: 0.8rem;
    color: var(--gray-medium);
    font-style: italic;
    margin-bottom: 8px;
}

/* Empêcher le scroll du body quand le menu mobile est ouvert */
body.mobile-menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.hero-slider-dots {
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-content {
    max-width: 800px;
    color: var(--white);
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 2.5rem;
}

.feature {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-guarantee {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Avantages - Design dynamique */
.advantages {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, #fff2e6 50%, #f5f1eb 100%);
    position: relative;
    overflow: hidden;
}

.advantages::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255, 183, 71, 0.05) 0%, rgba(255, 183, 71, 0.1) 50%, transparent 100%);
    border-radius: 50%;
    transform: rotate(-15deg);
    z-index: 0;
}

.advantages::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 40%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(74, 144, 164, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.advantages .container {
    position: relative;
    z-index: 1;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.advantage-card {
    background: linear-gradient(145deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 183, 71, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 183, 71, 0.1), transparent);
    transition: left 0.6s ease;
}

.advantage-card:hover::before {
    left: 100%;
}

.advantage-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 183, 71, 0.15);
    border-color: var(--primary-color);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.advantage-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--black);
}

.advantage-text {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

/* Section Qui sommes-nous - Design organique */
.about {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--white) 0%, #fefefe 50%, #f9f9f9 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 183, 71, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 144, 164, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(245, 241, 235, 0.5) 0%, transparent 50%);
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-intro {
    margin-bottom: 30px;
}

.about-lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.6;
}

.about-story {
    margin-bottom: 40px;
}

.story-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.story-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.story-content h3 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 10px;
}

.story-content p {
    color: var(--gray-medium);
    line-height: 1.6;
}

.about-values h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--gray-light);
    border-radius: 8px;
    transition: var(--transition);
}

.value-item:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.value-icon {
    font-size: 1.5rem;
}

.value-text {
    font-weight: 600;
    color: var(--black);
}

.about-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Image principale avec pattern thaïlandais */
.about-main-image {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.thai-pattern-frame {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(255, 183, 71, 0.15);
}

/* Motifs thaïlandais dans les coins */
.pattern-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image:
        radial-gradient(circle at center, var(--primary-color) 2px, transparent 2px),
        radial-gradient(circle at center, var(--primary-dark) 1px, transparent 1px);
    background-size: 8px 8px, 4px 4px;
    background-position: 0 0, 2px 2px;
    opacity: 0.6;
}

.pattern-corner.top-left {
    top: 10px;
    left: 10px;
    border-radius: 0 0 20px 0;
    background: linear-gradient(135deg, var(--primary-color), transparent);
}

.pattern-corner.top-right {
    top: 10px;
    right: 10px;
    border-radius: 0 0 0 20px;
    background: linear-gradient(225deg, var(--primary-color), transparent);
}

.pattern-corner.bottom-left {
    bottom: 10px;
    left: 10px;
    border-radius: 0 20px 0 0;
    background: linear-gradient(45deg, var(--primary-color), transparent);
}

.pattern-corner.bottom-right {
    bottom: 10px;
    right: 10px;
    border-radius: 20px 0 0 0;
    background: linear-gradient(315deg, var(--primary-color), transparent);
}

.main-team-image {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.main-team-image:hover {
    transform: scale(1.02);
}

.about-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-bottom: 30px;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.badge-text {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.badge-subtext {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 5px;
    display: block;
}

/* Galerie d'équipe */
.team-gallery {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 183, 71, 0.1);
}

.team-gallery-title {
    text-align: center;
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 25px;
    font-weight: 600;
}

.team-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

/* Cacher la 4ème photo sur desktop par défaut */
.team-photo[data-photo="4"] {
    display: none;
}

.team-photo {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 15px 10px 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.photo-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    display: block;
}

.team-photo:hover .photo-overlay {
    transform: translateY(0);
}

.team-photo:hover .team-img {
    transform: scale(1.1);
}

.team-photo:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 183, 71, 0.3);
}

.view-all-photos {
    display: block;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.view-all-photos:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 183, 71, 0.4);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--gray-light);
    border-radius: 10px;
    transition: var(--transition);
}

.stat-item:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin-top: 5px;
    display: block;
}

/* Section Valeurs horizontales */
.values-section {
    margin: 50px 0;
    text-align: center;
}

.values-title {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 30px;
    font-weight: 600;
}

.values-horizontal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 30px;
    background: linear-gradient(135deg, var(--white), var(--primary-light));
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 183, 71, 0.1);
    border: 1px solid rgba(255, 183, 71, 0.2);
}

.values-horizontal .value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: var(--white);
    border-radius: 15px;
    transition: var(--transition);
    min-width: 100px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.values-horizontal .value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 183, 71, 0.2);
    background: var(--primary-light);
}

/* Tooltips pour les valeurs et benefits */
.value-item, .benefit-item {
    position: relative;
    cursor: pointer;
}

.value-item[data-tooltip]:hover::after,
.benefit-item[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 1000;
    opacity: 1;
    pointer-events: none;
    margin-bottom: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.value-item[data-tooltip]:hover::before,
.benefit-item[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    opacity: 1;
    pointer-events: none;
}

/* Responsive tooltips pour mobile */
@media (max-width: 768px) {
    .value-item[data-tooltip]:hover::after,
    .benefit-item[data-tooltip]:hover::after {
        display: none;
    }

    .value-item[data-tooltip].tooltip-active::after,
    .benefit-item[data-tooltip].tooltip-active::after {
        content: attr(data-tooltip);
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 0.8rem;
        white-space: nowrap;
        z-index: 1000;
        opacity: 1;
        pointer-events: none;
        margin-bottom: 5px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        display: block;
    }

    .value-item[data-tooltip].tooltip-active::before,
    .benefit-item[data-tooltip].tooltip-active::before {
        content: '';
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 5px solid transparent;
        border-top-color: rgba(0, 0, 0, 0.9);
        z-index: 1000;
        opacity: 1;
        pointer-events: none;
        display: block;
    }
}

.values-horizontal .value-icon {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.values-horizontal .value-text {
    font-weight: 600;
    color: var(--black);
    font-size: 0.9rem;
    text-align: center;
}

/* Témoignages - Design vagues */
.testimonials {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 110%;
    height: 30%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23ffb747' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E") repeat-x;
    animation: wave 20s linear infinite;
    z-index: 0;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 110%;
    height: 30%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%234a90a4' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E") repeat-x;
    animation: wave 25s linear infinite reverse;
    z-index: 0;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100px); }
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

/* Header Google Rating */
.google-rating-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    flex-wrap: wrap;
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.google-g {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4285f4;
}

.google-text {
    font-size: 1.5rem;
    font-weight: 400;
    color: #5f6368;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stars {
    font-size: 1.2rem;
}

.rating-score {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
}

.rating-count {
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin-left: 5px;
}

.google-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    transition: var(--transition);
}

.google-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.trust-source {
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin-top: 5px;
    display: block;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 30px;
}

.testimonial-card {
    display: none;
    background: linear-gradient(145deg, var(--white) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: 20px;
    padding: 45px 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(255, 183, 71, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    z-index: 1;
}

.testimonial-card.active {
    display: block;
    animation: slideInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--gray-dark);
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-light);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.5;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Avatar avec initiales */
.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 3px solid var(--white);
    box-shadow: 0 4px 15px rgba(255, 183, 71, 0.3);
    flex-shrink: 0;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

/* Badge Google */
.google-badge {
    background: #4285f4;
    color: var(--white);
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 5px;
    display: inline-block;
}

.author-name {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-trip {
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin-bottom: 5px;
}

.rating {
    color: var(--primary-color);
    letter-spacing: 2px;
}

.rating-large {
    font-size: 1.2rem;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.rating-count {
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin-left: 5px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray-medium);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Destinations - Design tropical */
.destinations {
    padding: var(--section-padding);
    background: linear-gradient(45deg, #f5f1eb 0%, #fff2e6 30%, #f8f9fa 70%, #f5f1eb 100%);
    position: relative;
    overflow: hidden;
}

.destinations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffb747' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234a90a4' fill-opacity='0.02'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-position: 0 0, 30px 30px;
    animation: float 30s ease-in-out infinite;
    z-index: 0;
}

.destinations::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 183, 71, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 0.4; }
}

.destinations .container {
    position: relative;
    z-index: 1;
}

.custom-destination-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark), var(--thai-gold));
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-destination-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: patternMove 10s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, 10px); }
}

.custom-destination-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    z-index: 1;
}

.custom-icon {
    font-size: 3rem;
    opacity: 0.3;
    animation: iconFloat 4s ease-in-out infinite;
}

.custom-icon:nth-child(1) { animation-delay: 0s; }
.custom-icon:nth-child(2) { animation-delay: 1s; }
.custom-icon:nth-child(3) { animation-delay: 2s; }
.custom-icon:nth-child(4) { animation-delay: 3s; }

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.custom-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
    padding: 40px 25px 25px;
}

.custom-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--thai-red), #ff4757);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.custom-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
}

.custom-feature {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

.custom-cta {
    background: linear-gradient(135deg, var(--white), #f8f9fa);
    color: var(--primary-dark);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.custom-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #f8f9fa, var(--white));
}

/* Méthode - Design zen */
.method {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    position: relative;
    overflow: hidden;
}

.method::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 183, 71, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.method .container {
    position: relative;
    z-index: 1;
}

.method-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 50px;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.method-steps {
    max-width: 900px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 25px;
    width: 2px;
    height: calc(100% - 10px);
    background-color: var(--primary-light);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(255, 183, 71, 0.3);
    transition: all 0.4s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 183, 71, 0.4);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--black);
}

.step-description {
    color: var(--gray-medium);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.step-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 183, 71, 0.3);
    transition: var(--transition);
}

.feature-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 183, 71, 0.4);
}

/* Centre de contact intelligent - Design premium */
.contact {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #fff2e6 0%, #f5f1eb 25%, #ffffff 50%, #f8f9fa 75%, #fff2e6 100%);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 80px; /* Compensation pour le header fixe */
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg,
        rgba(255, 183, 71, 0.03) 0deg,
        rgba(74, 144, 164, 0.02) 90deg,
        rgba(245, 241, 235, 0.04) 180deg,
        rgba(255, 183, 71, 0.02) 270deg,
        rgba(255, 183, 71, 0.03) 360deg);
    animation: rotate 60s linear infinite;
    z-index: 0;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(255, 183, 71, 0.05) 0%, transparent 100%);
    z-index: 0;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray-dark);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-proof-text {
    font-weight: 500;
    color: var(--gray-medium);
    font-size: 0.9rem;
    padding-top: 5px;
}

/* Choix du mode de contact */
.contact-choice {
    max-width: 900px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.contact-form-container {
    transition: all 0.3s ease;
    opacity: 1;
}

.contact-form-container[style*="display: none"] {
    opacity: 0;
    pointer-events: none;
}

.contact-choice[style*="display: none"] {
    opacity: 0;
    pointer-events: none;
}

.choice-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.choice-card {
    background: linear-gradient(145deg, var(--white) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: 20px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
}

.choice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 183, 71, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.choice-card:hover::before {
    left: 100%;
}

.choice-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 183, 71, 0.15);
    border-color: var(--primary-color);
}

.choice-card-featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.choice-card-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.choice-badge {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.choice-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.choice-title {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 15px;
}

.choice-description {
    color: var(--gray-medium);
    margin-bottom: 25px;
    line-height: 1.6;
}

.choice-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.choice-benefits li {
    padding: 8px 0;
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.choice-btn {
    width: 100%;
    margin-bottom: 0;
}

.contact-guarantee {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.contact-guarantee p {
    margin: 0;
    color: var(--gray-dark);
    font-weight: 500;
}

/* Conteneur du formulaire */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    padding: 140px 40px 40px 40px;
    box-shadow: var(--shadow-medium);
    animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.back-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 20px;
    padding: 10px 0;
    transition: var(--transition);
}

.back-btn:hover {
    color: var(--primary-dark);
    transform: translateX(-5px);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-title {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.form-header {
    margin-bottom: 25px;
    text-align: center;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 183, 71, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.captcha-question {
    flex: 1;
    font-weight: 500;
}

.captcha-input {
    width: 80px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-input {
    position: absolute;
    opacity: 0;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 3px;
}

.checkbox-input:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: bold;
}

.checkbox-text {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.form-error {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 5px;
    display: block;
}

.form-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.form-guarantee {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin-top: 15px;
}

/* FAQ - Design moderne */
.faq {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(45deg, rgba(255, 183, 71, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 183, 71, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(74, 144, 164, 0.01) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(74, 144, 164, 0.01) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    z-index: 0;
}

.faq .container {
    position: relative;
    z-index: 1;
}

/* Galerie des voyageurs - Design spectaculaire */
.travelers-gallery {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f1eb 100%);
    position: relative;
    overflow: hidden;
}

.travelers-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 183, 71, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(74, 144, 164, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.travelers-gallery .container {
    position: relative;
    z-index: 1;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-subtitle {
    font-size: 1.1rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- MASONRY GALLERY MODERNE --- */
.gallery-grid {
    column-count: 3;
    column-gap: 24px;
    margin-bottom: 50px;
}

@media (max-width: 1200px) {
    .gallery-grid {
        column-count: 2;
    }
}
@media (max-width: 700px) {
    .gallery-grid {
        column-count: 1;
    }
}

.gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 24px;
    break-inside: avoid;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); */
}

/* Désactive les spans de grid pour Masonry */
.gallery-item.large,
.gallery-item.wide,
.gallery-item.tall {
    grid-column: auto !important;
    grid-row: auto !important;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 15px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 30px 20px 20px;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 183, 71, 0.2);
}

.gallery-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-location {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.gallery-tag {
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* CTA de galerie */
.gallery-cta {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, var(--primary-light), var(--white));
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.gallery-cta-title {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 15px;
}

.gallery-cta-text {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ améliorée */
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.faq-item {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background: var(--white);
    border: 1px solid rgba(255, 183, 71, 0.1);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(255, 183, 71, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-question:hover::before,
.faq-question[aria-expanded="true"]::before {
    transform: scaleY(1);
}

.faq-question:hover {
    color: var(--primary-color);
    background: rgba(255, 183, 71, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer.open {
    max-height: 300px;
    padding: 0 20px 20px;
}

.faq-answer p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA FAQ */
.faq-cta {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, var(--primary-light), var(--white));
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.faq-cta-title {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 10px;
}

.faq-cta-text {
    color: var(--gray-medium);
    margin-bottom: 25px;
}

/* Réassurance - Design confiance */
.reassurance {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f1eb 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 183, 71, 0.1);
    border-bottom: 1px solid rgba(255, 183, 71, 0.1);
}

.reassurance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 183, 71, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.reassurance .container {
    position: relative;
    z-index: 1;
}

.reassurance-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.reassurance-labels {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.label-icon {
    font-size: 1.5rem;
}

.label-text {
    font-weight: 500;
}

.partners {
    text-align: center;
}

.partners-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--gray-dark);
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    height: 40px;
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
}

/* Final CTA - Design spectaculaire */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffb747 0%, #e6a340 50%, #d4941f 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpolygon points='50 0 60 40 100 50 60 60 50 100 40 60 0 50 40 40'/%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: sparkle 20s linear infinite;
    z-index: 0;
}

.final-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
}

@keyframes sparkle {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    100% { transform: translateX(-100px) translateY(-100px) rotate(360deg); }
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.final-cta-guarantee {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* CTA Center */
.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background-color: var(--gray-dark);
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-logo-text {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

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

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-icon {
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item p {
    margin: 0;
    line-height: 1.5;
    min-width: 0;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    overflow-wrap: break-word;
}

.contact-item a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Pages légales */
.legal-page {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.legal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 60px 40px;
    text-align: center;
}

.legal-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.legal-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.legal-body {
    padding: 60px 40px;
    line-height: 1.8;
    color: var(--gray-dark);
}

.legal-body h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
}

.legal-body h4 {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

.legal-body h5 {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin: 25px 0 10px;
    font-weight: 600;
}

.legal-body p {
    margin-bottom: 20px;
    text-align: justify;
}

.legal-body ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-body li {
    margin-bottom: 10px;
}

.legal-body strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.legal-footer {
    padding: 40px;
    text-align: center;
    background: var(--gray-light);
    border-top: 1px solid #e9ecef;
}

.cookie-manager-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 183, 71, 0.2);
}

/* Bannière cookies RGPD - Version compacte collapsible */
.cookie-banner-compact {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 1200px;
    max-height: 80vh;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary-color);
    z-index: 10000;
    transform: translateY(120%);
    transition: transform 0.4s ease;
    overflow: hidden;
}

.cookie-banner-compact.show {
    transform: translateY(0);
}

.cookie-banner-content {
    padding: 0;
    max-height: 80vh;
    overflow-y: auto;
}

/* Version compacte */
.cookie-compact-view {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    gap: 20px;
}

.cookie-compact-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cookie-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cookie-compact-text {
    flex: 1;
}

.cookie-compact-title {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin: 0 0 5px 0;
    font-weight: 600;
}

.cookie-compact-desc {
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin: 0;
    line-height: 1.3;
}

.cookie-compact-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-cookie-compact {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn-cookie-settings {
    background: transparent;
    color: var(--gray-medium);
    border-color: var(--gray-light);
}

.btn-cookie-settings:hover {
    background: var(--gray-light);
    color: var(--gray-dark);
}

.btn-cookie-reject {
    background: transparent;
    color: var(--gray-dark);
    border-color: var(--gray-medium);
}

.btn-cookie-reject:hover {
    background: var(--gray-medium);
    color: white;
}

.btn-cookie-accept {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-cookie-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.cookie-close-compact {
    background: none;
    border: none;
    color: var(--gray-medium);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.cookie-close-compact:hover {
    background: var(--gray-light);
    color: var(--gray-dark);
    transform: rotate(90deg);
}

/* Version étendue */
.cookie-expanded-view {
    padding: 30px;
    max-height: calc(80vh - 60px);
    overflow-y: auto;
}

.cookie-expanded-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-light);
}

.cookie-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-icon-large {
    font-size: 2rem;
}

.cookie-expanded-title {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin: 0 0 5px 0;
    font-weight: 600;
}

.cookie-expanded-subtitle {
    font-size: 0.95rem;
    color: var(--gray-medium);
    margin: 0;
}

.cookie-close-expanded {
    background: none;
    border: none;
    color: var(--gray-medium);
    font-size: 2rem;
    cursor: pointer;
    padding: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-close-expanded:hover {
    background: var(--gray-light);
    color: var(--gray-dark);
    transform: rotate(180deg);
}

.cookie-expanded-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--gray-dark);
    text-align: justify;
}

.cookie-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.cookie-category {
    background: linear-gradient(135deg, rgba(255, 183, 71, 0.03) 0%, rgba(255, 183, 71, 0.01) 100%);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 183, 71, 0.2);
    transition: all 0.3s ease;
}

.cookie-category:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 183, 71, 0.1);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .switch-slider {
    background-color: var(--primary-color);
}

input:checked + .switch-slider:before {
    transform: translateX(26px);
}

input:disabled + .switch-slider {
    background-color: var(--primary-color);
    opacity: 0.7;
    cursor: not-allowed;
}

.category-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: var(--primary-dark);
}

.category-desc {
    font-size: 0.85rem;
    color: var(--gray-medium);
    margin: 0;
    line-height: 1.4;
}

.cookie-expanded-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.btn-cookie-expanded {
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-cookie-expanded.btn-cookie-reject {
    background: transparent;
    color: var(--gray-dark);
    border-color: var(--gray-medium);
}

.btn-cookie-expanded.btn-cookie-reject:hover {
    background: var(--gray-medium);
    color: white;
}

.btn-cookie-expanded.btn-cookie-accept {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-cookie-expanded.btn-cookie-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-cookie-expanded.btn-cookie-all {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 183, 71, 0.3);
}

.btn-cookie-expanded.btn-cookie-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 183, 71, 0.4);
}

.cookie-expanded-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 183, 71, 0.2);
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.cookie-separator {
    margin: 0 10px;
    color: var(--gray-medium);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }

    /* Responsive grille avantages - tablettes */
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Afficher 4 photos sur tablettes */
    .team-mosaic {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .team-photo[data-photo="4"] {
        display: block;
    }
}

@media (max-width: 1000px) {
    .header-content {
        justify-content: space-between;
    }

    .nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        margin: 10px 0;
    }
    
    .hero {
        height: auto;
        min-height: 500px;
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .reassurance-labels {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* ===== SECTION LEAD CAPTURE CRO OPTIMISÉE ===== */
.lead-capture-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    position: relative;
    overflow: hidden;
}

.lead-capture-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 183, 71, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 183, 71, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.lead-capture-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lead-capture-header {
    text-align: left;
    margin-bottom: 40px;
}

.lead-capture-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.lead-capture-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.5;
}

.lead-capture-social-proof {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.social-proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

.proof-icon {
    font-size: 1.1rem;
}

.lead-capture-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 183, 71, 0.1);
    transition: all 0.3s ease;
}

.lead-capture-form:hover {
    transform: translateY(-2px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 12px 24px rgba(0, 0, 0, 0.06);
}

.form-row-lead {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group-lead {
    margin-bottom: 25px;
}

.form-label-lead {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.form-input-lead,
.form-select-lead {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.form-input-lead:focus,
.form-select-lead:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 183, 71, 0.1);
    transform: translateY(-1px);
}

.form-input-lead::placeholder {
    color: #adb5bd;
    font-style: italic;
}

.btn-lead-capture {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.btn-lead-capture::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-lead-capture:hover::before {
    left: 100%;
}

.btn-lead-capture:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 183, 71, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), #d4941f);
}

.btn-lead-capture:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-lead-capture:hover .btn-icon {
    transform: translateX(3px);
}

.lead-capture-guarantees {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid #f1f3f4;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-medium);
    font-weight: 500;
}

.guarantee-icon {
    font-size: 1rem;
    color: var(--primary-color);
}

.lead-capture-privacy {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.4;
}

.lead-capture-privacy a {
    color: var(--primary-color);
    text-decoration: none;
}

.lead-capture-privacy a:hover {
    text-decoration: underline;
}

/* Section visuelle avec témoignage */
.lead-capture-visual {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 40px;
}

.testimonial-preview {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    width: 100%;
    max-width: 350px;
    position: relative;
}

.testimonial-preview::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.author-trip {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-top: 2px;
}

.author-rating {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1000px) {
    .lead-capture-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lead-capture-header {
        text-align: center;
    }

    .lead-capture-social-proof {
        justify-content: center;
    }

    .lead-capture-visual {
        order: -1;
        margin-top: 0;
        justify-content: center;
    }

    .testimonial-preview {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .lead-capture-section {
        padding: 60px 0;
    }

    .form-row-lead {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .lead-capture-form {
        padding: 30px 20px;
    }

    .lead-capture-title {
        font-size: 1.8rem;
    }

    .lead-capture-social-proof {
        gap: 20px;
    }

    .lead-capture-guarantees {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .guarantee-item {
        justify-content: center;
    }
}

/* Section Appel découverte */
.discovery-call {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-light), var(--sand));
    text-align: center;
}

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

.discovery-call-description {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 40px;
    line-height: 1.6;
}

.discovery-call-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    font-size: 1.5rem;
}

.benefit-text {
    font-weight: 600;
    color: var(--black);
}

.discovery-call-btn {
    margin-bottom: 20px;
}

.discovery-call-note {
    font-size: 0.9rem;
    color: var(--gray-medium);
    font-style: italic;
}

/* Modal Calendly */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 15px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-heavy);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid var(--gray-light);
    background: var(--primary-light);
}

.modal-title {
    font-size: 1.3rem;
    color: var(--black);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray-medium);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--gray-light);
    color: var(--black);
}

/* Modal galerie d'équipe */
.team-modal {
    max-width: 900px;
    max-height: 80vh;
    overflow-y: auto;
}

.team-full-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px 0;
}

.team-full-photo {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 25px;
    align-items: center;
    padding: 20px;
    background: var(--gray-light);
    border-radius: 15px;
    transition: var(--transition);
}

.team-full-photo:hover {
    background: rgba(255, 183, 71, 0.05);
    transform: translateY(-2px);
}

.full-team-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.photo-caption h4 {
    color: var(--black);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.photo-caption p {
    color: var(--gray-medium);
    line-height: 1.5;
    font-size: 0.95rem;
}

.modal-body {
    padding: 0;
    overflow-y: auto;
    max-height: calc(90vh - 80px);
}

.calendly-embed {
    height: 98vh;
    overflow-y: auto;
    padding: 20px;
}

.calendly-inline-widget {
    border-radius: 0 0 15px 15px;
}

/* Responsive pour les nouvelles sections */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Responsive grille avantages - mobile */
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .discovery-call-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .modal-content {
        margin: 10px;
        /* height: 95vh; */
    }

    .modal-header {
        padding: 15px 20px;
    }

    .modal-title {
        font-size: 1.1rem;
    }

    .calendly-inline-widget {
        min-width: 280px !important;
        height: 94vh !important;
    }

    /* Responsive pour le centre de contact */
    .choice-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .choice-card-featured {
        transform: none;
    }

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

    .choice-card {
        padding: 30px 20px;
    }

    .contact-form-container {
        margin: 20px;
        padding: 30px 20px;
    }

    .social-proof {
        flex-direction: column;
        gap: 10px;
    }

    /* Responsive galerie */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        gap: 15px;
    }

    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-cta {
        padding: 30px 20px;
    }

    .gallery-cta-title {
        font-size: 1.5rem;
    }

    /* Responsive FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-cta {
        padding: 30px 20px;
    }

    .google-rating-header {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    /* Responsive équipe */
    .team-mosaic {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Afficher la 4ème photo sur mobile et tablette */
    .team-photo[data-photo="4"] {
        display: block;
    }

    .team-gallery {
        padding: 20px;
    }

    .thai-pattern-frame {
        padding: 15px;
    }

    .main-team-image {
        max-width: 300px;
        height: 250px;
    }

    .pattern-corner {
        width: 30px;
        height: 30px;
    }

    /* Modal équipe responsive */
    .team-full-photo {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .full-team-img {
        height: 250px;
        max-width: 300px;
        margin: 0 auto;
    }

    .team-modal {
        max-width: 95%;
        margin: 20px;
    }
}

/* Media query pour petites tablettes (481px à 767px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }

    .trust-indicators {
        flex-direction: column;
    }

    /* Pages légales responsive */
    .legal-page {
        padding: 100px 0 60px;
    }

    .legal-header {
        padding: 40px 20px;
    }

    .legal-title {
        font-size: 2rem;
    }

    .legal-body {
        padding: 40px 20px;
    }

    .legal-footer {
        padding: 30px 20px;
    }

    /* Responsive pour la bannière cookies compacte */
    .cookie-banner-compact {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-height: 90vh;
    }

    .cookie-banner-content {
        max-height: 90vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .cookie-expanded-view {
        padding: 20px;
        max-height: calc(90vh - 40px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .cookie-compact-view {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        text-align: center;
    }

    .cookie-compact-left {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .cookie-compact-actions {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .btn-cookie-compact {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .cookie-expanded-view {
        padding: 20px;
    }

    .cookie-expanded-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cookie-header-left {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .cookie-categories {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cookie-expanded-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-cookie-expanded {
        width: 100%;
        padding: 15px;
    }

    .cookie-expanded-footer {
        font-size: 0.85rem;
    }

    /* Responsive pour les nouvelles sections */
    .values-horizontal {
        gap: 10px;
        padding: 15px;
        flex-direction: column;
    }

    .values-horizontal .value-item {
        min-width: auto;
        width: 100%;
        max-width: 120px;
        padding: 10px 15px;
    }

    .method-intro {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .step-features {
        justify-content: center;
        gap: 8px;
    }

    .feature-tag {
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    /* Responsive pour les nouvelles sections */
    .stats-horizontal {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }

    .stats-horizontal .stat-number {
        font-size: 2rem;
    }

    .stats-horizontal .stat-label {
        font-size: 0.9rem;
    }

    .custom-destination-icons {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .custom-icon {
        font-size: 2rem;
    }

    .custom-features {
        gap: 6px;
    }

    .custom-feature {
        font-size: 0.8rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .values-horizontal {
        flex-direction: column;
        align-items: stretch;
        padding: 15px;
    }
    .values-horizontal .value-item {
        flex-direction: row;
        max-width: none;
        text-align: left;
        padding: 15px;
        gap: 15px;
    }
    .values-horizontal .value-icon {
        font-size: 1.5rem;
    }
}

/* Modal Galerie des voyageurs */
.gallery-modal-accueil {
    max-width: 95vw;
    max-height: 95vh;
    width: auto;
    height: auto;
}

.gallery-modal-accueil-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 20px 60px;
}

.gallery-modal-accueil-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}

.gallery-modal-accueil-image {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
}

.gallery-modal-accueil-info {
    margin-top: 20px;
    text-align: center;
    padding: 0 20px;
}

.gallery-modal-accueil-info h4 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 8px;
    font-weight: 600;
}

.gallery-modal-accueil-info p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 12px;
}

.gallery-modal-accueil-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.gallery-modal-accueil-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    color: var(--black);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-accueil-nav-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-heavy);
}

.gallery-modal-accueil-nav-btn.prev {
    left: 10px;
}

.gallery-modal-accueil-nav-btn.next {
    right: 10px;
}

.gallery-modal-accueil-counter {
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    display: inline-block;
    margin: 15px auto 0;
}

.gallery-modal-accueil-counter span {
    font-size: 0.95rem;
    color: var(--gray-dark);
    font-weight: 500;
}

/* Rendre les images de la galerie cliquables */
.gallery-modal-accueil-item {
    cursor: pointer;
    transition: var(--transition);
}

.gallery-modal-accueil-item:hover {
    transform: scale(1.02);
}

/* Responsive pour la modal galerie */
@media (max-width: 768px) {
    .gallery-modal-accueil {
        max-width: 98vw;
        max-height: 98vh;
    }

    .gallery-modal-accueil-container {
        padding: 20px 40px;
        min-height: 50vh;
    }

    .gallery-modal-accueil-image {
        max-height: 50vh;
    }

    .gallery-modal-accueil-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .gallery-modal-accueil-nav-btn.prev {
        left: 5px;
    }

    .gallery-modal-accueil-nav-btn.next {
        right: 5px;
    }

    .gallery-modal-accueil-info h4 {
        font-size: 1.3rem;
    }

    .gallery-modal-accueil-info p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-modal-accueil-container {
        padding: 10px 30px;
    }

    .gallery-modal-accueil-image {
        max-height: 40vh;
    }

    .gallery-modal-accueil-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .gallery-modal-accueil-info h4 {
        font-size: 1.2rem;
    }
    
    .gallery-modal-accueil-info p {
        font-size: 0.95rem;
    }
}

.destination-card.full-width {
    width: 100%;
    flex-basis: 100%;
    background: linear-gradient(90deg, #ffe9c7 0%, #fffbe6 100%);
    margin-top: 30px;
    min-height: 140px;
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
    grid-column: 1/-1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffd59e;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.destination-card.full-width:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.13);
    border-color: #ffb747;
}
.destination-card.full-width .destination-name {
    font-size: 2.1rem;
    color: #e08a00;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 1px;
}
.destination-card.full-width .destination-description {
    font-size: 1.18rem;
    color: #7a5c1e;
    margin-bottom: 14px;
}
.destination-card.full-width .destination-cta {
    background: #ffb747;
    color: #fff;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.08rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(255,183,71,0.10);
    transition: background 0.2s, color 0.2s;
}
.destination-card.full-width .destination-cta:hover {
    background: #e08a00;
    color: #fffbe6;
}

.destination-card.full-width.inspiration-card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1/-1;
    border: none;
    margin-top: 40px;
    padding: 32px 0;
    animation: inspirationFadeIn 1.2s;
    background: none;
}
.inspiration-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}
.inspiration-blur {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.38);
    backdrop-filter: blur(1px);
    z-index: 1;
}
.inspiration-content {
    text-align: center;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    color: #fff;
}
.inspiration-icon {
    font-size: 2.8rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 8px #ffb74755);
}
.destination-card.full-width.inspiration-card .destination-name {
    font-size: 2.3rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px #00000099, 0 2px 8px #fffbe6cc;
}
.destination-card.full-width.inspiration-card .destination-description {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 22px;
    line-height: 1.6;
    text-shadow: 0 2px 12px #00000099;
}
.inspiration-highlight {
    color: #ffb747;
    font-weight: 700;
    font-size: 1.08em;
    text-shadow: 0 2px 12px #00000099;
}
.destination-card.full-width.inspiration-card .inspiration-cta {
    background: linear-gradient(90deg, #ffb747 0%, #e08a00 100%);
    color: #fff;
    padding: 14px 38px;
    border-radius: 32px;
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(255,183,71,0.13);
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
    margin-top: 10px;
}
.destination-card.full-width.inspiration-card .inspiration-cta:hover {
    background: linear-gradient(90deg, #e08a00 0%, #ffb747 100%);
    color: #fffbe6;
    transform: scale(1.06);
}

.wave-text span[data-space="1"] {
    width: 0.1em;
    display: inline-block;
}

/* ===== MODALS DE RETOUR FORMULAIRE ===== */
.error-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.error-modal {
    background: white;
    border-radius: 16px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s ease;
}

.error-header {
    padding: 30px;
    text-align: center;
    border-radius: 16px 16px 0 0;
}

.error-header {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
    color: white;
}

.error-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.error-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.error-content {
    padding: 30px;
}

.error-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

.error-actions .btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.error-actions .btn-primary {
    background: #ffb747;
    color: white;
}

.error-actions .btn-primary:hover {
    background: #ff8c42;
    transform: translateY(-2px);
}

.error-actions .btn-secondary {
    background: #6c757d;
    color: white;
}

.error-actions .btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive pour les modals */
@media (max-width: 768px) {
    .error-modal {
        width: 95%;
        margin: 20px;
    }

    .error-header,
    .error-content {
        padding: 20px;
    }

    .error-icon {
        font-size: 36px;
    }

    .error-header h3 {
        font-size: 20px;
    }

    .error-actions {
        flex-direction: column;
        gap: 10px;
    }

    .error-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* Nouveau conteneur du formulaire amélioré */
.contact-form-container-improved {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 183, 71, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-container-improved::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 1;
}

.form-header-improved {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
}

.form-header-improved .form-title {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 10px;
    font-weight: 600;
}

.form-header-improved .form-subtitle {
    color: var(--gray-medium);
    font-size: 1rem;
    margin-bottom: 8px;
}

/* Option d'appel intégrée */
.alternative-contact {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 183, 71, 0.05), rgba(74, 144, 164, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(255, 183, 71, 0.2);
    text-align: center;
}

.alternative-text {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 15px;
    font-weight: 500;
}

.btn-call-alternative {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: black;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(74, 144, 164, 0.3);
}

.btn-call-alternative:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 164, 0.4);
}

.call-icon {
    font-size: 1.1rem;
}

/* Améliorations du formulaire */
.contact-form-container-improved .form-submit {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-form-container-improved .form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 183, 71, 0.4);
}

.btn-icon {
    font-size: 1.2rem;
}

.form-guarantee {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 183, 71, 0.05);
    border-radius: 10px;
    color: var(--gray-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.guarantee-icons {
    display: inline-block;
    margin-right: 8px;
    font-size: 1rem;
}

/* Responsive pour la nouvelle interface */
@media (max-width: 768px) {
    .contact-form-container-improved {
        padding: 25px;
        margin: 0 15px;
    }
    
    .form-header-improved .form-title {
        font-size: 1.5rem;
    }
    
    .alternative-contact {
        padding: 15px;
    }
    
    .btn-call-alternative {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .contact-form-container-improved {
        padding: 20px;
        margin: 0 10px;
    }
    
    .form-header-improved .form-title {
        font-size: 1.3rem;
    }
    
    .alternative-contact {
        padding: 12px;
    }
    
    .btn-call-alternative {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* ===== BANNIÈRE CTA STICKY GLOBALE ===== */
.cta-banner-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c42 100%);
    color: white;
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid rgba(255, 255, 255, 0.2);
}

.cta-banner-sticky.show {
    transform: translateY(0);
    opacity: 1;
}

.cta-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cta-banner-text {
    flex-grow: 1;
}

.cta-banner-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}

.cta-banner-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

.cta-banner-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-cta-banner {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-cta-banner:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-banner-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

.btn-banner-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Responsive pour la bannière CTA */
@media (max-width: 768px) {
    .cta-banner-sticky {
        padding: 14px 16px;
    }

    .cta-banner-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .cta-banner-title {
        font-size: 1rem;
    }

    .cta-banner-subtitle {
        font-size: 0.85rem;
    }

    .cta-banner-actions {
        width: 100%;
        justify-content: center;
    }

    .btn-cta-banner {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cta-banner-content {
        gap: 10px;
    }

    .cta-banner-title {
        font-size: 0.95rem;
    }

    .btn-cta-banner {
        padding: 9px 18px;
        font-size: 0.85rem;
    }

    .btn-banner-close {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}