/* ==========================================================
   ONG GEIA — STYLE PRINCIPAL
   Couleurs du logo : Vert foncé (sapin) · Orange
   ========================================================== */

/* ===== VARIABLES ===== */
:root {
    /* Couleurs principales du logo GEIA */
    --primary:        #0F5132;   /* Vert sapin foncé (GE du logo) */
    --primary-dark:   #0A3D24;
    --primary-light:  #1B7A4E;
    --primary-pale:   #D8EBE0;

    --secondary:      #2E7D32;   /* Vert plus clair pour accents */
    --secondary-dark: #1B5E20;
    --secondary-light:#4CAF50;

    --accent:         #E67E22;   /* Orange du logo */
    --accent-dark:    #CA6510;
    --accent-light:   #F39C45;
    --accent-pale:    #FCE7CF;

    /* Échelle de gris */
    --white:    #FFFFFF;
    --gray-50:  #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Typographie */
    --font-heading: 'Poppins', -apple-system, sans-serif;
    --font-body:    'Inter', -apple-system, sans-serif;

    /* Layout */
    --container:   1200px;
    --radius-sm:   6px;
    --radius:      12px;
    --radius-lg:   16px;
    --radius-xl:   24px;

    /* Ombres */
    --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
    --shadow:     0 4px 12px rgba(15,81,50,0.10);
    --shadow-lg:  0 12px 32px rgba(15,81,50,0.15);
    --shadow-xl:  0 20px 60px rgba(15,81,50,0.20);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.25;
    margin-bottom: 1rem;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
em { font-style: normal; color: var(--accent); }
strong { color: var(--gray-900); }

p { margin-bottom: 1rem; }

/* ===== UTILITAIRES ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.section   { padding: 5rem 0; }
.text-center { text-align: center; }

.section-header { max-width: 760px; margin: 0 auto 3.5rem; text-align: center; }
.section-tag {
    display: inline-block;
    padding: 0.4rem 1.1rem;
    background: var(--primary-pale);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}
.section-title { margin-bottom: 1rem; }
.section-header p { color: var(--gray-600); font-size: 1.05rem; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    line-height: 1.2;
}
.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-accent {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}
.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230,126,34,0.30);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: white;
}
.btn-white {
    background: white;
    color: var(--primary);
    border-color: white;
}
.btn-white:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* ===== TOPBAR ===== */
.topbar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.92);
    font-size: 0.85rem;
    padding: 0.55rem 0;
}
.topbar-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.topbar-info { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar-info a, .topbar-info span { color: inherit; display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar-info a:hover { color: var(--accent-light); }
.lang-switch a { color: rgba(255,255,255,0.7); padding: 0 0.35rem; font-weight: 600; }
.lang-switch a.active { color: var(--accent-light); }

/* ===== HEADER ===== */
.header {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--accent);
}
.header-row { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 0; }
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo img { display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { color: var(--primary); font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; }
.logo-text small { color: var(--gray-600); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }

.nav-main { display: flex; align-items: center; gap: 2rem; }
.nav-main ul { display: flex; gap: 1.75rem; }
.nav-main ul a {
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}
.nav-main ul a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 3px;
    background: var(--accent);
    transition: width 0.3s;
}
.nav-main ul a:hover, .nav-main ul a.active { color: var(--primary); }
.nav-main ul a:hover::after, .nav-main ul a.active::after { width: 100%; }

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
}

/* ===== HERO SLIDER ===== */
.hero-swiper { width: 100%; height: 600px; position: relative; }
.hero-slide {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,81,50,0.85) 0%, rgba(10,61,36,0.92) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
}
.hero-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}
.hero-content h1 {
    color: white;
    margin-bottom: 1.25rem;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
}
.hero-content h1 em { color: var(--accent-light); }
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.swiper-pagination-bullet { background: white; opacity: 0.5; }
.swiper-pagination-bullet-active { background: var(--accent); opacity: 1; }
.swiper-button-next, .swiper-button-prev {
    color: white;
    background: rgba(0,0,0,0.25);
    width: 50px; height: 50px;
    border-radius: 50%;
}
.swiper-button-next:after, .swiper-button-prev:after { font-size: 1.2rem; }

/* ===== STATS ===== */
.stats { padding: 4rem 0; background: var(--primary); color: white; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.stat { text-align: center; }
.stat-icon {
    width: 64px; height: 64px;
    margin: 0 auto 1rem;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: var(--accent-light);
}
.stat-number { font-size: 2.5rem; font-weight: 800; font-family: var(--font-heading); margin-bottom: 0.25rem; }
.stat-label { font-size: 0.95rem; opacity: 0.9; }

/* ===== ABOUT / PILIERS ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image { position: relative; }
.about-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); width: 100%; }
.experience-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--accent);
    color: white;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.experience-badge strong { display: block; font-size: 2rem; line-height: 1; color: white; }
.experience-badge span { font-size: 0.85rem; opacity: 0.95; }

.about-content .lead { font-size: 1.15rem; color: var(--gray-700); font-weight: 500; margin-bottom: 1.25rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1.5rem; }
.about-feature { display: flex; align-items: center; gap: 0.6rem; color: var(--gray-700); }
.about-feature i { color: var(--accent); font-size: 1.1rem; }

/* ===== PILIERS CARDS ===== */
.piliers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.pilier-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--primary);
    transition: var(--transition);
    position: relative;
}
.pilier-card:nth-child(2) { border-top-color: var(--accent); }
.pilier-card:nth-child(3) { border-top-color: var(--secondary); }
.pilier-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.pilier-icon {
    width: 70px; height: 70px;
    background: var(--primary-pale);
    color: var(--primary);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}
.pilier-card:nth-child(2) .pilier-icon { background: var(--accent-pale); color: var(--accent); }
.pilier-card:nth-child(3) .pilier-icon { background: #E8F5E9; color: var(--secondary); }
.pilier-card h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.pilier-card ul { margin-top: 1rem; }
.pilier-card ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--gray-700);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-100);
}
.pilier-card ul li:last-child { border-bottom: 0; }
.pilier-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0; top: 0.6rem;
    color: var(--accent);
    font-size: 0.85rem;
}

/* ===== PRODUITS / ACTIONS ===== */
.produits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.produit-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.produit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}
.produit-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--primary-pale);
    position: relative;
}
.produit-icon-overlay {
    position: absolute;
    bottom: -25px; left: 1.5rem;
    width: 60px; height: 60px;
    background: var(--accent);
    color: white;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
}
.produit-body { padding: 2rem 1.5rem 1.5rem; }
.produit-body h3 { font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--primary); }
.produit-body p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 1.25rem; }
.produit-body .btn { width: 100%; justify-content: center; }

/* ===== PARALLAX ===== */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    padding: 6rem 0;
    position: relative;
    color: white;
    text-align: center;
}
.parallax::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15,81,50,0.92), rgba(230,126,34,0.78));
}
.parallax > .container { position: relative; z-index: 2; }
.parallax h2 { color: white; }
.parallax p { font-size: 1.15rem; max-width: 700px; margin: 0 auto 2rem; opacity: 0.95; }

/* ===== PARTENAIRES ===== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    align-items: center;
}
.partner-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}
.partner-item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.partner-item img { max-height: 60px; margin: 0 auto 0.5rem; object-fit: contain; filter: grayscale(0.3); }
.partner-item:hover img { filter: grayscale(0); }
.partner-item .partner-name { font-size: 0.85rem; color: var(--gray-600); font-weight: 600; }
.partner-bientot {
    position: absolute;
    top: 0.5rem; right: 0.5rem;
    background: var(--accent);
    color: white;
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
}

/* ===== TÉMOIGNAGES ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.testimonial {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
}
.testimonial-stars { color: var(--accent); margin-bottom: 0.75rem; }
.testimonial-text { font-style: italic; color: var(--gray-700); margin-bottom: 1.5rem; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-author img {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-author .name { font-weight: 700; color: var(--gray-900); display: block; }
.testimonial-author .role { font-size: 0.85rem; color: var(--gray-500); }

/* ===== BLOG ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.blog-card-image { height: 220px; background-size: cover; background-position: center; }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
    display: flex; gap: 1rem;
    font-size: 0.8rem; color: var(--gray-500);
    margin-bottom: 0.75rem;
}
.blog-card-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.blog-card h3 a { color: var(--gray-900); }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 1rem; flex: 1; }
.blog-card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex; align-items: center; gap: 0.4rem;
}
.blog-card-link:hover { color: var(--accent); }

/* ===== PAGE BANNER ===== */
.page-banner {
    padding: 5rem 0;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}
.banner-tag {
    display: inline-block;
    padding: 0.4rem 1.1rem;
    background: var(--accent);
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.banner-content h1 { color: white; }
.breadcrumb {
    display: flex; justify-content: center; align-items: center; gap: 0.6rem;
    margin-top: 0.75rem; font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--accent-light); }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}
.contact-info-block {
    background: var(--primary);
    color: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}
.contact-info-block h3 { color: white; }
.contact-info-block .contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}
.contact-info-block .contact-item i {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: var(--accent-light);
    flex-shrink: 0;
}
.contact-info-block .contact-item a { color: white; }
.contact-info-block .contact-item a:hover { color: var(--accent-light); }

/* ===== FORM ===== */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: white;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15,81,50,0.10);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    border-left: 4px solid;
}
.alert-success { background: #ECFDF5; border-color: #10B981; color: #047857; }
.alert-error   { background: #FEF2F2; border-color: #EF4444; color: #B91C1C; }
.alert-info    { background: var(--primary-pale); border-color: var(--primary); color: var(--primary-dark); }

/* ===== FOOTER ===== */
.footer {
    background: #0A2F1C;
    color: var(--gray-300);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo { margin-bottom: 1rem; background: white; padding: 0.5rem; border-radius: var(--radius); display: inline-block; }
.footer-col p { color: var(--gray-400); font-size: 0.95rem; line-height: 1.7; }
.footer-col h4 {
    color: white;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.6rem;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 36px; height: 3px;
    background: var(--accent);
    border-radius: 2px;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
    color: var(--gray-300);
    font-size: 0.93rem;
    display: inline-flex; align-items: center; gap: 0.5rem;
}
.footer-col ul a:hover { color: var(--accent-light); padding-left: 4px; }
.footer-col ul a i { font-size: 0.7rem; color: var(--accent); }

.footer-social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: white;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); transform: translateY(-3px); }

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.93rem;
    align-items: flex-start;
}
.footer-contact-item i {
    width: 32px; height: 32px;
    background: rgba(230,126,34,0.18);
    color: var(--accent-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--gray-400);
}
.footer-bottom .agrement { color: var(--accent-light); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 60px; height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(37,211,102,0.40);
    z-index: 99;
    animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: white; }
@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
    50%     { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
}

/* ===== ARTICLE PAGE ===== */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}
.article-content h2,
.article-content h3 { color: var(--primary); margin-top: 2rem; }
.article-content p { margin-bottom: 1.25rem; color: var(--gray-700); }
.article-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 1rem 1.5rem;
    background: var(--gray-50);
    margin: 1.5rem 0;
    font-style: italic;
    border-radius: 0 var(--radius) var(--radius) 0;
}
.article-content ul,
.article-content ol { margin: 1rem 0 1rem 1.25rem; }
.article-content ul li,
.article-content ol li { list-style: disc; margin-bottom: 0.5rem; color: var(--gray-700); }
.article-content ol li { list-style: decimal; }
.article-content img { border-radius: var(--radius); margin: 1.5rem 0; }

.article-hero {
    height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex; align-items: flex-end;
    color: white;
    padding-bottom: 3rem;
}
.article-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.85));
}
.article-hero > .container { position: relative; z-index: 2; }
.article-hero h1 { color: white; max-width: 800px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .nav-main {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        gap: 0.5rem;
        box-shadow: var(--shadow-lg);
    }
    .nav-main.open { display: flex; }
    .nav-main ul { flex-direction: column; gap: 0; }
    .nav-main ul a { display: block; padding: 0.85rem 1rem; border-radius: var(--radius); }
    .nav-main ul a:hover { background: var(--gray-50); }
    .nav-toggle { display: block; }

    .about-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .form-row    { grid-template-columns: 1fr; }
    .topbar-info { font-size: 0.78rem; gap: 1rem; }
    .hero-swiper, .hero-slide { height: 520px; }
}
@media (max-width: 600px) {
    .section { padding: 3.5rem 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .topbar-info { justify-content: center; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .about-features { grid-template-columns: 1fr; }
    .experience-badge { right: 10px; bottom: -16px; padding: 0.85rem 1rem; }
    .experience-badge strong { font-size: 1.5rem; }
}
