/**
 * ZANA - Style Luxe Premium Ultra Dynamique
 * Palette: Noir #1A1A1A, Gris #3A3A3A, Rouge #C41E3A, Argent #C0C0C0, Blanc cassé #FAFAFA
 * Inspiré de Porsche, Ferrari, Maserati
 */

/* ========================================
   VARIABLES CSS
   ======================================== */

:root {
    /* Couleurs principales - Palette Luxe */
    --color-primary: #1A1A1A;        /* Noir profond */
    --color-secondary: #3A3A3A;      /* Gris anthracite */
    --color-accent: #C41E3A;         /* Rouge discret */
    --color-silver: #C0C0C0;         /* Argent métallique */
    
    /* Backgrounds */
    --color-bg-light: #F5F5F5;       /* Gris très clair */
    --color-bg-medium: #ECECEC;      /* Gris clair */
    --color-bg-dark: #2C2C2C;        /* Gris foncé */
    --color-bg-accent: #FFF5F5;      /* Blanc rosé très léger */
    
    /* Textes */
    --color-text-primary: #1A1A1A;   /* Noir */
    --color-text-secondary: #666666; /* Gris moyen */
    --color-text-light: #FFFFFF;     /* Blanc */
    
    /* Variables de compatibilité */
    --noir: #1A1A1A;
    --gris-texte: #666666;
    --blanc: #FFFFFF;
    --font-titre: 'Playfair Display', serif;
    --font-texte: 'Montserrat', sans-serif;
    
    /* Typographie */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   RESET & BASE
   ======================================== */

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

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

body {
    font-family: var(--font-primary);
    color: var(--color-text-primary);
    background: linear-gradient(135deg, #E5E5E5 0%, #F0F0F0 50%, #E5E5E5 100%);
    background-size: 400% 400%;
    animation: gradientBg 15s ease infinite;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(196, 30, 58, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 26, 26, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(192, 192, 192, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: floatBg 20s ease-in-out infinite;
}

@keyframes floatBg {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-30px, 30px) scale(0.95); }
}

/* ========================================
   TYPOGRAPHIE
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-secondary);
}

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

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

/* ========================================
   LOADER
   ======================================== */

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A1A1A 0%, #3A3A3A 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-container.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-modern {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: #C41E3A;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.loader-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    border-top-color: #C0C0C0;
    animation-duration: 2s;
    animation-direction: reverse;
}

.loader-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    border-top-color: #3A3A3A;
    animation-duration: 1s;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loader-logo {
    width: 60px;
    height: auto;
    z-index: 1;
}

.loader-text {
    color: #FAFAFA;
    margin-top: 30px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav-glass {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 245, 245, 0.95) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 40px rgba(196, 30, 58, 0.15);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(196, 30, 58, 0.1);
}

.nav-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(196, 30, 58, 0.03) 50%, transparent 100%);
    animation: navShine 3s ease-in-out infinite;
    pointer-events: none;
}

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

.nav-logo img {
    height: 60px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(196, 30, 58, 0.2));
}

.nav-logo:hover img {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 5px 15px rgba(196, 30, 58, 0.4));
}

.nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-link-modern {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-primary);
    position: relative;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
    border-radius: 50px;
    background: transparent;
}

.nav-link-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(26, 26, 26, 0.05) 100%);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent) 0%, #1A1A1A 100%);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.nav-link-modern:hover {
    color: #FAFAFA;
    background: linear-gradient(135deg, #C41E3A 0%, #1A1A1A 100%);
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
    transform: translateY(-2px);
}

.nav-link-modern:hover::before {
    opacity: 1;
}

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

/* Menu burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.burger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #C41E3A 0%, #1A1A1A 100%);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(196, 30, 58, 0.3);
}

.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, -6px);
}

/* ========================================
   HERO SECTION MODERNE
   ======================================== */

.hero-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F8F8F8 0%, #FFF0F0 25%, #F8F8F8 50%, #FFF0F0 75%, #F8F8F8 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    position: relative;
    overflow: hidden;
    padding: 120px 2rem 80px;
}

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

.hero-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(196, 30, 58, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(26, 26, 26, 0.05) 0%, transparent 40%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-content {
    max-width: 1000px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-logo-3d {
    width: 180px;
    height: auto;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(196, 30, 58, 0.3));
}

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

.hero-title-modern {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #1A1A1A 0%, #C41E3A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-modern {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.gradient-text {
    background: linear-gradient(135deg, #C41E3A 0%, #1A1A1A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Badge 100% GRATUIT */
.hero-badge-3d {
    position: absolute;
    top: 140px;
    right: 5%;
    background: linear-gradient(135deg, #C41E3A 0%, #1A1A1A 100%);
    color: #FAFAFA;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.4);
    animation: pulse 2s infinite, float 3s ease-in-out infinite;
    z-index: 10;
}

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

/* Boutons CTA 3D */
.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-3d {
    position: relative;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

.cta-button-3d.primary {
    background: linear-gradient(135deg, #1A1A1A 0%, #3A3A3A 100%);
    color: #FAFAFA;
    box-shadow: 0 8px 30px rgba(26, 26, 26, 0.3);
}

.cta-button-3d.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(196, 30, 58, 0.4);
    background: linear-gradient(135deg, #C41E3A 0%, #1A1A1A 100%);
}

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

.cta-button-3d.secondary:hover {
    background: var(--color-primary);
    color: #FAFAFA;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 26, 26, 0.3);
}

.button-glow {
    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;
}

.cta-button-3d:hover .button-glow {
    left: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-secondary);
    border-radius: 15px;
    position: relative;
}

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

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

.scroll-indicator p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========================================
   COMMENT ÇA MARCHE - SECTION MODERNE
   ======================================== */

.how-it-works-modern {
    padding: 100px 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F5 100%);
    border-radius: 30px;
}

.section-title-modern {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #1A1A1A 0%, #C41E3A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.title-number {
    font-size: 1.5rem;
    color: var(--color-accent);
    font-weight: 700;
}

.steps-grid-3d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.step-card-3d {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F5 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid rgba(196, 30, 58, 0.2);
}

.step-card-3d:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(196, 30, 58, 0.15);
    border-color: var(--color-accent);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C41E3A 0%, #1A1A1A 100%);
    color: #FAFAFA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
}

.step-icon-modern {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(196, 30, 58, 0.3));
}

.step-card-3d h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.step-card-3d p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Info Box Glass */
.info-box-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--color-accent);
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.15);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.info-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
}

.info-content p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ========================================
   TÉMOIGNAGES MODERNES
   ======================================== */

.testimonials-modern {
    padding: 100px 2rem;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFFFFF 100%);
}

.testimonials-slider {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card-modern {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F5 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.15);
    transition: all 0.4s ease;
    position: relative;
    border-left: 5px solid var(--color-accent);
    border-top: 1px solid rgba(196, 30, 58, 0.2);
}

.testimonial-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.quote-icon {
    font-size: 4rem;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1A1A1A 0%, #3A3A3A 100%);
    color: #FAFAFA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin: 0;
}

/* ========================================
   CTA SECTION MODERNE
   ======================================== */

.cta-section-modern {
    padding: 100px 2rem;
    background: linear-gradient(135deg, #1A1A1A 0%, #3A3A3A 100%);
    position: relative;
    overflow: hidden;
}

.cta-content-3d {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #FAFAFA;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.3rem;
    color: #C0C0C0;
    margin-bottom: 3rem;
    line-height: 1.7;
}

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

.footer-modern {
    background: var(--color-primary);
    color: #FAFAFA;
    padding: 80px 2rem 30px;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 1.1rem;
    color: #C0C0C0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    color: #FAFAFA;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links-grid a {
    color: #C0C0C0;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-grid a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

.footer-links-grid a::before {
    content: '▸';
    color: var(--color-accent);
    margin-right: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links-grid a:hover::before {
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(192, 192, 192, 0.2);
    text-align: center;
}

.copyright {
    color: #C0C0C0;
    font-size: 0.95rem;
}

.founders {
    margin-top: 1rem;
    color: #C0C0C0;
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .burger {
        display: flex;
    }
    
    .hero-badge-3d {
        display: none;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button-3d {
        width: 100%;
        justify-content: center;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-box-glass {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   UTILITIES
   ======================================== */

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

.text-accent {
    color: var(--color-accent);
}

.bg-dark {
    background: var(--color-primary);
    color: var(--color-text-light);
}

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




/* ========================================
   FORMULAIRES DYNAMIQUES
   ======================================== */

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(196, 30, 58, 0.2);
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F5 100%);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.1);
    background: white;
}

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

/* Boutons de formulaire */
button[type="submit"],
.btn-submit {
    background: linear-gradient(135deg, #C41E3A 0%, #1A1A1A 100%);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.3);
}

button[type="submit"]:hover,
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.5);
    background: linear-gradient(135deg, #1A1A1A 0%, #C41E3A 100%);
}

/* ========================================
   PAGES COLORÉES
   ======================================== */

/* Titres de pages avec rouge */
.page-title {
    background: linear-gradient(135deg, #1A1A1A 0%, #C41E3A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cartes de contact */
.contact-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F5 100%);
    border: 2px solid rgba(196, 30, 58, 0.3);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.15);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.25);
    border-color: var(--color-accent);
}

/* Icons avec gradient rouge */
.icon-gradient {
    background: linear-gradient(135deg, #C41E3A 0%, #1A1A1A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

