
        :root {
            --primary: #680201;
            --primary-dark: #460702;
            --primary-light: #680201;;
            --secondary: #DACCB4;
            --white: #F9F0EE;
            --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
            --error: #e74c3c;
            --success: #27ae60;
        }

        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--primary);
            color: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            line-height: 1.2;
        }

        h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
        h2 { font-size: clamp(1.8rem, 4vw, 2.3rem); }
        h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }

        p {
            font-weight: 300;
            line-height: 1.8;
            font-size: 1rem;
        }

        .accent {
            color: var(--secondary);
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(60px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateX(20px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .fade-up {
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .floating-bg {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .floating-orb {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(218, 204, 180, 0.1) 0%, transparent 70%);
        }

        .orb-1 {
            width: 400px;
            height: 400px;
            top: 10%;
            right: -100px;
            animation: float 15s ease-in-out infinite;
        }

        .orb-2 {
            width: 300px;
            height: 300px;
            bottom: 20%;
            left: -80px;
            animation: float 12s ease-in-out infinite reverse;
        }

        .orb-3 {
            width: 200px;
            height: 200px;
            top: 50%;
            left: 30%;
            animation: float 18s ease-in-out infinite 2s;
        }

        /* ================================================
           NAVIGATION - IDENTIQUE AU SITE
           ================================================ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            margin: 0 auto;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: transparent;
            border-radius: 0;
            transition: all 0.9s ease;
        }

        .navbar.scrolled {
            background-image: url(/img/bg_red.png);
            background-size: cover;
            background-position: bottom;            backdrop-filter: blur(20px);
            padding: 0.8rem 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            top: 20px;
            left: 10%;
            right: 10%;
            width: 80%;
            max-width: 1400px;
            border-radius: 20px;
        }

        .nav-logo {
            height: 100px;
            transition: height 0.4s var(--transition-smooth);
        }

        .navbar.scrolled .nav-logo {
            height: 70px;
            width: auto;
        }

        .nav-logo img {
            height: 100%;
            width: auto;
            transition: transform 0.7s ease;
        }

        .nav-logo:hover img {
            transform: scale(1.05);
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 6px;
            padding: 10px;
            cursor: pointer;
            z-index: 1001;
            background: transparent;
            border: none;
        }

        .hamburger span {
            width: 30px;
            height: 2px;
            background: var(--white);
            transition: all 0.4s var(--transition-smooth);
            transform-origin: center;
        }

        .hamburger:hover span {
            background: var(--secondary);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(20px);
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .side-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 400px;
            height: 100vh;
            background: var(--primary-dark);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 4rem;
            transform: translateX(100%);
            transition: transform 0.5s var(--transition-smooth);
            z-index: 999;
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        }

        .side-menu.active {
            transform: translateX(0);
        }

        .menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 998;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .side-menu-nav {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .side-menu-link {
            color: var(--white);
            text-decoration: none;
            font-size: 2rem;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 500;
            letter-spacing: 2px;
            padding: 1rem 0;
            position: relative;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.4s ease, color 0.3s ease;
            border-bottom: 1px solid rgba(218, 204, 180, 0.1);
        }

        .side-menu-link:last-child {
            border-bottom: none;
        }

        .side-menu-link::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.4s ease;
        }

        .side-menu-link:hover {
            color: var(--secondary);
            transform: translateX(10px);
        }

        .side-menu-link:hover::before {
            width: 50px;
        }

        .side-menu.active .side-menu-link {
            opacity: 1;
            transform: translateX(0);
        }

        .side-menu.active .side-menu-link:nth-child(1) { transition-delay: 0.1s; }
        .side-menu.active .side-menu-link:nth-child(2) { transition-delay: 0.2s; }
        .side-menu.active .side-menu-link:nth-child(3) { transition-delay: 0.3s; }

        .btn {
            padding: 1.2rem 3rem;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.4s ease;
            border: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: var(--secondary);
            color: var(--primary);
            transition: all 0.4s ease, transform 0.15s ease-out;
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(218, 204, 180, 0.4);
        }

        .btn-primary:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--secondary);
        }

        .btn-outline:hover {
            background: var(--secondary);
            color: var(--primary);
            transform: translateY(-5px);
        }

        .btn svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .contact-page {
            min-height: 100vh;
            padding: 12rem 5% 6rem;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            position: relative;
            z-index: 1;
        }

        .form-container {
            width: 100%;
            max-width: 720px;
            background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary-light) 100%);
            border: 1px solid rgba(218, 204, 180, 0.15);
            border-radius: 16px;
            padding: 3rem;
            backdrop-filter: blur(10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .progress-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(218, 204, 180, 0.15);
        }

        .progress-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            position: relative;
        }

        .step-number {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(218, 204, 180, 0.1);
            border: 2px solid rgba(218, 204, 180, 0.3);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.4s ease;
        }

        .progress-step.active .step-number {
            background: var(--secondary);
            border-color: var(--secondary);
            color: var(--primary);
            box-shadow: 0 0 20px rgba(218, 204, 180, 0.4);
        }

        .progress-step.completed .step-number {
            background: var(--success);
            border-color: var(--success);
            color: var(--white);
        }

        .step-label {
            font-size: 0.8rem;
            color: rgba(249, 240, 238, 0.6);
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }

        .progress-step.active .step-label {
            color: var(--secondary);
        }

        .progress-step.completed .step-label {
            color: var(--success);
        }

        .progress-line {
            flex: 1;
            height: 2px;
            background: rgba(218, 204, 180, 0.2);
            margin: 0 1.5rem;
            margin-bottom: 1.5rem;
            max-width: 100px;
            position: relative;
            overflow: hidden;
        }

        .progress-line::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0;
            background: var(--success);
            transition: width 0.4s ease;
        }

        .progress-line.completed::after {
            width: 100%;
        }

        .form-step {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .form-step.active {
            display: block;
        }

        .form-step h2 {
            color: var(--white);
            margin-bottom: 0.5rem;
            text-align: center;
        }

        .step-description {
            color: rgba(249, 240, 238, 0.7);
            margin-bottom: 2.5rem;
            text-align: center;
            font-size: 0.95rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-weight: 500;
            color: var(--white);
            margin-bottom: 0.6rem;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }

        .required {
            color: var(--secondary);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem 1.2rem;
            border: 2px solid rgba(218, 204, 180, 0.2);
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'Montserrat', sans-serif;
            color: var(--white);
            background: rgb(25 6 6 / 50%);
            transition: all 0.3s ease;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(249, 240, 238, 0.4);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary);
            background: rgba(0, 29, 81, 0.7);
            box-shadow: 0 0 0 4px rgba(218, 204, 180, 0.1);
        }

        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23DACCB4' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            padding-right: 2.5rem;
        }

        .form-group select option {
            background: var(--primary);
            color: var(--white);
        }

        .form-group input[type="number"] {
            -moz-appearance: textfield;
        }

        .form-group input[type="number"]::-webkit-outer-spin-button,
        .form-group input[type="number"]::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        .form-group input.error,
        .form-group select.error {
            border-color: var(--error);
        }

        .form-group input.valid {
            border-color: var(--success);
        }

        .error-message {
            display: block;
            color: var(--error);
            font-size: 0.85rem;
            margin-top: 0.4rem;
            min-height: 1.2rem;
        }

        .profile-selection {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.5rem 0;
        }

        .profile-card {
            cursor: pointer;
            position: relative;
        }

        .profile-card input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .card-content {
            padding: 2.5rem 1.5rem;
            border: 2px solid rgba(218, 204, 180, 0.2);
            border-radius: 12px;
            text-align: center;
            transition: all 0.4s ease;
            background: rgba(0, 29, 81, 0.3);
        }

        .profile-card:hover .card-content {
            border-color: var(--secondary);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .profile-card input:checked + .card-content {
            border-color: var(--secondary);
            background: rgba(218, 204, 180, 0.1);
            box-shadow: 0 0 30px rgba(218, 204, 180, 0.2);
        }

        .card-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.2rem;
            border: 2px solid var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .profile-card input:checked + .card-content .card-icon {
            background: var(--secondary);
        }

        .card-icon svg {
            width: 32px;
            height: 32px;
            fill: var(--secondary);
            transition: fill 0.4s ease;
        }

        .profile-card input:checked + .card-content .card-icon svg {
            fill: var(--primary);
        }

        .card-title {
            display: block;
            font-size: 1.4rem;
            font-weight: 600;
            font-family: 'Cormorant Garamond', serif;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .card-description {
            font-size: 0.85rem;
            color: rgba(249, 240, 238, 0.6);
        }

        .radio-group {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .radio-option {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            border: 2px solid rgba(218, 204, 180, 0.2);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(0, 29, 81, 0.3);
        }

        .radio-option:hover {
            border-color: var(--secondary);
        }

        .radio-option input {
            accent-color: var(--secondary);
        }

        .radio-option:has(input:checked) {
            border-color: var(--secondary);
            background: rgba(218, 204, 180, 0.1);
        }

        .radio-option:has(input:checked) span {
            color: var(--secondary);
            font-weight: 500;
        }

        .form-navigation {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(218, 204, 180, 0.15);
        }

        .btn-nav {
            padding: 1rem 2rem;
        }

        .loader {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            border: 2px solid rgba(0, 29, 81, 0.3);
            border-top-color: var(--primary);
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .success-message {
            display: none;
            text-align: center;
            padding: 3rem 2rem;
            animation: fadeUp 0.6s ease;
        }

        .success-message.active {
            display: block;
        }

        .success-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 2rem;
            border: 3px solid var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 3s ease-in-out infinite;
        }

        .success-icon svg {
            width: 50px;
            height: 50px;
            fill: var(--secondary);
        }

        .success-message h2 {
            color: var(--white);
            margin-bottom: 1rem;
        }

        .success-message p {
            color: rgba(249, 240, 238, 0.7);
            margin-bottom: 2.5rem;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        footer {
            background: var(--primary-dark);
            padding: 5rem 5% 2rem;
            border-top: 1px solid rgba(218, 204, 180, 0.1);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr repeat(2, 1fr);
            gap: 4rem;
        }

        .footer-brand {
            max-width: 300px;
        }

        .footer-logo img {
            height: 80px;
            margin-bottom: 1.5rem;
        }

        .footer-brand p {
            font-size: 0.9rem;
            opacity: 0.7;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(218, 204, 180, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--secondary);
            color: var(--primary);
            border-color: var(--secondary);
        }

        .footer-col h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 0.8rem;
        }

        .footer-col a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.7;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .footer-col a:hover {
            opacity: 1;
            color: var(--secondary);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 4rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(218, 204, 180, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            font-size: 0.85rem;
            opacity: 0.6;
        }

        /* ================================================
           RESPONSIVE - TABLET (1024px)
           ================================================ */
        @media (max-width: 1024px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem;
            }
        }

        /* ================================================
           RESPONSIVE - MOBILE (768px) - NAVBAR IDENTIQUE AU SITE
           ================================================ */
        @media (max-width: 768px) {
            /* Navbar - EXACTEMENT comme le site */
            .navbar {
                padding: 1rem 4%;
            }

            .nav-logo {
                height: 60px;
            }

            .navbar.scrolled {
                width: 95%;
                left: 2.5%;
                right: 2.5%;
                padding: 0.6rem 1.5rem;
                border-radius: 30px;
                top: 15px;
            }

            .navbar.scrolled .nav-logo {
                height: 45px;
            }

            .hamburger span {
                width: 25px;
            }

            /* Side Menu */
            .side-menu {
                width: 100%;
                padding: 2rem;
                justify-content: flex-start;
                padding-top: 6rem;
            }

            .side-menu-link {
                font-size: 1.6rem;
                padding: 1.2rem 0;
            }

            /* Contact Page */
            .contact-page {
                padding: 8rem 4% 3rem;
                min-height: auto;
            }

            /* Form Container */
            .form-container {
                padding: 2rem 1.5rem;
                border-radius: 14px;
                border: 1px solid rgba(218, 204, 180, 0.2);
            }

            /* Progress Bar */
            .progress-bar {
                display: flex;
                justify-content: space-between;
                margin-bottom: 2rem;
                padding-bottom: 1.5rem;
                gap: 0;
            }

            .progress-step {
                flex: 1;
                align-items: center;
            }

            .step-number {
                width: 40px;
                height: 40px;
                font-size: 0.9rem;
            }

            .step-label {
                font-size: 0.65rem;
                letter-spacing: 0.5px;
                text-align: center;
                margin-top: 0.4rem;
            }

            .progress-line {
                display: none;
            }

            /* Form Steps */
            .form-step h2 {
                font-size: 1.6rem;
                margin-bottom: 0.4rem;
            }

            .step-description {
                font-size: 0.9rem;
                margin-bottom: 2rem;
                padding: 0 0.5rem;
            }

            /* Form Fields */
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .form-group {
                margin-bottom: 1.25rem;
            }

            .form-group label {
                font-size: 0.85rem;
                margin-bottom: 0.5rem;
            }

            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 0.95rem 1rem;
                font-size: 16px;
                border-radius: 10px;
            }

            .error-message {
                font-size: 0.8rem;
                min-height: 1rem;
            }

            /* Profile Selection */
            .profile-selection {
                grid-template-columns: 1fr;
                gap: 1rem;
                margin: 1.5rem 0;
            }

            .card-content {
                padding: 1.8rem 1.2rem;
                border-radius: 12px;
                display: flex;
                flex-direction: row;
                align-items: center;
                text-align: left;
                gap: 1.2rem;
            }

            .card-icon {
                width: 56px;
                height: 56px;
                min-width: 56px;
                margin: 0;
            }

            .card-icon svg {
                width: 26px;
                height: 26px;
            }

            .card-text {
                flex: 1;
            }

            .card-title {
                font-size: 1.25rem;
                margin-bottom: 0.25rem;
            }

            .card-description {
                font-size: 0.8rem;
                line-height: 1.4;
            }

            .profile-card:hover .card-content {
                transform: none;
            }

            /* Radio Group */
            .radio-group {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 0.6rem;
            }

            .radio-option {
                padding: 0.9rem 0.8rem;
                border-radius: 10px;
                justify-content: center;
            }

            .radio-option span {
                font-size: 0.85rem;
            }

            /* Form Navigation */
            .form-navigation {
                flex-direction: column-reverse;
                gap: 0.8rem;
                margin-top: 2rem;
                padding-top: 1.5rem;
            }

            .btn {
                width: 100%;
                max-width: 100%;
                padding: 1rem 2rem;
                font-size: 0.85rem;
                border-radius: 10px;
                letter-spacing: 1.5px;
            }

            .btn-nav {
                padding: 1rem 1.5rem;
            }

            .btn svg {
                width: 16px;
                height: 16px;
            }

            /* Success Message */
            .success-message {
                padding: 2rem 1rem;
            }

            .success-icon {
                width: 80px;
                height: 80px;
                margin-bottom: 1.5rem;
            }

            .success-icon svg {
                width: 40px;
                height: 40px;
            }

            .success-message h2 {
                font-size: 1.5rem;
            }

            .success-message p {
                font-size: 0.9rem;
                margin-bottom: 2rem;
                padding: 0 0.5rem;
            }

            /* Footer */
            footer {
                padding: 3rem 4% 1.5rem;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                text-align: center;
            }

            .footer-brand {
                max-width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .footer-logo img {
                height: 50px;
                margin-bottom: 1rem;
            }

            .footer-brand p {
                font-size: 0.85rem;
                max-width: 280px;
            }

            .social-links {
                justify-content: center;
            }

            .footer-col h4 {
                font-size: 1.1rem;
                margin-bottom: 1rem;
            }

            .footer-col li {
                margin-bottom: 0.6rem;
            }

            .footer-col a {
                font-size: 0.85rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 0.5rem;
                margin-top: 2rem;
                padding-top: 1.5rem;
            }

            .footer-bottom p {
                font-size: 0.75rem;
            }
        }

        /* ================================================
           RESPONSIVE - SMALL MOBILE (480px) - NAVBAR IDENTIQUE AU SITE
           ================================================ */
        @media (max-width: 480px) {
            /* Navbar - EXACTEMENT comme le site */
            .nav-logo {
                height: 60px;
            }

            .navbar.scrolled .nav-logo {
                height: 60px;
            }

            .contact-page {
                padding: 7rem 3% 2rem;
            }

            .form-container {
                padding: 1.5rem 1.2rem;
                border-radius: 12px;
            }

            .progress-bar {
                margin-bottom: 1.5rem;
                padding-bottom: 1.2rem;
            }

            .step-number {
                width: 36px;
                height: 36px;
                font-size: 0.85rem;
            }

            .step-label {
                font-size: 0.6rem;
            }

            .form-step h2 {
                font-size: 1.4rem;
            }

            .step-description {
                font-size: 0.85rem;
                margin-bottom: 1.5rem;
            }

            .form-group {
                margin-bottom: 1rem;
            }

            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 0.85rem 0.9rem;
            }

            .card-content {
                padding: 1.4rem 1rem;
                gap: 1rem;
            }

            .card-icon {
                width: 50px;
                height: 50px;
                min-width: 50px;
            }

            .card-icon svg {
                width: 24px;
                height: 24px;
            }

            .card-title {
                font-size: 1.15rem;
            }

            .card-description {
                font-size: 0.75rem;
            }

            .radio-group {
                grid-template-columns: 1fr;
            }

            .radio-option {
                justify-content: flex-start;
                padding: 0.85rem 1rem;
            }

            .btn {
                padding: 0.9rem 1.2rem;
                font-size: 0.8rem;
            }

            .success-icon {
                width: 70px;
                height: 70px;
            }

            .success-icon svg {
                width: 35px;
                height: 35px;
            }

            .success-message h2 {
                font-size: 1.3rem;
            }

            .success-message p {
                font-size: 0.85rem;
            }

            footer {
                padding: 2.5rem 3% 1.5rem;
            }

            .social-links a {
                width: 36px;
                height: 36px;
            }
        }

        /* ================================================
           RESPONSIVE - VERY SMALL (360px)
           ================================================ */
        @media (max-width: 360px) {
            .nav-logo {
                height: 45px;
            }

            .navbar.scrolled .nav-logo {
                height: 35px;
            }

            .form-container {
                padding: 1.2rem 1rem;
            }

            .step-number {
                width: 32px;
                height: 32px;
                font-size: 0.8rem;
            }

            .form-step h2 {
                font-size: 1.25rem;
            }

            .card-content {
                padding: 1.2rem 0.8rem;
            }

            .card-icon {
                width: 44px;
                height: 44px;
                min-width: 44px;
            }

            .card-title {
                font-size: 1.1rem;
            }
        }
   