/* ===== PAGE CONTACTEZ-NOUS ===== */
.refonte-contact-hero {
    position: relative;
    min-height: 180px;
    background: var(--refonte-bg-content);
    overflow: hidden;
}

.refonte-contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/banniere.jpeg) no-repeat center;
    background-size: cover;
    filter: grayscale(80%) brightness(0.5);
}

.refonte-contact-hero .refonte-header-overlay {
    background: linear-gradient(105deg, rgba(11, 41, 64, 0.85) 0%, rgba(11, 41, 64, 0.6) 50%, transparent 100%);
}

.refonte-contact-brand {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--refonte-text-white);
    letter-spacing: 2px;
}

.refonte-contact-main {
    background: var(--refonte-bg-dark);
    padding: 60px 30px 80px;
}

.refonte-contact-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    background: var(--refonte-bg-dark);
}

.refonte-contact-intro h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    color: var(--refonte-text-white);
    margin: 0 0 16px;
}

.refonte-contact-tagline {
    font-size: 1.1em;
    color: var(--refonte-text-light);
    margin: 0 0 28px;
}

.refonte-contact-text {
    font-size: 15px;
    color: var(--refonte-text-light);
    line-height: 1.75;
    margin: 0 0 20px;
    text-align: left;
}

.refonte-contact-urgent {
    font-size: 15px;
    color: var(--refonte-text-white);
    line-height: 1.75;
    margin: 0;
    text-align: left;
}

.refonte-contact-image-wrap {
    max-width: var(--refonte-max-width);
    margin: 0 auto 60px;
}

.refonte-contact-image-main {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.refonte-contact-coords {
    max-width: var(--refonte-max-width);
    margin: 0 auto 60px;
}

.refonte-contact-coords h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    color: var(--refonte-text-white);
    text-align: center;
    margin: 0 0 8px;
}

.refonte-contact-coords-sub {
    font-size: 15px;
    color: var(--refonte-text-light);
    text-align: center;
    margin: 0 0 36px;
}

.refonte-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.refonte-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.refonte-contact-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.refonte-contact-icon-svg {
    width: 32px;
    height: 32px;
    color: var(--refonte-text-white);
}

.refonte-contact-icon-svg svg {
    width: 100%;
    height: 100%;
}

.refonte-contact-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95em;
    font-weight: 600;
    color: var(--refonte-text-white);
    margin: 0 0 8px;
    letter-spacing: 1px;
}

.refonte-contact-item p {
    font-size: 15px;
    color: var(--refonte-text-light);
    margin: 0 0 4px;
}

.refonte-contact-item a {
    color: var(--refonte-text-white);
    text-decoration: none;
}

.refonte-contact-item a:hover {
    text-decoration: underline;
}

/* Formulaire */
.refonte-contact-form-section {
    max-width: 700px;
    margin: 0 auto;
}

.refonte-contact-form-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.refonte-contact-form-card h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    color: #2a2a2a;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.refonte-contact-form-sub {
    font-size: 14px;
    color: #666;
    margin: 0 0 32px;
}

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

.refonte-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.refonte-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #2a2a2a;
    margin-bottom: 8px;
}

.refonte-form-group input,
.refonte-form-group select,
.refonte-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
}

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

.refonte-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #4a90d9 0%, #3a7bc8 100%);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.25s ease;
}

.refonte-form-submit:hover {
    opacity: 0.9;
}

@media (max-width: 900px) {
    .refonte-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .refonte-contact-image-main {
        max-height: 360px;
    }
    
    .refonte-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .refonte-contact-main {
        padding: 40px 20px 60px;
    }
    
    .refonte-contact-form-card {
        padding: 24px;
    }
    
    .refonte-contact-intro h1 {
        font-size: 2em;
    }
}
