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

        :root {
            --color-primary: #FFD700; /* Jaune */
            --color-secondary: #FF69B4; /* Rose */
            --color-text-dark: #2c3e50;
            --color-text-light: #5a6c7d;
            --color-bg-main: #ffffff;
            --color-bg-section: #f8f9fa;
            --color-border: #e9ecef;
            --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --max-width: 1200px;
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 2rem;
            --spacing-lg: 3rem;
            --spacing-xl: 4rem;
        }

        body {
            font-family: var(--font-main);
            line-height: 1.6;
            color: var(--color-text-dark);
            background-color: var(--color-bg-main);
            scroll-behavior: smooth;
        }


        /* Navigation fixe améliorée */
        .nav-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--color-border);
            z-index: 1000;
            padding: var(--spacing-sm) 0;
        }

        .nav-container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--spacing-md);
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: var(--spacing-md);
            transition: all 0.3s ease;
        }

        .nav-link {
            text-decoration: none;
            color: var(--color-text-dark);
            font-weight: 500;
            padding: var(--spacing-xs) var(--spacing-sm);
            border-radius: 6px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            background-color: var(--color-primary);
            color: var(--color-text-dark);
            transform: translateY(-2px);
        }

        .nav-link:focus {
            outline: 2px solid var(--color-secondary);
            outline-offset: 2px;
        }

        /* Menu Burger amélioré */
        .burger-menu {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            width: 32px;
            height: 32px;
            z-index: 1001;
            position: absolute;
            right: var(--spacing-md);
            background: none;
            border: none;
            padding: 0;
        }

        .burger-line {
            width: 24px;
            height: 2px;
            background-color: var(--color-text-dark);
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transform-origin: center;
            position: absolute;
        }

        .burger-line:nth-child(1) {
            transform: translateY(-8px);
        }

        .burger-line:nth-child(2) {
            transform: translateY(0);
        }

        .burger-line:nth-child(3) {
            transform: translateY(8px);
        }

        /* Animation du burger vers croix */
        .burger-menu.active .burger-line:nth-child(1) {
            transform: rotate(45deg) translateY(0);
            background-color: var(--color-secondary);
        }

        .burger-menu.active .burger-line:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .burger-menu.active .burger-line:nth-child(3) {
            transform: rotate(-45deg) translateY(0);
            background-color: var(--color-secondary);
        }

        /* Overlay pour mobile */
        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        /* Contenu principal avec marges */
        .main-content {
            margin-top: 80px;
            padding: 0 var(--spacing-md);
            max-width: var(--max-width);
            margin-left: auto;
            margin-right: auto;
        }

        /* Sections */
        .section {
            padding: var(--spacing-xl) 0;
            border-bottom: 1px solid var(--color-border);
            flex-direction: column;
        }

        .section:last-of-type {
            border-bottom: none;
        }

        .section:nth-child(even) {
            background-color: var(--color-bg-section);
            margin: 0 calc(-1 * var(--spacing-md));
            padding-left: var(--spacing-md);
            padding-right: var(--spacing-md);
        }

        /* Typographie */
        .section-title {
            font-size: 30px;
            font-weight: 600;
            margin-bottom: var(--spacing-md);
            color: var(--color-text-dark);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--color-secondary));
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.5rem;
            font-weight: 500;
            margin-top: var(--spacing-sm);
            color: var(--color-text-dark);
        }

        .section-text {
            font-size: 1.1rem;
            color: var(--color-text-light);
            margin-bottom: var(--spacing-md);
   
        }

        /* Hero section */
        .hero {
            text-align: center;
            padding: var(--spacing-xl) 0 var(--spacing-lg);
        }

        .hero-title {
            font-size: 100px;
            font-weight: 600;
            margin-bottom: var(--spacing-sm);
            background: linear-gradient(135deg, white);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;

  font-family: "Pinyon Script", cursive;
  font-weight: 500;
  font-style: normal;

        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--color-text-light);
            font-weight: 300;
        }


        /* Centrage de la section */
.section.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;

}

/* Animation de frappe */
.typing-effect {
  font-family: "Pinyon Script", cursive;
  font-weight: 500;
  font-style: normal;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #000;
    width: 0;
    animation: typing 2.5s steps(20, end) forwards, blink 0.75s step-end infinite;
    font-size: 100px; /* Ajustez la taille si besoin */
    justify-content: flex-start;
}

@keyframes typing {
    from { width: 0 }
    to { width: 14ch } /* "Camille Cazals" = 14 caractères */
}

@keyframes blink {
    50% { border-color: transparent }
}

/* Sous-titre */
.hero-subtitle {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #555;
    background: url("f") no-repeat center center fixed;
  background-size: cover;

}


        /* Section À propos avec photo */
        .about-content {
            display: flex;
            gap: var(--spacing-lg);
            align-items: center;
            flex-wrap: wrap;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .profile-image {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--color-primary);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .cv-button {
            display: inline-block;
            margin-top: var(--spacing-md);
            padding: var(--spacing-sm) var(--spacing-md);
            font-size: 1rem;
            font-weight: 600;
            background: var(--color-secondary);
            color: rgb(0, 0, 0);
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
        }

        .cv-button:hover {
            background: #ff4fa3;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4);
        }

        /* Grilles pour projets */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--spacing-md);
            margin-top: var(--spacing-md);
        }

        .project-card {
            background: white;
            border: 1px solid var(--color-border);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border-color: var(--color-primary);
        }

        .project-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .project-content {
            padding: var(--spacing-md);
        }

        /* Compétences avec effet de lumière */
        .skills-list {
            display: flex;
            flex-wrap: wrap;
            gap: var(--spacing-sm);
            margin-top: 0px;
        }

        .skill-tag {
            background: linear-gradient(135deg, var(--color-primary));
            color: var(--color-text-dark);
            padding: var(--spacing-xs) var(--spacing-sm);
            border-radius: 10px;
            font-size: 0.9rem;
            font-weight: 500;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
        }

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

        .skill-tag:hover::before {
            left: 100%;
        }

        .skill-tag:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }

        /* Timeline pour expériences */
        .timeline-item {
            border-left: 3px solid var(--color-primary);
            padding-left: var(--spacing-md);
            margin-bottom: var(--spacing-lg);
            position: relative;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 0;
            width: 12px;
            height: 12px;
            background: var(--color-secondary);
            border-radius: 50%;
        }

        .timeline-date {
            font-size: 0.9rem;
            color: var(--color-secondary);
            font-weight: 600;
            margin-bottom: var(--spacing-xs);
        }

        /* Contact avec effet de lumière */
        .contact-info {
            display: flex;
            flex-wrap: wrap;
            gap: var(--spacing-md);
            margin-top: var(--spacing-md);
        }

        .contact-item {
            background: white;
            border: 1px solid var(--color-border);
            border-radius: 8px;
            padding: var(--spacing-md);
            flex: 1;
            min-width: 250px;
            text-align: center;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
        }

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

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

        .contact-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(255, 105, 180, 0.2);
            border-color: var(--color-secondary);
        }

        .contact-link {
            color: var(--color-secondary);
            text-decoration: none;
            font-weight: 500;
        }

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

        /* Carrousel */
        #carrousel {
            max-width: 1000px;
            position: relative;
            margin: var(--spacing-xl) auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .slide {
            display: none;
            animation-name: fade;
            animation-duration: 1.5s;
            position: relative;
        }

        .slide.active {
            display: block;
        }

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

        #prev, #next {
            cursor: pointer;
            position: absolute;
            border: none;
            background: rgba(0,0,0,0.5);
            top: 50%;
            width: auto;
            margin-top: -22px;
            padding: 16px;
            color: white;
            font-weight: bold;
            font-size: 18px;
            transition: 0.6s ease;
            border-radius: 0 3px 3px 0;
            user-select: none;
        }

        #next {
            right: 0;
            border-radius: 3px 0 0 3px;
        }

        #prev:hover, #next:hover {
            background-color: rgba(0,0,0,0.8);
        }

        .carousel-title {
            color: #f2f2f2;
            padding: 8px 12px;
            position: absolute;
            bottom: 8px;
            width: 100%;
            text-align: center;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            font-size: 1.2rem;
        }

        #dots {
            display: flex;
            position: absolute;
            bottom: -40px;
            width: 100%;
            justify-content: center;
            list-style: none;
            column-gap: 8px;
            padding: 0;
        }

        .dot {
            width: 16px;
            height: 16px;
            background-color: var(--color-text-dark);
            border-radius: 20px;
            cursor: pointer;
            opacity: 0.4;
            transition: opacity 1.5s;
        }

        .dot.active {
            opacity: 0.8;
            background-color: var(--color-secondary);
        }

        @keyframes fade {
            from { opacity: .4 }
            to { opacity: 1 }
        }

        /* Footer */
        .footer {
            background-color: var(--color-text-dark);
            color: white;
            text-align: center;
            padding: var(--spacing-md) 0;
            margin-top: var(--spacing-xl);
        }

        .footer-text {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 9999;
            padding-top: 60px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            text-align: center;
        }

        .lightbox-content {
            margin: auto;
            max-width: 80%;
            max-height: 80%;
        }

        .lightbox .close {
            position: absolute;
            top: 20px;
            right: 40px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
        }

        /* Responsive Mobile */
        @media (max-width: 768px) {
            .burger-menu {
                display: flex;
            }

            .nav-overlay {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background-color: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                gap: 0;
                padding: 100px var(--spacing-md) var(--spacing-md);
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                transition: right 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                z-index: 1000;
                text-align: center;
            }

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

            .nav-link {
                padding: var(--spacing-sm) var(--spacing-md);
                border-bottom: 1px solid var(--color-border);
                border-radius: 0;
                font-size: 1.1rem;
                width: 100%;
                text-align: left;
            }

            .nav-link:last-child {
                border-bottom: none;
            }

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

            .main-content {
                padding: 0 var(--spacing-sm);
            }

            .section {
                padding: var(--spacing-md) 0;
            }

            .section:nth-child(even) {
                margin: 0 calc(-1 * var(--spacing-sm));
                padding-left: var(--spacing-sm);
                padding-right: var(--spacing-sm);
            }

            .hero-title {
                font-size: 2.5rem;
            }

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

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

            .contact-info {
                flex-direction: column;
            }

            .about-content {
                flex-direction: column;
                text-align: center;
            }

            .profile-image {
                width: 250px;
                height: 250px;
            }

            #carrousel {
                margin: var(--spacing-md) auto;
            }

            .slide img {
                height: 250px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .profile-image {
                width: 200px;
                height: 200px;
            }

            .nav-menu {
                width: 100%;
                right: -100%;
            }

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

        /* Réinitialisation du menu sur grands écrans */
        @media (min-width: 769px) {
            .nav-menu {
                display: flex !important;
                position: static !important;
                width: auto !important;
                height: auto !important;
                right: auto !important;
                background: none !important;
                padding: 0 !important;
                box-shadow: none !important;
                flex-direction: row !important;
            }

            .nav-overlay {
                display: none !important;
            }
        }

        /* Accessibilité - Focus visible */
        *:focus {
            outline: 2px solid var(--color-secondary);
            outline-offset: 2px;
        }

        /* Animations subtiles */
        .section {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }

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

        /* Décalage des animations */
        .section:nth-child(1) { animation-delay: 0.1s; }
        .section:nth-child(2) { animation-delay: 0.2s; }
        .section:nth-child(3) { animation-delay: 0.3s; }
        .section:nth-child(4) { animation-delay: 0.4s; }
        .section:nth-child(5) { animation-delay: 0.5s; }
        .section:nth-child(6) { animation-delay: 0.6s; }
        .section:nth-child(7) { animation-delay: 0.7s; }

        /* Prévention du scroll sur mobile quand menu ouvert */
        body.menu-open {
            overflow: hidden;
        }


        .hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.background-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.background-video-container video,
.background-video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 2rem;
}

.hero-title, .hero-subtitle {
  color: white;
}

a:-webkit-any-link {
    color: winte;
    cursor: pointer;
    text-decoration: none;
}

/*bouton up*/
/* NOUVEAU BOUTON UP - STYLE MODERNE */
#btn-up {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF69B4, #FFD700);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* État visible du bouton */
#btn-up.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Effet hover */
#btn-up:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.6);
    background: linear-gradient(135deg, #ff4fa3, #ffc400);
}

/* Animation de pulsation */
#btn-up::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Icône flèche personnalisée */
#btn-up::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid white;
    position: absolute;
}

/* Version mobile */
@media (max-width: 768px) {
    #btn-up {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }

    #btn-up::after {
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 10px solid white;
    }
}



/* Footer amélioré */
        .footer {
            background: linear-gradient(135deg, var(--color-text-dark), #1a252f);
            color: white;
            margin-top: var(--spacing-xl);
            padding: var(--spacing-xl) 0 var(--spacing-md);
        }

        .footer-content {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--spacing-md);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-md);
        }

        .footer-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: var(--spacing-sm);
            color: var(--color-primary);
            position: relative;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--color-secondary);
            border-radius: 1px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: var(--spacing-xs);
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

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

        .footer-contact-info p {
            margin-bottom: var(--spacing-xs);
        }

        .footer-text {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: var(--spacing-xs);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: var(--spacing-md);
            text-align: center;
        }

        .footer-copyright {
            font-size: 0.9rem;
            opacity: 0.7;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }



        /* Footer amélioré */
        .footer {
            background: linear-gradient(135deg, var(--color-text-dark), #1a252f);
            color: white;
            margin-top: var(--spacing-xl);
            padding: var(--spacing-xl) 0 var(--spacing-md);
        }

        .footer-content {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--spacing-md);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-md);
        }

        .footer-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: var(--spacing-sm);
            color: var(--color-primary);
            position: relative;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--color-secondary);
            border-radius: 1px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: var(--spacing-xs);
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

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

        .footer-contact-info p {
            margin-bottom: var(--spacing-xs);
        }

        .footer-text {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: var(--spacing-xs);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: var(--spacing-md);
            text-align: center;
        }

        .footer-copyright {
            font-size: 0.9rem;
            opacity: 0.7;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }





        /* Styles pour le formulaire de contact */
        .contact-form-container {
            background: linear-gradient(135deg, #f8f9fa, #ffffff);
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border: 1px solid #e9ecef;
        }

        .contact-form-title {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            font-weight: 600;
        }

        .contact-form-subtitle {
            text-align: center;
            color: #5a6c7d;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

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

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: #2c3e50;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .form-input,
        .form-textarea,
        .form-select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background-color: #ffffff;
        }

        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus {
            outline: none;
            border-color: #FF69B4;
            box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
            transform: translateY(-2px);
        }

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

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

        .submit-button {
            background: linear-gradient(135deg, #FF69B4, #FF69B4);
            color: rgb(0, 0, 0);
            border: none;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 1rem;
            box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
        }

        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 105, 180, 0.5);
            background: linear-gradient(135deg, #ff4fa3, #ffc400);
        }

        .submit-button:active {
            transform: translateY(-1px);
        }

        .submit-button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .success-message {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            margin-top: 1rem;
            display: none;
        }

        .error-message {
            background: linear-gradient(135deg, #dc3545, #e74c3c);
            color: white;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            margin-top: 1rem;
            display: none;
        }

        /* Animations */
        .form-group {
            animation: slideInUp 0.6s ease forwards;
        }

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

        /* Responsive */
        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .contact-form-container {
                padding: 1.5rem;
                margin: 1rem 0;
            }
        }

        /* Indicateur de chargement */
        .loading-spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 2px solid #ffffff;
            border-top: 2px solid transparent;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-right: 8px;
        }

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

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