/* ========== REASSURANCE ITEMS (bullets hero) ========== */
.reassurance-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--ink-light);
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-radius: 3px;
    padding: 8px 14px;
}

.reassurance-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--coral);
}

/* ========== HERO CONTACT ========== */
.contact-loc {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: .4rem .6rem;
    padding: .45rem 1.5rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .88rem;
    color: var(--ink-light);
    background: var(--cream-soft);
    margin-bottom: 28px;
}

.contact-loc strong {
    color: var(--ink);
    font-weight: 600;
}

.contact-pin {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--coral);
    display: inline-block;
    flex-shrink: 0;
}

.contact-bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

/* ========== LAYOUT CONTACT ========== */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 96px;
    max-width: 1024px;
    margin: 0 auto;
}

/* ========== INFOS CONTACT (gauche) ========== */
.contact-info-block {
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-top: 2px solid var(--navy);
    border-radius: 4px;
    padding: 24px 28px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .contact-info-block {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: .9rem;
    color: var(--ink-light);
    line-height: 1.5;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item svg {
    color: var(--coral);
    flex-shrink: 0;
    margin-top: 1px;
}

.contact-info-item a {
    color: var(--ink);
    font-weight: 500;
    transition: color .2s;
}

.contact-info-item a:hover {
    color: var(--coral);
}

.contact-info-label {
    font-family: 'Inter', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 4px;
    display: block;
    grid-column: 1 / -1;
}

.contact-hours {
    font-size: .85rem;
    color: var(--ink-light);
    line-height: 1.7;
}

.contact-reassurance {
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: .82rem;
    color: var(--ink-light);
    line-height: 1.6;
}

@media (min-width: 640px) {
    .contact-reassurance {
        border-top: none;
        padding-top: 0;
        border-left: 1px solid var(--line);
        padding-left: 20px;
    }
}

.contact-reassurance strong {
    color: var(--ink);
}

/* ========== FORMULAIRE ========== */
.cf-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cf-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.cf-field label {
    font-family: 'Inter', sans-serif;
    font-size: .82rem;
    font-weight: 500;
    color: var(--ink);
}

.cf-field small.help {
    color: var(--ink-light);
    font-size: .78rem;
    margin-top: 2px;
}

.cf-field input[type="text"],
.cf-field input[type="email"],
.cf-field input[type="tel"],
.cf-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 3px;
    background: white;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: .9rem;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.cf-field input:hover,
.cf-field textarea:hover {
    border-color: #C5C0B5;
}

.cf-field input:focus-visible,
.cf-field textarea:focus-visible {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, .1);
}

.cf-field input[aria-invalid="true"],
.cf-field textarea[aria-invalid="true"] {
    border-color: var(--coral);
}

.cf-field textarea {
    min-height: 180px;
    resize: vertical;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
    color: rgba(91, 100, 112, .45);
}

/* Ligne accent focus */
.cf-field:focus-within::after {
    content: '';
    position: absolute;
    left: 6px;
    right: 6px;
    bottom: -2px;
    height: 1px;
    background: linear-gradient(90deg, var(--coral), transparent 70%);
    animation: cfSweep .7s cubic-bezier(.2, .8, .2, 1);
}

@keyframes cfSweep {
    from {
        transform: scaleX(.5);
        opacity: .3;
    }

    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

/* CGU */
.cf-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 14px;
    border: 1px dashed var(--line);
    border-radius: 3px;
    background: var(--cream-soft);
}

.cf-checkbox input[type="checkbox"] {
    margin-top: 2px;
    accent-color: var(--navy);
    flex-shrink: 0;
}

.cf-checkbox label {
    font-size: .85rem;
    color: var(--ink-light);
    line-height: 1.5;
}

.cf-checkbox a {
    color: var(--ink);
    border-bottom: 1px dotted var(--line);
    transition: color .2s, border-color .2s;
}

.cf-checkbox a:hover {
    color: var(--coral);
    border-bottom-color: var(--coral);
}

/* Honeypot */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Alertes PHP */
.cf-alert {
    border-radius: 3px;
    padding: 14px 16px;
    margin-bottom: 48px;
    font-size: .875rem;
    line-height: 1.5;
}

.cf-alert-error {
    border-left: 3px solid var(--coral);
    background: rgba(219, 101, 69, .08);
    color: var(--coral-dark);
}

.cf-alert-success {
    border-left: 3px solid #16a34a;
    background: rgba(22, 163, 74, .07);
    color: #14532d;
}

.cf-alert p {
    margin: 0 0 4px;
}

.cf-alert p:last-child {
    margin: 0;
}

/* ========== MINI-FAQ ========== */
.cf-faq-container {
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
}

.cf-faq-item {
    border-bottom: 1px solid var(--line);
}

.cf-faq-item:last-child {
    border-bottom: none;
}

.cf-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
    cursor: pointer;
    background: var(--cream-soft);
    transition: background .2s;
}

.cf-faq-question:hover,
.cf-faq-item.active .cf-faq-question {
    background: var(--cream-warm);
}

.cf-faq-question h3 {
    font-family: 'Inter', sans-serif;
    font-size: .88rem;
    font-weight: 500;
    color: var(--ink);
    margin: 0;
}

.cf-faq-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--coral);
    transition: transform .3s ease;
}

.cf-faq-item.active .cf-faq-icon {
    transform: rotate(45deg);
}

.cf-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.cf-faq-answer p {
    padding: 14px 22px 18px;
    font-size: .875rem;
    color: var(--ink-light);
    line-height: 1.65;
    margin: 0;
}