/* ====== VARIABLES COULEURS (À MODIFIER SELON VOTRE LOGO) ====== */
        :root {
            --primary: #c49a6c;     /* Couleur principale (or/beige) */
            --primary-dark: #8b5a2b; /* Nuance plus foncée */
            --primary-light: #e8c39e; /* Nuance plus claire */
            --secondary: #2c5f2d;    /* Vert nature */
            --accent: #d98c5f;        /* Orange terre cuite */
            --dark-bg: #1a2a1a;       /* Fond sombre */
            --text-light: #ffffff;
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.15);
        }

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

        body {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #2c3e2c 100%);
            color: var(--text-light);
            min-height: 100vh;
            overflow-x: hidden;
            font-family: 'Montserrat', sans-serif;
        }

        /* ====== LOADER AMÉLIORÉ ====== */
        .loader-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--dark-bg), #1e331e);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.8s, visibility 0.8s;
        }

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

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

        .loader-logo {
            position: relative;
            width: 150px;
            height: 150px;
            margin: 0 auto 25px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid var(--primary);
            box-shadow: 0 0 40px var(--primary);
            animation: logoPulse 2s infinite;
        }

        @keyframes logoPulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 40px var(--primary); }
            50% { transform: scale(1.05); box-shadow: 0 0 70px var(--primary-light); }
        }

        .loader-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .light-beam {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), var(--primary-light), rgba(255,255,255,0.3), transparent);
            transform: skewX(-20deg);
            animation: lightSweep 2.5s infinite;
        }

        @keyframes lightSweep {
            0% { left: -150%; }
            50% { left: 50%; }
            100% { left: 150%; }
        }

        .loader-text {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: 6px;
            margin-bottom: 25px;
            color: var(--primary-light); /* Changé : texte visible avec la couleur primaire claire */
            text-shadow: 0 0 20px var(--primary); /* Ombre lumineuse ajoutée */
            -webkit-text-fill-color: initial; /* Annulation de la transparence */
            animation: textGlow 2s infinite alternate;
        }

        @keyframes textGlow {
            from { text-shadow: 0 0 20px var(--primary); }
            to { text-shadow: 0 0 40px var(--primary-light), 0 0 60px var(--primary); }
        }

        .loader-progress {
            width: 300px;
            height: 6px;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            overflow: hidden;
            margin: 0 auto;
        }

        .progress-bar {
            width: 0%;
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            animation: progress 2s ease-out forwards;
            box-shadow: 0 0 20px var(--primary);
        }

        @keyframes progress {
            0% { width: 0%; }
            100% { width: 100%; }
        }

        /* ====== HEADER AMÉLIORÉ ====== */
        .main-header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 42, 26, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary);
            z-index: 1000;
            padding: 10px 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

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

        .logo img {
            height: 70px;
            width: auto;
            border-radius: 50%;
            border: 2px solid var(--primary);
            transition: all 0.3s;
        }

        .logo img:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 0 30px var(--primary);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            padding: 8px 0;
            position: relative;
            transition: all 0.3s;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: width 0.3s;
            box-shadow: 0 0 10px var(--primary);
        }

        .nav-links a:hover {
            color: var(--primary-light);
        }

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

        /* ====== CONTACT SECTION RESTRUCTURÉE ====== */
        .contact-container {
            max-width: 1200px;
            margin: 140px auto 60px;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1.2fr 1.8fr;
            gap: 30px;
        }

        /* Carte d'informations améliorée */
        .contact-info {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            border: 1px solid var(--primary);
            border-radius: 30px;
            padding: 40px 30px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            position: relative;
            overflow: hidden;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(196, 154, 108, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

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

        .contact-info h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--primary-light); /* Changé pour rendre le texte visible */
            position: relative;
            text-shadow: 0 0 10px var(--primary);
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 18px;
            margin-bottom: 15px;
            background: rgba(255,255,255,0.05);
            border-radius: 20px;
            border: 1px solid transparent;
            transition: all 0.4s;
            position: relative;
            cursor: pointer;
        }

        .info-item:hover {
            background: rgba(196, 154, 108, 0.15);
            border-color: var(--primary);
            transform: translateX(15px) scale(1.02);
            box-shadow: 0 10px 30px rgba(196, 154, 108, 0.3);
        }

        .info-item i {
            font-size: 28px;
            min-width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            box-shadow: 0 5px 20px var(--primary);
            transition: all 0.3s;
            font-style: normal;
        }

        .info-item:hover i {
            transform: rotate(360deg);
        }

        .info-item strong {
            color: var(--primary-light);
        }

        /* Formulaire amélioré */
        .contact-form {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            border: 1px solid var(--primary);
            border-radius: 30px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--primary-light);
            font-weight: 600;
            font-size: 15px;
            letter-spacing: 0.5px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 16px 20px;
            background: rgba(255,255,255,0.9);
            border: 2px solid transparent;
            border-radius: 15px;
            font-size: 16px;
            transition: all 0.3s;
            outline: none;
            color: #333;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(196, 154, 108, 0.3);
            transform: translateY(-3px);
            background: white;
        }

        .error-message {
            display: none;
            color: #ff6b6b;
            font-size: 13px;
            margin-top: 8px;
            padding-left: 15px;
            animation: slideDown 0.3s;
        }

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

        .btn {
            width: 100%;
            padding: 18px 30px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            border-radius: 15px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
            letter-spacing: 1px;
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(196, 154, 108, 0.4);
        }

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

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

        /* Alert messages */
        .alert {
            padding: 15px 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            display: none;
            animation: slideDown 0.5s;
            font-weight: 500;
        }

        .alert-success {
            background: rgba(40, 167, 69, 0.2);
            border: 2px solid #28a745;
            color: #98fb98;
        }

        .alert-error {
            background: rgba(220, 53, 69, 0.2);
            border: 2px solid #dc3545;
            color: #ffb6b6;
        }

        /* Footer amélioré */
        footer {
            background: rgba(26, 42, 26, 0.98);
            border-top: 3px solid var(--primary);
            padding: 50px 0 20px;
            margin-top: 60px;
        }

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

        .footer-logo {
            font-size: 28px;
            font-weight: 900;
            margin-bottom: 30px;
            color: var(--primary-light);
            text-shadow: 0 0 15px var(--primary);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 5px 10px;
            position: relative;
            transition: all 0.3s;
        }

        .footer-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary-light);
        }

        .footer-links a:hover::before {
            width: 80%;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-bottom: 30px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            color: #fff;
            font-size: 20px;
            transition: all 0.3s;
            text-decoration: none;
        }

        .social-links a:hover {
            transform: translateY(-5px) scale(1.15);
            background: rgba(255,255,255,0.3);
        }

        .copyright {
            color: rgba(255,255,255,0.7);
            font-size: 14px;
        }

        /* Particules animées */
        .particles-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary);
            border-radius: 50%;
            animation: float 15s infinite linear;
            opacity: 0.3;
        }

        @keyframes float {
            0% { transform: translateY(100vh) scale(0); opacity: 0; }
            10% { opacity: 0.5; transform: scale(1); }
            90% { opacity: 0.5; }
            100% { transform: translateY(-100px) scale(0); opacity: 0; }
        }

        /* Confettis */
        .confetti {
            position: fixed;
            top: -20px;
            width: 12px;
            height: 12px;
            background: var(--primary);
            animation: confetti 3s linear forwards;
            z-index: 10000;
            pointer-events: none;
        }

        @keyframes confetti {
            0% { transform: translateY(0) rotate(0deg); opacity: 1; }
            100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
        }

        /* Responsive */
        @media (max-width: 968px) {
            .contact-container {
                grid-template-columns: 1fr;
                margin-top: 120px;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 15px;
            }
            
            .nav-links {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .nav-links a {
                font-size: 14px;
            }
            
            .loader-logo {
                width: 120px;
                height: 120px;
            }
            
            .loader-text {
                font-size: 1.5rem;
            }
            
            .loader-progress {
                width: 250px;
            }
        }