/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
    /* Couleurs EXACTES du logo */
    --orange-lumineux: #FFA726;
    --jaune-solaire: #FFCC33;
    --jaune-clair: #FFEB3B;
    --rouge-vif: #E53935;
    --orange-rouge: #FB8C00;
    --orange-fonce: #F57C00;
    --orange-intense: #EF6C00;
    --marron-fonce: #4E342E;
    --noir: #000000;
    
    /* Couleurs complémentaires */
    --light-cream: #FFF8F0;
    --warm-beige: #FFEDD8;
    --text-dark: #2c2c2c;
    --text-light: #666;
    
    /* Espacement */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--rouge-vif), var(--orange-rouge));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(229, 57, 53, 0.5));
    animation: brandGlow 3s ease-in-out infinite;
    position: relative;
}

.brand-name::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 150%;
    background: radial-gradient(ellipse, 
        rgba(255, 235, 59, 0.4) 0%,
        rgba(255, 167, 38, 0.2) 40%,
        transparent 70%);
    border-radius: 50%;
    animation: haloGlow 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes brandGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(229, 57, 53, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(255, 167, 38, 0.8));
    }
}

@keyframes haloGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:not(.btn-contact):hover {
    color: var(--rouge-vif);
}

.nav-links a:not(.btn-contact)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange-rouge), var(--jaune-solaire));
    transition: width 0.3s;
}

.nav-links a:not(.btn-contact):hover::after {
    width: 100%;
}

.btn-contact {
    background: linear-gradient(135deg, var(--rouge-vif), var(--orange-rouge));
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.4);
}

/* Burger menu */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--rouge-vif);
    border-radius: 3px;
    transition: all 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, 
        var(--jaune-clair) 0%, 
        var(--jaune-solaire) 20%,
        var(--orange-lumineux) 40%,
        var(--orange-rouge) 60%,
        var(--orange-fonce) 80%,
        var(--rouge-vif) 100%);
    animation: gradientShift 15s ease infinite;
    background-size: 200% 200%;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Particules flottantes améliorées */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    animation: floatParticle 8s ease-in-out infinite;
    opacity: 0.8;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.particle svg {
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
    transition: all 0.3s;
}

.particle:hover svg {
    transform: scale(1.2) rotate(15deg);
}

.particle-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.particle-2 {
    top: 65%;
    left: 85%;
    animation-delay: 1.5s;
    animation-duration: 12s;
}

.particle-3 {
    top: 25%;
    right: 12%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.particle-4 {
    bottom: 25%;
    left: 15%;
    animation-delay: 2s;
    animation-duration: 11s;
}

.particle-5 {
    top: 75%;
    right: 20%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.particle-6 {
    top: 40%;
    left: 5%;
    animation-delay: 1s;
    animation-duration: 13s;
}

.particle-7 {
    bottom: 35%;
    right: 8%;
    animation-delay: 2.5s;
    animation-duration: 11s;
}

.particle-8 {
    top: 50%;
    right: 30%;
    animation-delay: 3.5s;
    animation-duration: 9s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(-30px, -30px) rotate(10deg) scale(1.1);
    }
    50% {
        transform: translate(20px, -50px) rotate(-10deg) scale(0.9);
    }
    75% {
        transform: translate(-20px, -20px) rotate(5deg) scale(1.05);
    }
}

/* Cercles décoratifs */
.decorative-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 6s ease-in-out infinite;
}

.circle-yellow {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 235, 59, 0.4) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.circle-orange {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 167, 38, 0.3) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: 2s;
}

.circle-red {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

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

/* Rayons de soleil animés */
.sun-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.ray {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 200px;
    background: linear-gradient(to bottom, 
        rgba(255, 235, 59, 0.8) 0%,
        rgba(255, 204, 51, 0.4) 50%,
        transparent 100%);
    transform-origin: top center;
    animation: rotateRays 20s linear infinite;
    filter: blur(2px);
}

.ray-1 {
    transform: translate(-50%, -100%) rotate(0deg);
    animation-delay: 0s;
}

.ray-2 {
    transform: translate(-50%, -100%) rotate(45deg);
    animation-delay: -2.5s;
}

.ray-3 {
    transform: translate(-50%, -100%) rotate(90deg);
    animation-delay: -5s;
}

.ray-4 {
    transform: translate(-50%, -100%) rotate(135deg);
    animation-delay: -7.5s;
}

.ray-5 {
    transform: translate(-50%, -100%) rotate(180deg);
    animation-delay: -10s;
}

.ray-6 {
    transform: translate(-50%, -100%) rotate(225deg);
    animation-delay: -12.5s;
}

.ray-7 {
    transform: translate(-50%, -100%) rotate(270deg);
    animation-delay: -15s;
}

.ray-8 {
    transform: translate(-50%, -100%) rotate(315deg);
    animation-delay: -17.5s;
}

@keyframes rotateRays {
    from {
        transform: translate(-50%, -100%) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
    to {
        transform: translate(-50%, -100%) rotate(360deg);
        opacity: 0.3;
    }
}

/* Contenu hero */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    width: 100%;
}

.hero-text-container {
    position: relative;
    z-index: 3;
}

/* Logo central avec effets */
.hero-logo-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    animation: fadeInScale 1s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-logo {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    z-index: 3;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                0 0 60px rgba(255, 235, 59, 0.4),
                0 0 100px rgba(255, 167, 38, 0.3);
    animation: logoFloat 4s ease-in-out infinite;
    border: 5px solid rgba(255, 255, 255, 0.8);
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    50% {
        transform: translateY(-5px) rotate(-1deg);
    }
    75% {
        transform: translateY(-12px) rotate(1deg);
    }
}

/* Lueur autour du logo */
.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, 
        rgba(255, 235, 59, 0.6) 0%,
        rgba(255, 204, 51, 0.4) 30%,
        rgba(255, 167, 38, 0.2) 60%,
        transparent 100%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0.9;
    }
}

/* Anneaux tournants autour du logo */
.logo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border: 3px solid rgba(255, 235, 59, 0.5);
    border-radius: 50%;
    border-top-color: rgba(229, 57, 53, 0.8);
    border-right-color: rgba(251, 140, 0, 0.8);
    animation: rotateRing 8s linear infinite;
    z-index: 2;
}

.logo-ring-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    border: 2px solid rgba(255, 167, 38, 0.3);
    border-radius: 50%;
    border-bottom-color: rgba(229, 57, 53, 0.6);
    border-left-color: rgba(255, 204, 51, 0.6);
    animation: rotateRing 12s linear infinite reverse;
    z-index: 2;
}

@keyframes rotateRing {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Badge Hola avec effet de brillance */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, white, var(--jaune-clair));
    color: var(--rouge-vif);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                0 0 30px rgba(255, 235, 59, 0.3);
    animation: fadeInDown 1s ease, badgeShine 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

@keyframes badgeShine {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                    0 0 30px rgba(255, 235, 59, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
                    0 0 50px rgba(255, 235, 59, 0.6);
    }
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.8) 50%,
        transparent 70%
    );
    animation: badgeSweep 3s ease-in-out infinite;
}

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

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

/* Titre avec animation par mot */
.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.title-word {
    display: inline-block;
    animation: fadeInUp 0.8s ease both;
    margin: 0 0.3rem;
}

.title-word:nth-child(1) {
    animation-delay: 0.2s;
}

.title-word:nth-child(2) {
    animation-delay: 0.4s;
}

.highlight-word {
    background: linear-gradient(135deg, var(--jaune-clair), white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.6s;
    font-size: 4rem;
    text-shadow: none;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

/* Sous-titre avec items séparés */
.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.subtitle-item {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease both;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.subtitle-item:nth-child(1) {
    animation-delay: 0.8s;
}

.subtitle-item:nth-child(2) {
    animation-delay: 1s;
}

.subtitle-item:nth-child(3) {
    animation-delay: 1.2s;
}

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

/* Boutons hero */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 1.4s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--rouge-vif);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(255, 235, 59, 0.2);
    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, 235, 59, 0.4), transparent);
    transition: left 0.5s;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4),
                0 0 60px rgba(255, 235, 59, 0.4);
    background: var(--jaune-clair);
}

.btn-arrow {
    transition: transform 0.3s;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: white;
    color: var(--rouge-vif);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3),
                0 0 40px rgba(255, 255, 255, 0.4);
}

/* Statistiques hero */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.6s both;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    display: inline-flex;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
                0 0 40px rgba(255, 235, 59, 0.2);
    position: relative;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--jaune-clair),
        var(--orange-lumineux),
        var(--rouge-vif),
        var(--orange-lumineux),
        var(--jaune-clair));
    background-size: 300% 300%;
    border-radius: 22px;
    z-index: -1;
    animation: gradientBorder 4s ease infinite;
    opacity: 0.5;
}

@keyframes gradientBorder {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

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

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--jaune-clair);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: white;
    opacity: 0.9;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.4);
}

/* ============================================
   SECTIONS COMMUNES
   ============================================ */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--rouge-vif);
    margin-bottom: 1rem;
}

.divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-rouge), var(--jaune-solaire));
    margin: 0 auto;
    border-radius: 2px;
}

/* ============================================
   À PROPOS
   ============================================ */
.about-section {
    background: white;
}

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

/* Conteneur de l'image avec effets */
.about-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Cadre de l'image */
.image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 80px rgba(255, 167, 38, 0.2);
    border: 6px solid white;
    z-index: 2;
    background: linear-gradient(135deg, var(--warm-beige), var(--light-cream));
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.image-frame:hover .about-photo {
    transform: scale(1.05);
}

/* Effet de lueur autour de la photo */
.image-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, 
        rgba(255, 204, 51, 0.4) 0%,
        rgba(255, 167, 38, 0.3) 30%,
        rgba(229, 57, 53, 0.2) 60%,
        transparent 100%);
    border-radius: 30px;
    animation: pulseImageGlow 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulseImageGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

/* Cercles décoratifs tournants */
.image-circle-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    aspect-ratio: 1;
    border: 3px solid transparent;
    border-radius: 50%;
    border-top-color: var(--orange-rouge);
    border-right-color: var(--jaune-solaire);
    opacity: 0.6;
    animation: rotateCircle 10s linear infinite;
    z-index: 0;
}

.image-circle-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    aspect-ratio: 1;
    border: 2px solid transparent;
    border-radius: 50%;
    border-bottom-color: var(--rouge-vif);
    border-left-color: var(--orange-lumineux);
    opacity: 0.4;
    animation: rotateCircle 15s linear infinite reverse;
    z-index: 0;
}

@keyframes rotateCircle {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Icônes décoratives autour de la photo */
.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.deco-icon {
    position: absolute;
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: floatDeco 4s ease-in-out infinite;
}

.deco-1 {
    top: -15px;
    right: -15px;
    animation-delay: 0s;
}

.deco-2 {
    bottom: 10%;
    left: -20px;
    animation-delay: 1.3s;
}

.deco-3 {
    top: 15%;
    left: -25px;
    animation-delay: 2.6s;
}

@keyframes floatDeco {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(10deg);
    }
    50% {
        transform: translateY(-8px) rotate(-5deg);
    }
    75% {
        transform: translateY(-12px) rotate(5deg);
    }
}

/* Effet de coins décoratifs */
.image-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid rgba(255, 235, 59, 0.5);
    border-radius: 20px;
    pointer-events: none;
    z-index: 10;
    animation: borderPulse 3s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.98);
    }
}

/* Animation des coins scintillants */
.image-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 10;
    border-radius: 24px;
}

@keyframes shimmer {
    0% {
        background-position: 0% 0%;
        opacity: 0;
    }
    50% {
        background-position: 100% 100%;
        opacity: 0.3;
    }
    100% {
        background-position: 0% 0%;
        opacity: 0;
    }
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.credentials {
    display: grid;
    gap: 1.5rem;
    margin: var(--spacing-lg) 0;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--warm-beige);
    border-radius: 15px;
    border-left: 4px solid var(--orange-rouge);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Effet de fond animé au survol */
.credential-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 235, 59, 0.2),
        transparent);
    transition: left 0.6s ease;
}

.credential-item:hover::before {
    left: 100%;
}

/* Animation au survol */
.credential-item:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.2),
                0 0 40px rgba(255, 167, 38, 0.15);
    border-left-width: 8px;
    border-left-color: var(--rouge-vif);
    background: linear-gradient(135deg, 
        var(--warm-beige) 0%,
        rgba(255, 235, 59, 0.15) 100%);
}

/* Icône avec animations */
.credential-icon {
    font-size: 2rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    position: relative;
}

/* Animation de l'icône au survol de la carte */
.credential-item:hover .credential-icon {
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 4px 8px rgba(229, 57, 53, 0.3));
}

/* Effet de brillance sur l'icône */
.credential-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 235, 59, 0.4) 0%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.credential-item:hover .credential-icon::after {
    opacity: 1;
    animation: iconGlow 1.5s ease-in-out infinite;
}

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

/* Texte avec animation */
.credential-item p {
    transition: color 0.3s ease;
}

.credential-item:hover p {
    color: var(--text-dark);
}

.credential-item strong {
    color: var(--rouge-vif);
    transition: all 0.3s ease;
    position: relative;
}

.credential-item:hover strong {
    color: var(--orange-rouge);
    text-shadow: 0 0 10px rgba(255, 167, 38, 0.3);
}

/* Effet de particules au survol */
.credential-item::after {
    content: '✨';
    position: absolute;
    top: 50%;
    right: 20px;
    font-size: 1.5rem;
    opacity: 0;
    transform: translateY(-50%) scale(0);
    transition: all 0.4s ease;
}

.credential-item:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1) rotate(360deg);
}

/* Animations séquentielles au chargement */
.credential-item:nth-child(1) {
    animation: slideInCredential 0.6s ease 0.2s both;
}

.credential-item:nth-child(2) {
    animation: slideInCredential 0.6s ease 0.4s both;
}

.credential-item:nth-child(3) {
    animation: slideInCredential 0.6s ease 0.6s both;
}

@keyframes slideInCredential {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mission {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, 
        rgba(255, 235, 59, 0.15), 
        rgba(255, 167, 38, 0.15));
    border-radius: 15px;
}

.mission h3 {
    color: var(--rouge-vif);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.mission p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.encouragement {
    font-style: italic;
    font-weight: 500;
    color: var(--orange-fonce);
}

/* ============================================
   SERVICES
   ============================================ */
.services-section {
    background: var(--warm-beige);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--orange-lumineux);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.2);
    border-top-color: var(--rouge-vif);
}

.service-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--rouge-vif);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   EXPÉRIENCE
   ============================================ */
.experience-section {
    background: white;
}

.experience-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.experience-list {
    display: grid;
    gap: 1.5rem;
    margin: var(--spacing-lg) 0;
}

.experience-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--warm-beige);
    border-radius: 15px;
    transition: all 0.3s;
    border-left: 5px solid var(--orange-lumineux);
}

.experience-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 167, 38, 0.2);
    border-left-color: var(--rouge-vif);
}

.exp-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.experience-item h4 {
    color: var(--rouge-vif);
    margin-bottom: 0.5rem;
}

.philosophy {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, 
        rgba(255, 204, 51, 0.15), 
        rgba(251, 140, 0, 0.15));
    border-radius: 15px;
}

.philosophy h3 {
    color: var(--rouge-vif);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.philosophy p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

blockquote {
    margin-top: var(--spacing-md);
    padding: 1.5rem;
    background: white;
    border-left: 5px solid var(--orange-rouge);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--orange-fonce);
    border-radius: 10px;
}

     .reviews-section {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0 auto;
            padding: 60px 350px;
            background-color: #614843;
        }


        .reviews-section h2 {
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #FFA726, #FFCC33, #E53935);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s infinite;
        }

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

        .section-subtitle {
            text-align: center;
            color: #b0b0b0;
            font-size: 1.2rem;
            margin-bottom: 50px;
        }

        .reviews-container {
            position: relative;
            overflow: hidden;
            margin-bottom: 60px;
            padding: 20px 0;
        }

        .reviews-grid {
            display: flex;
            gap: 30px;
            animation: scroll 30s linear infinite;
            width: max-content;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .reviews-grid:hover {
            animation-play-state: paused;
        }

        .review-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid rgba(255, 167, 38, 0.2);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            min-width: 380px;
            max-width: 380px;
            flex-shrink: 0;
        }

        .review-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 167, 38, 0.1), rgba(255, 204, 51, 0.1), rgba(229, 57, 53, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .review-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 167, 38, 0.5);
            box-shadow: 0 15px 40px rgba(255, 167, 38, 0.3);
        }

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

        .review-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .review-photo {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            border: 3px solid transparent;
            background: linear-gradient(white, white) padding-box,
                        linear-gradient(135deg, #FFA726, #FFCC33, #E53935) border-box;
            transition: transform 0.3s ease;
            overflow: hidden;
            flex-shrink: 0;
        }

        .review-photo i.fa-user {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            font-size: 2rem;
            color: white;
            background: linear-gradient(135deg, #FFA726, #E53935);
        }

        .review-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .review-card:hover .review-photo {
            transform: scale(1.1) rotate(5deg);
        }

        .review-info h3 {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 8px;
        }

        .review-stars {
            display: flex;
            gap: 4px;
        }

        .review-stars i {
            color: #FFA726;
            font-size: 1rem;
            animation: starPulse 2s infinite;
        }

        .review-stars i:nth-child(1) { animation-delay: 0s; }
        .review-stars i:nth-child(2) { animation-delay: 0.1s; }
        .review-stars i:nth-child(3) { animation-delay: 0.2s; }
        .review-stars i:nth-child(4) { animation-delay: 0.3s; }
        .review-stars i:nth-child(5) { animation-delay: 0.4s; }

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

        .review-text {
            color: #d0d0d0;
            line-height: 1.7;
            font-size: 1rem;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .review-date {
            color: #888;
            font-size: 0.9rem;
            font-style: italic;
            position: relative;
            z-index: 1;
        }

        /* Section statistiques */
        .reviews-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
            padding: 50px 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            border: 1px solid rgba(255, 167, 38, 0.1);
        }

        .stat-item {
            text-align: center;
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        /* .stat-number {
            display: block;
            font-size: 3.5rem;
            font-weight: bold;
            background: linear-gradient(135deg, #FFA726, #FFCC33);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        } */

        .stat-stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 10px;
        }

        .stat-stars i {
            color: #FFA726;
            font-size: 1.3rem;
        }

        .stat-label {
            display: block;
            color: #b0b0b0;
            font-size: 1.1rem;
        }

        /* Responsive */
        @media (max-width: 100px) {
            .reviews-section {
                padding: 60px;
            }
        }
        @media (max-width: 768px) {
        .reviews-section {
            padding: 60px 40px;
        }
            .reviews-section h2 {
                font-size: 2rem;
            }

            .review-card {
                min-width: 90vw;
                max-width: 90vw;
            }

            .reviews-stats {
                gap: 30px;
            }


        }



/* ============================================
   TARIFS
   ============================================ */
.pricing-section {
    background: linear-gradient(135deg, var(--warm-beige), var(--light-cream));
    position: relative;
    overflow: hidden;
}

/* Cercles décoratifs en arrière-plan */
.pricing-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 235, 59, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatCircle 8s ease-in-out infinite;
}

.pricing-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 167, 38, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatCircle 10s ease-in-out infinite reverse;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    border: 3px solid var(--jaune-solaire);
    position: relative;
    animation: fadeInUp 0.8s ease;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25),
                0 0 60px rgba(255, 235, 59, 0.3);
    border-color: var(--orange-rouge);
}

.price-tag {
    margin-bottom: var(--spacing-md);
    position: relative;
    animation: fadeInScale 0.8s ease 0.2s both;
}

.price {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--rouge-vif), var(--orange-rouge), var(--orange-lumineux));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.period {
    font-size: 1.5rem;
    color: var(--text-light);
}

.tax-credit {
    background: linear-gradient(135deg, 
        rgba(255, 235, 59, 0.3), 
        rgba(255, 167, 38, 0.3));
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: var(--spacing-md);
    border: 2px solid var(--jaune-solaire);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease 0.4s both;
    transition: all 0.3s ease;
}

/* Effet de brillance qui traverse */
.tax-credit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent);
    animation: slideShine 3s ease-in-out infinite;
}

@keyframes slideShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.tax-credit:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 204, 51, 0.4);
    border-color: var(--orange-rouge);
}

.highlight {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--rouge-vif);
    margin-bottom: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.final-price {
    font-size: 1.5rem;
    color: var(--orange-fonce);
    font-weight: bold;
}

.final-price strong {
    font-size: 2rem;
    color: var(--rouge-vif);
    text-shadow: 0 0 10px rgba(229, 57, 53, 0.3);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: var(--spacing-md) 0;
}

.pricing-features li {
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: var(--warm-beige);
    border-radius: 10px;
    font-size: 1.1rem;
    border-left: 3px solid var(--orange-lumineux);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Animation séquentielle des features */
.pricing-features li:nth-child(1) {
    animation: slideInRight 0.6s ease 0.6s both;
}

.pricing-features li:nth-child(2) {
    animation: slideInRight 0.6s ease 0.7s both;
}

.pricing-features li:nth-child(3) {
    animation: slideInRight 0.6s ease 0.8s both;
}

.pricing-features li:nth-child(4) {
    animation: slideInRight 0.6s ease 0.9s both;
}

.pricing-features li:nth-child(5) {
    animation: slideInRight 0.6s ease 1s both;
}

.pricing-features li:nth-child(6) {
    animation: slideInRight 0.6s ease 1.1s both;
}

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

/* Effet de vague au survol */
.pricing-features li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 235, 59, 0.3),
        transparent);
    transition: left 0.5s ease;
}

.pricing-features li:hover::before {
    left: 100%;
}

.pricing-features li:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, var(--warm-beige), rgba(255, 235, 59, 0.2));
    border-left-width: 6px;
    border-left-color: var(--rouge-vif);
    box-shadow: 0 5px 15px rgba(255, 167, 38, 0.2);
}

/* Effet de checkmark qui apparaît */
.pricing-features li::after {
    content: '✓';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    font-size: 1.5rem;
    color: var(--rouge-vif);
    font-weight: bold;
    transition: all 0.3s ease;
}

.pricing-features li:hover::after {
    transform: translateY(-50%) scale(1) rotate(360deg);
}

.guarantee {
    margin-top: var(--spacing-md);
    padding: 1.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 204, 51, 0.4), 
        rgba(251, 140, 0, 0.4));
    border-radius: 15px;
    font-size: 1.1rem;
    border: 2px solid var(--orange-rouge);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease 1.2s both;
    transition: all 0.3s ease;
}

.guarantee::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent 30%
    );
    animation: rotateGradient 4s linear infinite;
}

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

.guarantee:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(251, 140, 0, 0.4);
}

.guarantee p {
    position: relative;
    z-index: 1;
}

.location-info {
    text-align: center;
    margin-top: var(--spacing-md);
    font-size: 1.1rem;
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease 1.4s both;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.location-info:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
    background: white;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--rouge-vif);
    margin-bottom: var(--spacing-md);
}

.contact-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: var(--spacing-md) 0;
    padding: 2rem;
    background: var(--warm-beige);
    border-radius: 15px;
    border: 2px solid var(--orange-lumineux);
}

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

.contact-method h4 {
    color: var(--rouge-vif);
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: var(--orange-rouge);
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    text-decoration: underline;
    color: var(--rouge-vif);
}

.cta-text {
    margin: var(--spacing-md) 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.closing {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--rouge-vif), var(--orange-rouge));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: var(--spacing-md);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--marron-fonce);
    color: white;
    text-align: center;
    padding: var(--spacing-md) 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: white;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 80px);
        padding: 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
        align-items: flex-start;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .highlight-word {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        gap: 1rem;
    }
    
    .subtitle-item {
        padding: 0.4rem 1rem;
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 1rem;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .stat-divider {
        height: 30px;
    }
    
    .particle {
        display: none;
    }
    
    .particle-1, .particle-2, .particle-3 {
        display: block;
    }
    
    .particle svg {
        width: 40px;
        height: 40px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }

    .circle {
        filter: blur(40px);
    }

    .circle-yellow {
        width: 250px;
        height: 250px;
    }

    .circle-orange {
        width: 300px;
        height: 300px;
    }

    .circle-red {
        width: 200px;
        height: 200px;
    }

    .hero-logo-container {
        width: 150px;
        height: 150px;
        margin-bottom: 2rem;
        margin-top: 3rem;
    }

    .sun-rays .ray {
        height: 150px;
        width: 3px;
    }

    .hero-badge {
        font-size: 1.1rem;
        padding: 0.5rem 1.5rem;
    }

    /* Responsive About avec photo */
    .about-image-container {
        max-width: 300px;
    }

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

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-container {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .highlight-word {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-badge {
        font-size: 1rem;
        padding: 0.4rem 1.2rem;
    }
    
    .price {
        font-size: 3rem;
    }

    .hero-stats {
        flex-direction: column;
    }

    .stat-divider {
        width: 60px;
        height: 2px;
    }

    .hero-logo-container {
        width: 120px;
        height: 120px;
        margin-bottom: 1rem;
    }

    .sun-rays .ray {
        height: 120px;
        width: 2px;
    }

    .logo-ring, .logo-ring-2 {
        border-width: 2px;
    }

    /* Responsive About photo mobile */
    .about-content {
        gap: 2rem;
    }

    .about-image-container {
        max-width: 280px;
    }

    .image-frame {
        border-radius: 20px;
        border-width: 4px;
    }

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

    .deco-1 {
        top: -10px;
        right: -10px;
    }

    .deco-2 {
        left: -15px;
    }

    .deco-3 {
        left: -15px;
    }
}