/* ============================================
           PAGE CONTACT — style Helpo / Quicksand
           ============================================ */
        .contact-section {
            padding: 160px 0 180px;
            background: #fff;
        }

        .contact-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 4fr 6fr;
            gap: 120px;
            align-items: start;
        }

        /* Colonne gauche : titre + coordonnees */
        .contact-info {
            display: flex;
            flex-direction: column;
        }

        .contact-title {
            font-family: 'Quicksand', sans-serif;
            font-size: 50px;
            font-weight: 700;
            color: #4a4c70;
            line-height: 1.1;
            letter-spacing: -3.5px;
            margin: 0 0 20px;
        }

        .contact-title .inv-light { font-weight: 400; }

        .contact-text {
            font-family: 'Quicksand', sans-serif;
            font-size: 18px;
            font-weight: 400;
            color: #666;
            line-height: 1.5;
            margin: 0 0 40px;
        }

        .contact-coords {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-coord-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-coord-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #f9f7f6;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-coord-icon i {
            color: #efc940;
            font-size: 16px;
        }

        .contact-coord-label {
            font-family: 'Quicksand', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: #9e9e9e;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin: 0 0 4px;
        }

        .contact-coord-value {
            font-family: 'Quicksand', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: #4a4c70;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .contact-coord-value:hover {
            opacity: 0.7;
        }

        /* Colonne droite : formulaire */
        .contact-form {
            background: #f9f7f6;
            border-radius: 20px;
            padding: 50px 45px;
        }

        .contact-form-title {
            font-family: 'Quicksand', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: #4a4c70;
            letter-spacing: -1px;
            margin: 0 0 8px;
        }

        .contact-form-sub {
            font-family: 'Quicksand', sans-serif;
            font-size: 15px;
            font-weight: 400;
            color: #999;
            margin: 0 0 30px;
        }

        .contact-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 15px;
        }

        .contact-field {
            display: flex;
            flex-direction: column;
        }

        .contact-field label {
            font-family: 'Quicksand', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: #4a4c70;
            margin-bottom: 6px;
        }

        .contact-field input,
        .contact-field textarea {
            font-family: 'Quicksand', sans-serif;
            font-size: 15px;
            padding: 12px 16px;
            border: 1.5px solid #e0e0e0;
            border-radius: 10px;
            color: #333;
            background: #fff;
            transition: border-color 0.3s;
            outline: none;
            resize: vertical;
        }

        .contact-field input:focus,
        .contact-field textarea:focus {
            border-color: #efc940;
        }

        .contact-field input::placeholder,
        .contact-field textarea::placeholder {
            color: #bbb;
        }

        .contact-field textarea {
            min-height: 140px;
        }

        .contact-field--full {
            margin-bottom: 15px;
        }

        .contact-submit {
            font-family: 'Quicksand', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: #4a4c70;
            background: #efc940;
            border: none;
            padding: 14px 40px;
            border-radius: 50px;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            margin-top: 10px;
            width: 100%;
        }

        .contact-submit:hover {
            background: #d4ae2e;
            transform: translateY(-2px);
        }

        .contact-micro {
            font-family: 'Quicksand', sans-serif;
            font-size: 12px;
            color: #999;
            text-align: center;
            margin-top: 15px;
            line-height: 1.4;
        }

        .contact-micro a {
            color: #efc940;
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            .contact-title { font-size: 36px; letter-spacing: -2px; }
        }

        @media (max-width: 768px) {
            .contact-section { padding: 120px 0 80px; }
            .contact-form { padding: 35px 25px; }
            .contact-form-row { grid-template-columns: 1fr; }
            .contact-title { font-size: 30px; }
        }
