/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #180707;
    background-color: #FAFAFA;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Ajouté pour bloquer le scroll de la page quand le menu est ouvert */
body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Color Variables */
:root {
    --primary-red: #FF3332;
    --primary-orange: #FF854A;
    --dark-text: #180707;
    --light-bg: #FEFEFE;
    --gradient-primary: linear-gradient(135deg, #FF3332 0%, #FF854A 100%);
    --gradient-secondary: linear-gradient(45deg, #FF3332 0%, #FF854A 50%, #FF3332 100%);
}

/* Professional Interactive Elements - Cursor Pointer & Smooth Transitions */
a,
button,
.nav-link,
.offer-btn,
.hero-cta,
.social-link,
.footer-nav-link,
.mobile-nav-link,
.contact-agent-btn,
.close-offer-btn,
.whatsapp-float,
input[type="submit"],
input[type="button"],
[role="button"],
.logo-image,
.offer-card,
.stat-item,
.contact-item {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Transition sophistiquée */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: none;
}

.header.scrolled {
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(24, 7, 7, 0.1);
}

.header.scrolled .nav-container {
    height: 70px;
    padding: 0.1rem 2rem;
}

.header.scrolled .logo-image {
    width: 70px;
    height: 70px;
    max-width: 100%;
    height: auto;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 2rem;
    max-width: 1200px;
    height: 90px;
    margin: 0 auto;
}

.nav-left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    margin-right: 2rem;
    margin-left: -1rem;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.logo-image {
    width: 85px;
    height: 85px;
    object-fit: contain;
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
}

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

.logo-circle {
    width: 40px;
    height: 40px;
    background: #60BE76;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* Cacher le menu mobile sur desktop */
.mobile-menu {
    display: none;
}

/* Cacher le menu sur mobile par défaut */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
    }
}

.nav-link {
    text-decoration: none;
    color: #180707;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.nav-link:hover {
    color: #FF3332;
    background: rgba(255, 51, 50, 0.08);
    transform: translateY(-2px);
    border-radius: 0.5rem;
}

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

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

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(255, 51, 50, 0.3);
}

.nav-cta:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 51, 50, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: #000000;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background: #FAFAFA;
    overflow: hidden;
    padding: 90px 5% 0;
    transition: padding-top 0.3s ease;
    flex-direction: row-reverse;
    max-width: 100vw;
}

.header.scrolled ~ .hero {
    padding-top: 70px;
}

/* Hero Layout Container */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

/* Left Side - Phone Animation */
.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    position: relative;
}

.phone-animation-container {
    perspective: 1000px; /* Même perspective que le drapeau */
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform-style: preserve-3d;
    animation: float3D 6s ease-in-out infinite; /* Même animation de flottement que le drapeau */
}

/* Center - Content - Option 2: Compact et Centré */
.hero-center {
    display: flex;
    align-items: center; /* Centré verticalement */
    justify-content: center;
    position: relative;
    z-index: 10;
    padding: 2rem 1rem; /* Padding pour respirer */
}

.hero-content {
    max-width: 500px;
}

/* Right Side - Flag Animation */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    position: relative;
}

/* Les deux images de téléphone avec exactement la même animation que le drapeau */
.phone-1,
.phone-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    object-fit: contain;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    animation: rotate3D 20s linear infinite; /* Même rotation continue que le drapeau */
}

/* Animation de rotation pendant la transition */
.phone-1.rotating,
.phone-2.rotating {
    animation: phoneRotation 3s ease-in-out;
}

/* Keyframes pour l'animation de rotation des téléphones */
@keyframes phoneRotation {
    0% {
        transform: rotateY(0deg) scale(1);
        opacity: 1;
    }
    25% {
        transform: rotateY(45deg) scale(1.05);
        opacity: 0.9;
    }
    50% {
        transform: rotateY(90deg) scale(1.1);
        opacity: 0.7;
    }
    75% {
        transform: rotateY(135deg) scale(1.05);
        opacity: 0.5;
    }
    100% {
        transform: rotateY(180deg) scale(1);
        opacity: 0;
    }
}

/* 3D Flag Scene (Right Side) */
.flag-3d-scene {
    position: relative;
    z-index: 2;
    perspective: 1000px;
    flex-shrink: 0;
    margin-right: 2rem;
}

.flag-container {
    position: relative;
    width: 400px;
    height: 400px;
    max-width: 90vw;
    max-height: 90vw;
    transform-style: preserve-3d;
    animation: float3D 6s ease-in-out infinite;
}

.flag-3d {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotate3D 20s linear infinite;
}

.flag-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 4px rgba(255, 255, 255, 0.8),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.3));
    max-width: 100%;
    height: auto;
}

.flag-3d:hover .flag-image {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 6px rgba(255, 255, 255, 0.9),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 0 30px rgba(255, 0, 0, 0.5));
}

.flag-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: -1;
}

.flag-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: shadowFloat 6s ease-in-out infinite;
}

.flag-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #FF3332, #FF854A);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; animation-duration: 6s; }
.particle-2 { top: 30%; right: 15%; animation-delay: 1s; animation-duration: 7s; }
.particle-3 { bottom: 30%; left: 20%; animation-delay: 2s; animation-duration: 8s; }
.particle-4 { bottom: 20%; right: 10%; animation-delay: 3s; animation-duration: 6.5s; }
.particle-5 { top: 50%; left: 5%; animation-delay: 4s; animation-duration: 7.5s; }
.particle-6 { top: 60%; right: 5%; animation-delay: 5s; animation-duration: 8.5s; }

/* 3D Animations */
@keyframes float3D { 0%, 100% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); } 25% { transform: translateY(-10px) rotateX(5deg) rotateY(5deg); } 50% { transform: translateY(-20px) rotateX(0deg) rotateY(10deg); } 75% { transform: translateY(-10px) rotateX(-5deg) rotateY(5deg); } }
@keyframes rotate3D { 0% { transform: rotateY(0deg) rotateX(0deg); } 25% { transform: rotateY(90deg) rotateX(5deg); } 50% { transform: rotateY(180deg) rotateX(0deg); } 75% { transform: rotateY(270deg) rotateX(-5deg); } 100% { transform: rotateY(360deg) rotateX(0deg); } }
@keyframes pulseGlow { 0%, 100% { opacity: 0.3; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.1); } }
@keyframes shadowFloat { 0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.3; } 50% { transform: translateX(-50%) scale(1.2); opacity: 0.5; } }
@keyframes particleFloat { 0% { transform: translateY(0px) translateX(0px) scale(0); opacity: 0; } 10% { opacity: 1; transform: scale(1); } 90% { opacity: 1; transform: translateY(-100px) translateX(50px) scale(1); } 100% { transform: translateY(-120px) translateX(60px) scale(0); opacity: 0; } }

/* Hero Background - Clean and Professional */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F8F8F8 0%, #F0F0F0 100%);
    z-index: 1;
    overflow: hidden;
}

/* Conteneur pour les images d'arrière-plan */
.background-images-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, rgba(248, 248, 248, 0.8) 0%, rgba(240, 240, 240, 0.6) 100%);
}

/* Images d'arrière-plan */
.background-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    object-fit: contain;
    opacity: 0;
    filter: blur(3px);
    transition: opacity 1s ease-in-out;
    z-index: -1;
}

/* Image active */
.background-image.active {
    opacity: 0.15;
}

/* Animation de rotation pour les images d'arrière-plan */
.background-image.rotating {
    animation: backgroundRotate 20s linear infinite;
}

@keyframes backgroundRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero-content {
    text-align: center; /* Centré pour un look plus professionnel */
    z-index: 10;
    position: relative;
    max-width: 500px;
    padding: 0;
    margin: 0 auto; /* Centré horizontalement */
}
.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--dark-text);
    line-height: 1.3; /* Ajusté pour les sauts de ligne */
    text-align: center;
    white-space: pre-line; /* Permet les sauts de ligne */
}
.hero-emoji {
    font-size: 2rem;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Conteneur pour le mot dynamique */
.dynamic-word-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

/* Mot dynamique avec dégradé */
.dynamic-word {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF3333, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

/* Animation de changement de mot */
.dynamic-word.changing {
    transform: translateY(100%);
    opacity: 0;
}

.dynamic-word.new-word {
    transform: translateY(-100%);
    opacity: 0;
    animation: slideInWord 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Animation de glissement */
@keyframes slideInWord {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Effet de survol */
.dynamic-word:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #FF8C00, #FF3333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animation automatique de rotation des couleurs */
@keyframes colorShift {
    0% {
        background: linear-gradient(135deg, #FF3333, #FF8C00);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    25% {
        background: linear-gradient(135deg, #FF8C00, #FFD700);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    50% {
        background: linear-gradient(135deg, #FFD700, #00FF7F);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    75% {
        background: linear-gradient(135deg, #00FF7F, #4169E1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    100% {
        background: linear-gradient(135deg, #4169E1, #FF3333);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

.dynamic-word.auto-animate {
    animation: colorShift 8s ease-in-out infinite;
}
.hero-subtitle {
    font-size: 1rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem; /* Réduit pour rapprocher le bouton */
    line-height: 1.6;
    opacity: 0.8;
}
.hero-cta {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 8px 25px rgba(255, 51, 50, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 1rem; /* Espacement réduit à 16px au lieu de 24px */
}
.hero-cta::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; }
.hero-cta:hover::before { left: 100%; }
.hero-cta:hover { background: var(--gradient-secondary); transform: translateY(-3px); box-shadow: 0 12px 35px rgba(255, 51, 50, 0.4); }

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #000000;
}

.section-emoji {
    font-size: 2rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Offers Section */
.offers {
    padding: 3rem 0;
    background: linear-gradient(135deg, #FEFEFE 0%, rgba(255, 133, 74, 0.05) 100%);
}

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

.offer-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    min-height: 400px;
    box-shadow: 0 10px 30px rgba(24, 7, 7, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    will-change: transform, opacity;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.offer-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(255, 51, 50, 0.2);
    border-color: var(--primary-red);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 51, 50, 0.05), rgba(255, 133, 74, 0.05));
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-card.featured {
    border-color: var(--primary-red);
    transform: scale(1.05);
    background: linear-gradient(135deg, #FEFEFE 0%, rgba(255, 51, 50, 0.02) 100%);
}

.offer-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 51, 50, 0.3);
}

.offer-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.offer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.offer-subtitle {
    color: var(--dark-text);
    font-size: 1rem;
    opacity: 0.7;
}

.offer-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-left: 0.5rem;
    opacity: 0.7;
}

.offer-features {
    list-style: none;
    margin-bottom: 2rem;
}

.offer-features li {
    padding: 0.5rem 0;
    color: var(--dark-text);
    position: relative;
    padding-left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.offer-features li i {
    color: var(--primary-red);
    font-size: 1.1rem;
}

.offer-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(255, 51, 50, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.offer-btn::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;
}

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

.offer-btn:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 50, 0.35);
}

/* Slider Section */
.slider-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-text) 0%, #2a0a0a 100%);
    position: relative;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.slider {
    position: relative;
    height: 500px;
}

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

.slide.active {
    opacity: 1;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 51, 50, 0.8), rgba(24, 7, 7, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.slide-emoji {
    font-size: 2rem;
}

.slide-text {
    font-size: 1.2rem;
    max-width: 600px;
    line-height: 1.6;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-red);
}

.dot:hover {
    background: var(--primary-red);
}

/* About Section */
.about {
    padding: 3rem 0;
    background: linear-gradient(135deg, #FEFEFE 0%, rgba(255, 133, 74, 0.03) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--dark-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.about-features {
    list-style: none;
    margin-top: 1rem;
}

.about-features li {
    padding: 0.75rem 0;
    color: var(--dark-text);
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 133, 74, 0.1);
    transition: all 0.3s ease;
}

.about-features li:hover {
    color: var(--primary-red);
    padding-left: 1rem;
    background: rgba(255, 51, 50, 0.05);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 133, 74, 0.05);
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 133, 74, 0.1);
}

.stat-item:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 51, 50, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    color: white;
    -webkit-text-fill-color: white;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text);
    transition: color 0.3s ease;
    opacity: 0.7;
}

.stat-item:hover .stat-label {
    color: white;
    opacity: 1;
}

/* Contact Section */
.contact {
    padding: 3rem 0;
    background: linear-gradient(135deg, #FEFEFE 0%, rgba(255, 133, 74, 0.05) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E5E5E5;
    border-radius: 0.5rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(255, 51, 50, 0.1);
}

/* Masquer le calendrier pour les champs date */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
}

.form-group input[type="date"]::-webkit-inner-spin-button,
.form-group input[type="date"]::-webkit-outer-spin-button {
    display: none;
}

.form-group input[type="date"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
}

.form-submit {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(255, 51, 50, 0.3);
    position: relative;
    overflow: hidden;
}

.form-submit::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;
}

.form-submit:hover::before {
    left: 100%;
}

.form-submit:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 51, 50, 0.4);
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark-text);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 133, 74, 0.05);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 133, 74, 0.1);
}

.contact-item:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 51, 50, 0.3);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-red);
    transition: color 0.3s ease;
}

.contact-item:hover .contact-icon {
    color: white;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 25%, #3a3a3a 50%, #2d2d2d 75%, #1a1a1a 100%);
    color: #ffffff;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-orange), var(--primary-red));
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 51, 50, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 133, 74, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    gap: 3rem;
    padding: 2rem 0;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    flex: 0 0 auto;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-2px);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.footer-nav-main {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.footer-nav-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
}

.footer-nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

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

.footer-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

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

.footer-legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    text-align: center;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-legal-link:hover {
    color: var(--primary-red);
    background: rgba(255, 51, 50, 0.1);
    border-color: var(--primary-red);
}

.footer-logo-image {
    width: 85px;
    height: 85px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.6rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-orange));
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 51, 50, 0.4);
    border-color: transparent;
}

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

.social-link:hover::before {
    left: 100%;
}

.social-link i {
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.2);
}


.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 2px solid rgba(255, 133, 74, 0.3);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
    margin-top: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Advanced Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

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

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Parallax effect for hero background */
.hero-background {
    animation: parallax 20s ease-in-out infinite;
}

@keyframes parallax {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 7, 7, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 1.5rem;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(24, 7, 7, 0.3);
    animation: slideInUp 0.4s ease;
    border: 1px solid rgba(255, 51, 50, 0.1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-text);
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 51, 50, 0.1);
}

.modal-close:hover {
    background: var(--primary-red);
    color: white;
    transform: scale(1.1);
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    border-radius: 1.5rem 1.5rem 0 0;
    text-align: center;
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.modal-body {
    padding: 2rem;
}

.modal-slider {
    position: relative;
    height: 300px;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(24, 7, 7, 0.1);
}

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

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

.modal-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-slide .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 51, 50, 0.8), rgba(24, 7, 7, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.modal-slide .slide-overlay h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-slide .slide-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

.modal-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.info-grid {
    display: grid;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 133, 74, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 133, 74, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 51, 50, 0.05);
    border-color: var(--primary-red);
    transform: translateX(5px);
}

.info-item i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.info-item span {
    color: var(--dark-text);
    font-weight: 500;
}

.modal-price {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 133, 74, 0.05) 0%, rgba(255, 51, 50, 0.05) 100%);
    border-radius: 1rem;
    border: 1px solid rgba(255, 133, 74, 0.2);
}

.modal-price .price {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.modal-price .period {
    font-size: 1.2rem;
    color: var(--dark-text);
    opacity: 0.7;
}

.modal-footer {
    padding: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    background: rgba(255, 133, 74, 0.02);
    border-radius: 0 0 1.5rem 1.5rem;
}

.modal-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.modal-btn.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 51, 50, 0.3);
}

.modal-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;
}

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

.modal-btn.primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 51, 50, 0.4);
}

.modal-btn.primary:disabled,
.modal-btn.primary.disabled {
    background: #cccccc;
    color: #666666;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.modal-btn.primary:disabled:hover,
.modal-btn.primary.disabled:hover {
    background: #cccccc;
    color: #666666;
    transform: none;
    box-shadow: none;
}

.modal-btn.primary:disabled::before,
.modal-btn.primary.disabled::before {
    display: none;
}

.modal-btn.secondary {
    background: rgba(255, 133, 74, 0.1);
    color: var(--dark-text);
    border: 1px solid rgba(255, 133, 74, 0.3);
}

.modal-btn.secondary:hover {
    background: rgba(255, 133, 74, 0.2);
    transform: translateY(-2px);
}

/* Comparateur Form Styles */
.comparateur-content {
    max-width: 700px;
}

.comparateur-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(255, 133, 74, 0.2);
    border-radius: 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 133, 74, 0.02);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 51, 50, 0.1);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--primary-red);
    background: white;
}

.checkbox-group {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--dark-text);
    position: relative;
    padding-left: 2rem;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background: rgba(255, 133, 74, 0.1);
    border: 2px solid rgba(255, 133, 74, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-label:hover .checkmark {
    background: rgba(255, 51, 50, 0.1);
    border-color: var(--primary-red);
}

.checkbox-label input:checked ~ .checkmark {
    background: var(--gradient-primary);
    border-color: var(--primary-red);
}

.checkbox-label input:checked ~ .checkmark:after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Autre Opérateur Field Animation */
#autre-operateur-group {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 133, 74, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 133, 74, 0.2);
}

#autre-operateur-group.show {
    opacity: 1;
    transform: translateY(0);
}

#autre-operateur-group input {
    background: white;
    border: 2px solid rgba(255, 51, 50, 0.2);
    transition: all 0.3s ease;
}

#autre-operateur-group input:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(255, 51, 50, 0.1);
    transform: translateY(-2px);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 115px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    filter: none !important;
    -webkit-filter: none !important;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.whatsapp-float.disabled:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: 30px;
    color: white;
    filter: none !important;
    -webkit-filter: none !important;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: ripple 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Success Alert Styles */
.success-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-alert.show {
    opacity: 1;
    visibility: visible;
}

.success-alert-content {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(76, 175, 80, 0.3);
    transform: scale(0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.success-alert.show .success-alert-content {
    transform: scale(1);
}

.success-alert-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.success-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.success-icon i {
    font-size: 4rem;
    color: white;
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.success-text {
    text-align: center;
    color: white;
}

.success-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.success-text p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.success-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.success-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.success-close i {
    font-size: 1.2rem;
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* ==========================================================================
   CORRECTIONS RESPONSIVE POUR MOBILE - CORRIGÉES
   ========================================================================== */

/* Mobile Menu - Version corrigée */
@media (max-width: 768px) {
    /* Empêcher le débordement horizontal */
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    .container {
        padding: 0 1rem;
    }

    /* Navigation mobile corrigée */
    .nav-container {
        padding: 0.5rem 1rem;
        height: 70px;
    }

    .nav-center {
        display: none;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    /* Menu mobile séparé - visible uniquement sur mobile */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        backdrop-filter: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        border-right: 1px solid rgba(255, 255, 255, 0.3);
        display: flex;
        overflow-y: auto;
    }

    .mobile-menu.active {
        left: 0;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        background: var(--gradient-primary);
        color: white;
        width: 100%;
    }

    .mobile-menu-header h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0;
    }

    .mobile-menu-close {
        background: none;
        border: none;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        padding: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-content {
        padding: 2rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .mobile-nav-link {
        display: block;
        padding: 1.2rem 0;
        font-size: 1.2rem;
        font-weight: 600;
        color: #000;
        text-decoration: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
        transition: all 0.3s ease;
        text-shadow: none;
        filter: none;
        position: relative;
    }

    .mobile-nav-link:hover {
        color: var(--primary-red);
        padding-left: 1rem;
        background: rgba(255, 51, 50, 0.1);
        transform: translateX(5px);
    }

    .mobile-nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--gradient-primary);
        transition: height 0.3s ease;
    }

    .mobile-nav-link:hover::before {
        height: 20px;
    }


    .mobile-menu.active {
        left: 0;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        background: var(--gradient-primary);
        color: white;
        width: 100%;
    }

    .mobile-menu-header h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0;
    }

    .mobile-menu-close {
        background: none;
        border: none;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        padding: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-content {
        padding: 2rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .mobile-nav-link {
        display: block;
        padding: 1.2rem 0;
        font-size: 1.2rem;
        font-weight: 600;
        color: #000;
        text-decoration: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
        transition: all 0.3s ease;
        text-shadow: none;
        filter: none;
        position: relative;
    }

    .mobile-nav-link:hover {
        color: var(--primary-red);
        padding-left: 1rem;
        background: rgba(255, 51, 50, 0.1);
        transform: translateX(5px);
    }

    .mobile-nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--gradient-primary);
        transition: height 0.3s ease;
    }

    .mobile-nav-link:hover::before {
        height: 20px;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 1.2rem 0;
        font-size: 1.2rem;
        font-weight: 600;
        color: #000;
        text-decoration: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
        transition: all 0.3s ease;
        text-shadow: none;
        filter: none;
        position: relative;
    }

    .nav-menu .nav-link:hover {
        color: var(--primary-red);
        padding-left: 1rem;
        background: rgba(255, 51, 50, 0.1);
        transform: translateX(5px);
    }

    .nav-menu .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--gradient-primary);
        transition: height 0.3s ease;
    }

    .nav-menu .nav-link:hover::before {
        height: 20px;
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

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

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero section mobile */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 70px 1rem 2rem;
        min-height: auto;
    }

    .hero-content {
        text-align: center; /* Centré pour cohérence */
        max-width: 100%;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem; /* Légèrement plus grand pour l'équilibre */
        line-height: 1.3; /* Ajusté pour les sauts de ligne */
    }

    .hero-title-highlight {
        font-size: 1.6rem; /* Taille adaptée pour tablette */
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 2rem;
        padding: 0 1rem;
        justify-items: center; /* Centrer tous les éléments */
    }

    .hero-left,
    .hero-right {
        max-width: 300px;
        width: 100%;
        display: flex;
        justify-content: center; /* Centrer le contenu à l'intérieur */
        align-items: center;
    }

    .hero-center {
        order: -1; /* Mettre le contenu au centre en premier sur mobile */
        padding: 1rem; /* Padding adapté pour mobile */
        text-align: center; /* Centrer le texte */
    }

    .phone-animation-container {
        width: 250px;
        height: 250px;
        animation: float3D 6s ease-in-out infinite; /* Même flottement que le drapeau */
        transform-style: preserve-3d;
        perspective: 1000px;
    }

    .phone-1,
    .phone-2 {
        width: 250px;
        height: 250px;
        object-fit: contain;
        animation: rotate3D 20s linear infinite; /* Même rotation que le drapeau */
    }

    /* Animation de rotation pendant la transition (responsive) */
    .phone-1.rotating,
    .phone-2.rotating {
        animation: phoneRotation 3s ease-in-out;
    }

    .flag-3d-scene {
        margin-right: 0;
        margin-top: 1rem;
    }

    .flag-container {
        width: 250px;
        height: 250px;
    }

    /* Sections générales */
    .section-title {
        font-size: 1.8rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Modal mobile */
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }

    .modal-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .modal-footer {
        flex-direction: column;
        gap: 1rem;
    }

    .modal-btn {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Slider mobile */
    .slider {
        height: 300px;
    }

    .slide-title {
        font-size: 1.5rem;
    }

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

    /* WhatsApp button tablette */
    .whatsapp-float {
        bottom: 100px;
        right: 20px;
        width: 58px;
        height: 58px;
        filter: none !important;
    }

    .whatsapp-float i {
        font-size: 24px;
    }
}

/* Mobile spécifique */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 90px;
        right: 15px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float i {
        font-size: 24px;
    }
}

/* Petits mobiles */
@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .nav-container {
        padding: 0.5rem;
    }

    .logo-image {
        width: 60px;
    }
    
    /* WhatsApp button petit mobile */
    .whatsapp-float {
        bottom: 75px;
        right: 10px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float i {
        font-size: 22px;
    }

    .hero-layout {
        gap: 1.5rem;
        padding: 0 0.5rem;
        justify-items: center; /* Maintenir le centrage sur petits écrans */
    }

    .hero-left,
    .hero-right {
        max-width: 220px;
        display: flex;
        justify-content: center; /* Centrer le contenu */
        align-items: center;
    }

    .hero-content {
        text-align: center; /* Garder le texte centré sur mobile */
        margin-left: 0;
    }

    .phone-animation-container {
        width: 200px;
        height: 200px;
        animation: float3D 6s ease-in-out infinite; /* Même flottement que le drapeau */
        transform-style: preserve-3d;
        perspective: 1000px;
    }

    .phone-1,
    .phone-2 {
        width: 200px;
        height: 200px;
        object-fit: contain;
        animation: rotate3D 20s linear infinite; /* Même rotation que le drapeau */
    }

    /* Animation de rotation pendant la transition (petits mobiles) */
    .phone-1.rotating,
    .phone-2.rotating {
        animation: phoneRotation 3s ease-in-out;
    }

    .hero-title {
        font-size: 1.8rem; /* Adapté pour petits mobiles */
        line-height: 1.3; /* Ajusté pour les sauts de ligne */
    }

    .hero-title-highlight {
        font-size: 1.4rem; /* Taille adaptée pour petits mobiles */
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-cta {
        padding: 0.7rem 1.3rem;
        font-size: 0.95rem;
    }

    .hero-content {
        text-align: center; /* Centré pour cohérence sur mobile */
        padding: 0.5rem;
        margin: 0 auto; /* Centré horizontalement */
    }

    .flag-container {
        width: 200px;
        height: 200px;
    }

    .offer-card {
        padding: 1.5rem;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }

    .modal-content {
        width: 98%;
        margin: 2% auto;
    }
}

/* Correction spécifique pour le débordement horizontal */
@media (max-width: 768px) {
    .hero,
    .offers,
    .about,
    .slider-section,
    .contact,
    .footer {
        width: 100%;
        overflow-x: hidden;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
    }
}

/* Style pour le logo dans le menu mobile */
.mobile-menu-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* ==========================================================================
   LOADING MODAL STYLES
   ========================================================================== */
.loading-modal {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.loading-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 400px;
    width: 90%;
}

.loading-logo {
    margin-bottom: 2rem;
    animation: logoPulse 2s ease-in-out infinite;
}

.loading-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 51, 50, 0.5));
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--primary-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
}

.loading-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loading-text {
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.6;
}

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

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

/* ==========================================================================
   BEST OFFER MODAL STYLES
   ========================================================================== */
.best-offer-modal {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

/* Legal modal styling */
.legal-modal {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.legal-modal .modal-content.legal-content {
    position: relative;
    background: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 1.5rem;
    width: 95%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s ease;
    border: 1px solid rgba(255, 51, 50, 0.1);
    display: flex;
    flex-direction: column;
}

.legal-modal .modal-header {
    padding: 1.25rem 1.5rem 0.5rem 1.5rem;
}

.legal-modal .modal-body {
    padding: 0 1.5rem 1rem 1.5rem;
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.legal-modal-body {
    overflow: auto;
    flex: 1;
    padding-right: 0.5rem;
    margin-bottom: 1rem;
}

.legal-modal-body h1,
.legal-modal-body h2,
.legal-modal-body h3 {
    margin: 1rem 0 0.5rem 0;
}

.legal-modal-body p,
.legal-modal-body li {
    color: #333;
}

.loading-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem 0;
}

/* Amélioration de la visibilité du bouton Fermer */
.legal-modal .modal-footer {
    background: #f8f9fa;
    border-top: 2px solid #e9ecef;
    padding: 1.5rem 2rem;
    margin-top: 0;
    flex-shrink: 0;
    border-radius: 0 0 1.5rem 1.5rem;
}

.legal-modal .modal-btn.primary {
    background: var(--gradient-primary);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(255, 51, 50, 0.3);
    border: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.legal-modal .modal-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 51, 50, 0.4);
}

.legal-modal .modal-btn.primary:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 51, 50, 0.4);
}

/* ==========================================================================
   RESPONSIVE LEGAL MODAL - MOBILE & TABLET
   ========================================================================== */

/* Tablettes (768px - 1024px) */
@media (max-width: 1024px) {
    .legal-modal .modal-content.legal-content {
        width: 98%;
        max-width: 800px;
        margin: 1% auto;
        max-height: 95vh;
    }
    
    .legal-modal .modal-header {
        padding: 1rem 1.25rem 0.5rem 1.25rem;
    }
    
    .legal-modal .modal-body {
        padding: 0 1.25rem 1rem 1.25rem;
    }
    
    .legal-modal .modal-footer {
        padding: 1.25rem 1.5rem;
    }
    
    .legal-modal .modal-btn.primary {
        padding: 1rem 2rem;
        font-size: 1rem;
        font-weight: 600;
    }
}

/* Mobiles (320px - 768px) */
@media (max-width: 768px) {
    .legal-modal .modal-content.legal-content {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }
    
    .legal-modal .modal-header {
        padding: 1rem 1rem 0.5rem 1rem;
        flex-shrink: 0;
    }
    
    .legal-modal .modal-header h2 {
        font-size: 1.5rem;
        margin: 0;
    }
    
    .legal-modal .modal-body {
        padding: 0 1rem 0.5rem 1rem;
        flex: 1;
        overflow: hidden;
    }
    
    .legal-modal-body {
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        padding-right: 0.25rem;
        margin-bottom: 0.5rem;
    }
    
    .legal-modal .modal-footer {
        padding: 1rem;
        flex-shrink: 0;
        border-radius: 0;
        background: #fff;
        border-top: 1px solid #e9ecef;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .legal-modal .modal-btn.primary {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 1rem;
        margin: 0;
    }
    
    .legal-modal-body h1 {
        font-size: 1.5rem;
        margin: 0.75rem 0 0.5rem 0;
    }
    
    .legal-modal-body h2 {
        font-size: 1.25rem;
        margin: 0.75rem 0 0.5rem 0;
    }
    
    .legal-modal-body h3 {
        font-size: 1.1rem;
        margin: 0.5rem 0 0.25rem 0;
    }
    
    .legal-modal-body p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0.5rem 0;
    }
    
    .legal-modal-body ul {
        padding-left: 1.25rem;
    }
    
    .legal-modal-body li {
        font-size: 0.95rem;
        line-height: 1.4;
        margin: 0.25rem 0;
    }
}

/* Très petits mobiles (320px - 480px) */
@media (max-width: 480px) {
    .legal-modal .modal-header {
        padding: 0.75rem 0.75rem 0.25rem 0.75rem;
    }
    
    .legal-modal .modal-header h2 {
        font-size: 1.25rem;
    }
    
    .legal-modal .modal-body {
        padding: 0 0.75rem 0.25rem 0.75rem;
    }
    
    .legal-modal .modal-footer {
        padding: 0.75rem;
    }
    
    .legal-modal .modal-btn.primary {
        padding: 1rem 2rem;
        font-size: 1rem;
        font-weight: 600;
    }
    
    .legal-modal-body h1 {
        font-size: 1.25rem;
    }
    
    .legal-modal-body h2 {
        font-size: 1.1rem;
    }
    
    .legal-modal-body p,
    .legal-modal-body li {
        font-size: 0.9rem;
    }
}

.best-offer-content {
    position: relative;
    background: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 2rem;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s ease;
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.best-offer-header {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    color: white;
    padding: 2rem;
    border-radius: 2rem 2rem 0 0;
    text-align: center;
    position: relative;
}

.best-offer-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.best-offer-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.best-offer-body {
    padding: 2rem;
}

.offer-result {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 51, 50, 0.05) 0%, rgba(255, 133, 74, 0.05) 100%);
    border-radius: 1rem;
    border: 1px solid rgba(255, 51, 50, 0.1);
}

#best-offer-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

#best-offer-description {
    font-size: 1.1rem;
    color: var(--dark-text);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.offer-price-result {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

#best-offer-price {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-features-result {
    margin-top: 2rem;
}

.offer-features-result ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-features-result li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 133, 74, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 133, 74, 0.1);
    transition: all 0.3s ease;
}

.offer-features-result li:hover {
    background: rgba(255, 51, 50, 0.05);
    border-color: var(--primary-red);
    transform: translateX(5px);
}

.offer-features-result li i {
    color: #2E7D32;
    font-size: 1.2rem;
}

.best-offer-footer {
    padding: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    background: rgba(46, 125, 50, 0.02);
    border-radius: 0 0 2rem 2rem;
}

.contact-agent-btn {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.contact-agent-btn:hover {
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

.close-offer-btn {
    background: rgba(46, 125, 50, 0.1);
    color: var(--dark-text);
    border: 1px solid rgba(46, 125, 50, 0.3);
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.close-offer-btn:hover {
    background: rgba(46, 125, 50, 0.2);
    transform: translateY(-2px);
}

/* ==========================================================================
   LEGAL PAGE STYLES
   ========================================================================== */
.legal-page {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #FEFEFE 0%, rgba(255, 133, 74, 0.03) 100%);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(24, 7, 7, 0.1);
    border: 1px solid rgba(255, 51, 50, 0.1);
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-text);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 133, 74, 0.1);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-red);
    display: inline-block;
}

.legal-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.contact-list li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 133, 74, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 133, 74, 0.1);
    transition: all 0.3s ease;
}

.contact-list li:hover {
    background: rgba(255, 51, 50, 0.05);
    border-color: var(--primary-red);
    transform: translateX(5px);
}

.contact-list li strong {
    color: var(--primary-red);
    font-weight: 600;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

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

/* Responsive pour la page légale */
@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 40px;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .legal-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section p {
        font-size: 1rem;
    }
    
    /* Footer responsive */
    .footer-content {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .footer-logo {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .footer-logo-image {
        width: 80px;
        height: 80px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-nav-main {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .footer-nav-legal {
        margin-top: 0;
    }
    
    .footer-nav-link {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        width: 100%;
        max-width: 200px;
    }
    
    .footer-legal-link {
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
    }
    
    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .social-link {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .footer-bottom {
        margin: 1rem;
        padding: 1.5rem;
        font-size: 1rem;
    }
}