/* ============================================
   FLORIAN NEICIGAM - MAGICIEN PROFESSIONNEL
   CSS Ultra-Moderne avec Effets Avancés
   ============================================ */

/* === VARIABLES CSS === */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-gold: #d4af37;
    --accent-silver: #c0c0c0;
    --text-light: #ffffff;
    --text-dark: #0f0f0f;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-heavy: rgba(0, 0, 0, 0.6);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: #0a0a0a;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === PARTICULES MAGIQUES === */
.magic-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.magic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    background:
        radial-gradient(circle at 20% 50%, var(--accent-gold) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--accent-silver) 0%, transparent 50%),
        radial-gradient(circle at 40% 90%, #4a5568 0%, transparent 50%);
    animation: magicPulse 20s ease-in-out infinite alternate;
}

@keyframes magicPulse {
    0% {
        opacity: 0.1;
        transform: scale(1) rotate(0deg);
    }
    100% {
        opacity: 0.2;
        transform: scale(1.1) rotate(2deg);
    }
}

/* === NAVIGATION MODERNE === */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 4px 30px var(--shadow-heavy);
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

nav.scrolled {
    padding: 0.5rem 0;
    background: rgba(26, 26, 46, 0.98);
}

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

.logo {
    text-decoration: none;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-silver));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
    transition: var(--transition);
}

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

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-silver));
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

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

/* === BOUTON CTA FLOTTANT === */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--accent-gold), #b8960f);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    z-index: 999;
    transition: var(--transition);
    animation: floatPulse 3s ease-in-out infinite;
}

.floating-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.7);
}

@keyframes floatPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 12px 40px rgba(212, 175, 55, 0.7);
        transform: translateY(-3px);
    }
}

/* === SECTION HERO AVEC PARALLAX === */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    margin-bottom: 2rem;
    perspective: 1000px;
}

.hero-title-line {
    display: block;
    font-size: clamp(3rem, 10vw, 8rem);
    letter-spacing: clamp(4px, 1vw, 12px);
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-silver), var(--accent-gold));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 6s ease infinite;
    text-shadow: 0 0 50px rgba(212, 175, 55, 0.5);
    transform-style: preserve-3d;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.3s;
}

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

.subtitle {
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 4px;
    color: var(--accent-silver);
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.5s both;
}

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

.hero-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.4));
    border: 2px solid var(--accent-gold);
    color: var(--text-light);
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 2px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.hero-cta:hover {
    background: linear-gradient(135deg, var(--accent-gold), #b8960f);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* === SCROLL INDICATOR MODERNE === */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 2;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent-gold);
    border-radius: 25px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--accent-gold);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelMove 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

@keyframes wheelMove {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* === SECTIONS COMMUNES === */
section {
    padding: 4rem 0;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-silver));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

/* === SECTION PRÉSENTATION === */
.presentation-section {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7), rgba(22, 33, 62, 0.7));
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 4rem 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px var(--shadow-heavy);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

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

.presentation-text h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    letter-spacing: 2px;
    line-height: 1.2;
}

.presentation-text p {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
}

.presentation-text strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.presentation-image {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    transition: var(--transition-slow);
}

.presentation-image:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.5);
}

.presentation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.presentation-image:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.3) 60%, transparent);
    padding: 3rem 2rem;
    text-align: center;
}

.image-overlay span {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--accent-gold);
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* === SECTION VIDÉO === */
.video-section {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.5), rgba(26, 26, 46, 0.5));
    border-radius: 30px;
    padding: 6rem 4rem;
    margin: 4rem 2rem; /* au lieu de 0 2rem */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 30px 80px var(--shadow-heavy);
    background: #000;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* === SECTION SERVICES === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-slow);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: var(--transition-slow);
}

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

.service-card:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.3));
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotateY(360deg);
}

.service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.service-details ul {
    list-style: none;
    text-align: left;
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-details li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

.service-details li:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.service-details li::before {
    content: '✨';
    position: absolute;
    left: 0;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

/* === GALERIE === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-slow);
    cursor: pointer;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.95));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    border: 2px dashed rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.gallery-placeholder span {
    font-size: 5rem;
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.3));
}

.gallery-placeholder p {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--accent-gold);
    letter-spacing: 2px;
}

.gallery-item:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 25px 60px var(--shadow-heavy);
}

.gallery-item:hover .gallery-placeholder {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(192, 192, 192, 0.2));
}

/* === TÉMOIGNAGES === */
.testimonials-section {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.6), rgba(26, 26, 46, 0.6));
    border-radius: 30px;
    padding: 6rem 4rem;
    margin: 4rem 2rem; /* au lieu de 0 2rem */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.google-rating {
    text-align: center;
    margin-bottom: 4rem;
}

.google-rating .stars {
    font-size: 3rem;
    color: var(--accent-gold);
    letter-spacing: 8px;
    text-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    animation: starGlow 2s ease-in-out infinite;
}

@keyframes starGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.google-rating p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-wrapper {
    overflow: hidden;
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    gap: 2.5rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: calc(33.333% - 1.67rem);
    max-width: calc(33.333% - 1.67rem);
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.95));
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
    box-sizing: border-box;
}

.testimonial-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-silver));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.testimonial-info h4 {
    font-family: 'Cinzel', serif;
    color: var(--accent-gold);
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

.testimonial-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.google-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(66, 133, 244, 0.2);
    border-radius: 25px;
    font-size: 0.95rem;
    color: #4285f4;
    border: 1px solid rgba(66, 133, 244, 0.3);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.carousel-btn {
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 2.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--accent-gold);
    color: var(--text-dark);
    transform: scale(1.15);
}

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

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent-gold);
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* === SECTION CONTACT === */
.contact-section {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.95));
    border-radius: 30px;
    padding: 6rem 4rem;
    margin: 4rem 2rem; /* au lieu de 0 2rem */
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-intro {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    font-style: italic;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
}

.contact-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-slow);
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.contact-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.4));
}

.contact-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    font-size: 1.7rem;
    letter-spacing: 2px;
}

.contact-card a,
.contact-card p {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.contact-btn-large {
    display: inline-block;
    margin-top: 3rem;
    padding: 1.8rem 4rem;
    background: linear-gradient(135deg, var(--accent-gold), #b8960f);
    color: var(--text-dark);
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    letter-spacing: 2px;
}

.contact-btn-large:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.7);
}

/* === SECTION STATISTIQUES === */
.stats-section {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.7), rgba(26, 26, 46, 0.7));
    border-radius: 30px;
    padding: 5rem 4rem;
    margin: 4rem 2rem; /* au lieu de 0 2rem */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    text-align: center;
}

.stat-item {
    padding: 2.5rem;
    transition: var(--transition);
}

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

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: clamp(3.5rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    text-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.stat-label {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* === FOOTER === */
footer {
    background: rgba(10, 10, 10, 0.95);
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 6rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin: 0.5rem 0;
}

.footer-links {
    margin-top: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    margin: 0 1rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

/* === RESPONSIVE DESIGN === */

/* Tablettes */
@media (max-width: 1024px) {
    .presentation-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .presentation-image {
        height: 500px;
    }

    .testimonial-card {
        min-width: calc(50% - 1.25rem);
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .stats-grid,
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobiles & Tablettes */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 2.5rem 0;
        margin-bottom: 1.5rem;
    }

    .presentation-section {
        margin-top: 2rem;
    }

    .scroll-indicator {
        display: none;
    }

    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        padding-top: 3rem;
        transition: left 0.3s ease;
        backdrop-filter: blur(20px);
    }

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

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title-line {
        font-size: clamp(2rem, 8vw, 4rem);
    }

    .subtitle {
        font-size: clamp(1rem, 3vw, 1.5rem);
    }

    .floating-cta {
        bottom: 15px;
        right: 15px;
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        margin-bottom: 1.5rem;
    }

    .presentation-section {
        padding: 1.5rem 1rem;
        margin: 0 0.8rem 2rem 0.8rem;
        border-radius: 15px;
    }

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

    .presentation-image {
        height: 280px;
    }

    .video-section {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }

    .video-wrapper {
        max-height: 280px;
    }

    .contact-section {
        padding: 1.5rem 1rem;
        margin: 0 0.8rem 2rem 0.8rem;
    }

    .testimonials-section {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }

    .stats-section {
        padding: 1.5rem 1rem;
        margin: 0 0.8rem 2rem 0.8rem;
    }

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

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-item {
        height: 180px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .stat-item {
        padding: 0.8rem 0.3rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
        line-height: 1.2;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .contact-card {
        padding: 0.8rem 0.3rem;
    }

    .contact-icon {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .contact-card h3 {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .contact-card a,
    .contact-card p {
        font-size: 0.7rem;
        line-height: 1.2;
    }

    .testimonial-card {
        min-width: 100%;
        max-width: 100%;
        padding: 1rem;
        margin: 0;
        box-sizing: border-box;
    }

    .carousel-track {
        display: flex;
        gap: 0;
    }

    .carousel-wrapper {
        width: 100%;
        overflow: hidden;
        padding: 1rem 0;
    }

    .carousel-container {
        padding: 0;
        margin: 0;
    }

    .testimonials-section .container {
        padding: 0 1rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .testimonial-header {
        gap: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .testimonial-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .testimonial-info h4 {
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }
}

/* Petits mobiles */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    nav {
        padding: 0.7rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .hero {
        height: 60vh;
        min-height: 450px;
    }

    .hero-title-line {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .subtitle {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
    }

    section {
        padding: 1.5rem 0;
        margin-bottom: 1.2rem;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .floating-cta {
        padding: 0.6rem 1.1rem;
        font-size: 0.85rem;
    }

    .presentation-section {
        margin-top: 2.5rem !important;
        padding: 1.2rem 0.8rem;
        border-radius: 12px;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .presentation-image {
        height: 220px;
    }

    .video-section {
        padding: 1.2rem 0.8rem;
        margin-bottom: 1.5rem;
    }

    .video-wrapper {
        max-height: 220px;
    }

    .contact-section {
        padding: 1.2rem 0.8rem;
        margin: 0 0.5rem 1.5rem 0.5rem;
    }

    .testimonials-section {
        padding: 1.2rem 0.8rem;
        margin-bottom: 1.5rem;
    }

    .stats-section {
        padding: 1.2rem 0.8rem;
        margin: 0 0.5rem 1.5rem 0.5rem;
    }

    .service-card {
        padding: 1.2rem 0.8rem;
    }

    .service-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .gallery-item {
        height: 160px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
    }

    .stat-item {
        padding: 0.6rem 0.2rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
        line-height: 1.1;
    }

    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
    }

    .contact-card {
        padding: 0.6rem 0.2rem;
    }

    .contact-icon {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }

    .contact-card h3 {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
        line-height: 1.1;
    }

    .contact-card a,
    .contact-card p {
        font-size: 0.65rem;
        line-height: 1.1;
    }

    .testimonial-card {
        padding: 0.8rem;
        margin: 0;
    }

    .contact-btn-large {
        padding: 1rem 1.8rem;
        font-size: 0.95rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: dark;
    }
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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