/* =========================================
   1. LAYOUT PRINCIPAL (Section Contact)
   ========================================= */
   .contact-section {
    padding: 80px 5%;
    background-color: var(--bg-dark-nav); /* Fond sombre cohérent */
    color: white;
    min-height: 80vh; /* Prend de la place pour l'esthétique */
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Colonne Gauche plus petite que Droite */
    gap: 60px;
    align-items: start;
}

/* Responsive Mobile */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =========================================
   2. COLONNE GAUCHE (Infos & Profil)
   ========================================= */
.contact-info strong { color: white; }

/* --- Bloc Profil (Photo + Nom) --- */
.profile-container {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;   
    text-align: center;
}

.profile-photo {
    width: 140px;       
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    outline: 1px solid var(--border-soft);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}
.profile-photo:hover { transform: scale(1.05); }

.profile-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: white; /* Sur fond sombre */
    margin: 0 0 5px 0;
}

/* --- Rôles hiérarchisés --- */
.profile-role-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px; /* Espace entre Fondateur et Consultant */
    margin-top: 5px;
}

.role-title {
    color: var(--copper-main); /* Cuivre pour détacher le statut du nom */
    font-size: 0.85rem;        /* Légèrement plus petit que le nom */
    font-weight: 800;          /* Très gras pour l'autorité */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3px;
}

.role-subtitle {
    color: #cbd5e1;            /* Gris clair (Slate-300) pour la fonction */
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* --- Liste des Coordonnées --- */
.contact-details { margin-top: 10px; }

.contact-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 5px;
    color: var(--copper-main); /* Icônes en cuivre */
}

.contact-label {
    font-weight: bold; 
    color: #cbd5e1; /* Gris clair */
    margin: 5px 0 0 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value { 
    margin: 0; 
    color: white; 
    font-weight: 500;
}

.contact-link {
    color: white; 
    text-decoration: none;
    transition: color 0.3s;
}
.contact-link:hover { color: var(--copper-main); }


/* =========================================
   3. BLOC RÉSERVATION (Style Luminous Glass)
   ========================================= */
.booking-container {
    /* Fond lumineux et flou */
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    /* Bordures subtiles */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    
    /* Signature marque */
    border-left: 4px solid var(--copper-main);
    
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 40px;
    
    /* Ombre portée */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.booking-container h3 {
    color: white;
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 15px;
    display: flex; align-items: center; gap: 10px;
}

.booking-container h3 .icon-svg {
    stroke: var(--copper-main);
    width: 22px; height: 22px;
}

.booking-container p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.booking-btn {
    width: 100%;
    text-align: center;
    display: block;
    background-color: var(--copper-main);
    border: none;
    color: white; /* Important pour le texte du lien */
}
.booking-btn:hover {
    background-color: var(--copper-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(154, 77, 40, 0.4);
}


/* =========================================
   4. FORMULAIRE (Style Luminous Glass)
   ========================================= */
.mars-form {
    /* Fond éclairci pour détacher du fond bleu */
    background: rgba(255, 255, 255, 0.07); 
    
    /* Flou d'arrière-plan */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    /* Bordures */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    
    padding: 40px;
    border-radius: 16px;
    
    /* Grosse ombre portée */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.form-group { margin-bottom: 20px; }

/* Labels */
.mars-form label { 
    color: #f1f5f9; 
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0.5px;
}

/* Champs de saisie (Inputs) */
.mars-form input, 
.mars-form select, 
.mars-form textarea {
    width: 100%;
    padding: 14px;
    
    /* Fond sombre pour creuser l'espace de saisie */
    background: rgba(0, 0, 0, 0.25); 
    
    /* Bordure discrète */
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    color: white;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

/* Placeholder (Texte indicatif) */
.mars-form ::placeholder { color: #94a3b8; }

/* Effet Focus */
.mars-form input:focus, 
.mars-form select:focus, 
.mars-form textarea:focus {
    background: rgba(0, 0, 0, 0.4); /* Plus sombre */
    border-color: var(--copper-main);
    box-shadow: 0 0 0 4px rgba(154, 77, 40, 0.15); /* Halo cuivre */
    outline: none;
}

/* Options Select */
.mars-form option {
    background-color: #1e293b; /* Fond opaque pour lisibilité */
    color: white;
}

.hidden-field { display: none; }

/* --- Checkbox & RGPD --- */
.form-rgpd {
    display: flex; 
    gap: 15px; 
    margin-bottom: 25px; 
    margin-top: 20px;
    font-size: 0.85rem;
    color: #cbd5e1; 
    align-items: flex-start;
}
.form-rgpd a { color: var(--copper-main); text-decoration: underline; }

.mars-form input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    accent-color: var(--copper-main);
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
    margin-top: 2px;
    cursor: pointer;
}