/* ============================================
   CORRECTIONS ET MISES À JOUR PERSONNALISÉES
   ============================================ */

/* Traits noirs sous les titres */
.section-title::after,
.section-heading::after,
.section-header h2::after {
    background: #0A0E27 !important;
}

/* Section L'IMMOBILIER EN TERRE CONNUE - trait noir */
.first-section .section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #0A0E27;
    margin: 20px auto 0;
}

/* Section NOS DERNIÈRES OFFRES - trait noir */
.section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #0A0E27;
    margin: 20px auto 0;
}

/* Centrer la photo d'Alice sur le visage */
.team-member-card img[alt*="Alice"] {
    object-position: center 35% !important;
}

/* Footer - Bordure verte au-dessus de la zone copyright */
.footer-bottom {
    border-top: 4px solid !important;
    border-image: linear-gradient(90deg, #30D54A 0%, #00F57D 100%) 1 !important;
}

.footer-main {
    border-bottom: 3px solid #30D54A !important;
}

/* Cartes Service 360° - styles pour les liens */
a.service-360-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.service-360-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(48, 213, 74, 0.3);
}

a.service-360-card:hover .service-360-overlay {
    background: linear-gradient(180deg, rgba(255,0,128,0.3) 0%, rgba(10,14,39,0.95) 100%);
}

/* Pagination horizontale */
.page-numbers {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-numbers li {
    display: inline-block;
    margin: 0;
}

.page-numbers a,
.page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-numbers a:hover {
    background: #30D54A;
    color: white;
    border-color: #30D54A;
}

.page-numbers .current {
    background: #30D54A;
    color: white;
    border-color: #30D54A;
    font-weight: bold;
}

.page-numbers .dots {
    border: none;
    background: none;
}

/* Icônes sociales de la top-bar - VERT */
.top-bar .social-icons a {
    color: #30D54A !important;
    background: rgba(48,213,74,0.1) !important;
}

.top-bar .social-icons a i {
    color: #30D54A !important;
}

.top-bar .social-icons a:hover {
    background: #FE0096 !important;
    color: #ffffff !important;
}

/* Fix: Alignement téléphone avec le logo - compense l'espace icône */
.top-bar-left {
    margin-left: -8px !important;
}

/* Bandeau vert du top-bar - corrections mobile */
@media (max-width: 992px) {
    .top-bar-left a,
    .top-bar-left span {
        color: #30D54A !important;
    }
    
    .top-bar-left i {
        color: #30D54A !important;
    }
}

/* ============================================
   CONTACT FORM 7 - Rendu identique au formulaire original
   ============================================ */
.hectaria-cf7-wrapper .wpcf7 {
    margin: 0;
    padding: 0;
}

.hectaria-cf7-wrapper .wpcf7-form p {
    margin-bottom: 20px;
    margin-top: 0;
}

.hectaria-cf7-wrapper .wpcf7-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    color: #0A0E27;
    font-family: var(--font-primary);
}

.hectaria-cf7-wrapper .wpcf7-form input[type="text"],
.hectaria-cf7-wrapper .wpcf7-form input[type="email"],
.hectaria-cf7-wrapper .wpcf7-form input[type="tel"] {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: var(--font-primary);
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.hectaria-cf7-wrapper .wpcf7-form input[type="text"]:focus,
.hectaria-cf7-wrapper .wpcf7-form input[type="email"]:focus,
.hectaria-cf7-wrapper .wpcf7-form input[type="tel"]:focus {
    outline: none;
    border-color: #30D54A;
    box-shadow: 0 0 0 2px rgba(48, 213, 74, 0.15);
}

.hectaria-cf7-wrapper .wpcf7-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: vertical;
    font-size: 15px;
    font-family: var(--font-primary);
    box-sizing: border-box;
    min-height: 130px;
    transition: border-color 0.3s ease;
}

.hectaria-cf7-wrapper .wpcf7-form textarea:focus {
    outline: none;
    border-color: #30D54A;
    box-shadow: 0 0 0 2px rgba(48, 213, 74, 0.15);
}

.hectaria-cf7-wrapper .wpcf7-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.hectaria-cf7-wrapper .wpcf7-form input[type="submit"],
.hectaria-cf7-wrapper .wpcf7-form .wpcf7-submit {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    background: #30D54A;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.hectaria-cf7-wrapper .wpcf7-form input[type="submit"]:hover,
.hectaria-cf7-wrapper .wpcf7-form .wpcf7-submit:hover {
    background: #28b83f;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(48, 213, 74, 0.3);
}

.hectaria-cf7-wrapper .wpcf7-response-output {
    margin: 10px 0 0;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
}

.hectaria-cf7-wrapper .wpcf7-mail-sent-ok {
    border-color: #30D54A;
    color: #30D54A;
    background: rgba(48, 213, 74, 0.07);
}

.hectaria-cf7-wrapper .wpcf7-mail-sent-ng,
.hectaria-cf7-wrapper .wpcf7-spam-blocked {
    border-color: #FE0096;
    color: #FE0096;
    background: rgba(254, 0, 150, 0.07);
}
