:root { --primary: #e74c3c; --secondary: #2c3e50; --bg-light: #f4f7f6; }

.containerr { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Hero */
.partner-hero { 
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('../img/partner-bg.jpg') center/cover;
    padding: 100px 0; color: #fff; text-align: center;
}
.partner-hero h1 { font-size: 2.8rem; margin-bottom: 15px; }

/* Layout Grid */
.partner-content { padding: 80px 0; background: var(--bg-light); }
.flex-grid { display: flex; gap: 60px; flex-wrap: wrap; }
.info-side { flex: 1; min-width: 350px; }
.form-side { flex: 1; min-width: 350px; }

/* Info Side */
.subtitle { color: var(--primary); font-weight: 700; letter-spacing: 1px; display: block; margin-bottom: 10px; }
.info-side h2 { font-size: 2.2rem; margin-bottom: 25px; color: var(--secondary); }
.benefit-item { display: flex; gap: 20px; margin-bottom: 30px; }
.benefit-item i { font-size: 1.8rem; color: var(--primary); margin-top: 5px; }
.support-types ul { list-style: none; padding: 0; margin-top: 20px; }
.support-types li { margin-bottom: 10px; font-weight: 600; color: var(--secondary); }

/* Form Card */
.form-card { 
    background: #fff; padding: 40px; border-radius: 20px; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
}
.form-card h3 { font-size: 1.8rem; margin-bottom: 10px; color: var(--secondary); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea { 
    width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; font-family: inherit; 
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.btn-submit { 
    width: 100%; padding: 15px; background: var(--primary); color: #fff; 
    border: none; border-radius: 8px; font-weight: 700; cursor: pointer; transition: 0.3s;
}
.btn-submit:hover { background: #c0392b; transform: translateY(-2px); }

@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
}

/* Style des liens (téléphone et email) */
.footer-contact a {
    color: inherit; /* Prend la couleur du texte parent (évite le bleu) */
    text-decoration: none; /* Supprime le soulignement par défaut */
    position: relative; /* Nécessaire pour le tracer personnalisé */
    transition: color 0.3s ease;
}

/* Le "Tracer" (soulignement personnalisé) */
.footer-contact a::after {
    content: '';
    position: absolute;
    width: 0; /* Commence à 0 */
    height: 1px; /* Épaisseur du trait */
    bottom: -2px; /* Position sous le texte */
    left: 0;
    background-color: #e74c3c; /* Couleur du trait */
    transition: width 0.3s ease; /* Animation de gauche à droite */
}

/* Effet au survol (Hover) */
.footer-contact a:hover {
    color: #e74c3c; /* Le texte change de couleur au survol */
}

.footer-contact a:hover::after {
    width: 100%; /* Le trait s'allonge sur toute la largeur */
}

.form-group input[type="file"] {
    padding: 10px;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

.form-group input[type="file"]:hover {
    border-color: #e74c3c;
    background: #fff5f4;
}

/* --- Bannière --- */
.breadcrumb-areag {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), 
                url('../img/Children-helped-by-World-Vision-from-its-webiste.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 140px 0;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}

.breadcrumb-areag h1 { color: var(--white); font-size: 3.5rem; letter-spacing: 3px; margin-bottom: 10px; }
.breadcrumb-areag  a { color: var(--gold); text-decoration: none; font-weight: 600; }
.breadcrumb-areag p { color: var(--white); text-decoration: none; font-weight: 600; }

.breadcrumb-areag h2 {
    font-size: 1.5rem; /* Taille équilibrée sous le H1 */
    font-weight: 300;  /* Aspect léger et raffiné */
    color: rgba(255, 255, 255, 0.9); /* Blanc légèrement transparent */
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 15px;
}

/* Petit liseré décoratif sous le H2 */
.breadcrumb-areag h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #e74c3c; /* Le rouge de votre charte */
    border-radius: 2px;
}

.top-badger {
    background: rgba(212, 175, 55, 0.2); color: var(--gold); border: 1px solid var(--gold);
    padding: 6px 18px; border-radius: 50px; font-weight: 700; font-size: 0.8rem;
    text-transform: uppercase; letter-spacing: 2px; display: inline-block; margin-bottom: 15px;
}