.elementor-26 .elementor-element.elementor-element-b2b4917{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-5a1e5f8 *//* --- VARIABLES : PALETTE VESTIGE --- */
:root {
    --vestige-teal: #009BA6;   /* Couleur Principale */
    --vestige-blue: #005F73;   /* Couleur Profonde */
    --vestige-green: #29bf12;  /* Couleur Action/Nature */
    --gradient-bg: linear-gradient(135deg, #009BA6 0%, #005F73 100%);
    
    --dark: #1e293b;
    --grey: #64748b;
    --light: #F8FAFC;
    --white: #ffffff;
    
    --shadow-card: 0 10px 30px -5px rgba(0, 95, 115, 0.1);
    --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
}

/* --- HEADER HERO (Le gros bloc bleu/vert) --- */
.page-header {
    background: var(--gradient-bg);
    color: var(--white);
    padding: 100px 20px 180px 20px; /* Grand padding bas pour les cartes flottantes */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sub-title {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.wave-bottom {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- CARTES FLOTTANTES --- */
.info-cards-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: -100px; /* Remonte sur le header */
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    text-align: center;
    flex: 1;
    min-width: 250px;
    border-bottom: 4px solid transparent;
    transition: 0.3s;
}

.info-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--vestige-teal);
}

.icon-circle {
    width: 60px; height: 60px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}

.bg-green { background: rgba(41, 191, 18, 0.1); }
.bg-blue { background: rgba(0, 95, 115, 0.1); }
.bg-teal { background: rgba(0, 155, 166, 0.1); }

.info-card h3 { font-size: 1.2rem; margin-bottom: 5px; color: var(--dark); }
.info-card p { font-size: 0.9rem; color: var(--grey); margin-bottom: 15px; }

.link-action {
    display: inline-block;
    color: var(--vestige-teal);
    font-weight: 700;
    text-decoration: none;
}
.link-text { color: var(--dark); font-weight: 600; }

/* --- SECTION PRINCIPALE --- */
.main-contact-area { padding: 80px 20px; }

.grid-contact {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Formulaire plus large */
    gap: 50px;
}

/* FORMULAIRE STYLÉ */
.form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.form-header h2 { font-family: 'Playfair Display', serif; color: var(--vestige-teal); margin-bottom: 10px; }
.form-header p { margin-bottom: 30px; color: var(--grey); }

.vestige-form .input-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}

.input-group { margin-bottom: 20px; }

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark);
}

input, select, textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    transition: 0.3s;
    background: #fdfdfd;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--vestige-teal);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 155, 166, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--gradient-bg);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-submit:hover { opacity: 0.9; transform: scale(1.02); }

/* SIDEBAR & FAQ */
.faq-box { margin-bottom: 30px; }
.faq-box h3 { color: var(--vestige-blue); margin-bottom: 20px; }

details {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

summary {
    padding: 15px;
    font-weight: 600;
    cursor: pointer;
    list-style: none; /* Cache la flèche par défaut */
    position: relative;
}

summary::after {
    content: '+';
    position: absolute;
    right: 15px;
    color: var(--vestige-teal);
    font-weight: bold;
}

details[open] summary::after { content: '-'; }

details p {
    padding: 0 15px 15px 15px;
    color: var(--grey);
    font-size: 0.95rem;
    border-top: 1px dashed #e2e8f0;
    margin-top: 10px;
    padding-top: 10px;
}

/* CARD WHATSAPP */
.whatsapp-card {
    background: #DCFCE7; /* Vert très clair */
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid #86EFAC;
}

.whatsapp-card h4 { color: #14532D; margin-bottom: 5px; }
.whatsapp-card p { color: #166534; font-size: 0.9rem; margin-bottom: 20px; }

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}
.btn-whatsapp:hover { background: #1ebc57; transform: translateY(-3px); }

/* RESPONSIVE */
@media (max-width: 900px) {
    .page-header h1 { font-size: 2.5rem; }
    .grid-contact { grid-template-columns: 1fr; }
    .vestige-form .input-row { grid-template-columns: 1fr; }
    .info-cards-section { flex-direction: column; }
}/* End custom CSS */