/* style.css - Freenet Technologie */

/* ====== RESET & BASE ====== */
*, *::before, *::after {
    box-sizing: border-box;
}
*{
    font-family:
    "Arial Rounded MT Bold",
    "Helvetica Rounded",
    Arial,
    sans-serif;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
    padding-top: 80px; /* espace réservé pour le header fixé */
}

/* ====== HEADER FIXÉ ====== */
header {
    background: #0a3d62;
    color: #fff;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    /* FIX: position fixed manquait */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
}

header img {
    height: 55px;
    margin-right: 15px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* ====== TITRE DU SITE ====== */
.site-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    flex-grow: 1;
    /* FIX: "position: center" n'existe pas — supprimé */
}

/* ====== NAVIGATION ====== */
nav {
    position: relative;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #f39c12;
}

/* ====== HERO ====== */
.hero {
    background: url('../images/aceil.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    /* Overlay sombre pour lisibilité du texte */
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero h1,
.hero p,
.hero a {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* ====== SECTIONS ====== */
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    color: #0a3d62;
    margin-bottom: 10px;
}

/* ====== GRILLE DE SERVICES ====== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    margin: 15px 15px 5px;
    color: #0a3d62;
    font-size: 17px;
}

.service-card button {
    background: #0a3d62;
    color: #fff;
    border: none;
    padding: 10px 22px;
    margin: 10px 0 5px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s;
}

.service-card button:hover {
    background: #f39c12;
}

/* ====== TEXTE "SAVOIR PLUS" ====== */
.service-text {
    display: none;
    padding: 10px 15px 15px;
    font-size: 14px;
    color: #555;
    text-align: justify;
    line-height: 1.5;
}

.service-text.show {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* ====== BOUTONS CTA ====== */
.cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #0a3d62;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.cta-btn:hover {
    background: #f39c12;
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

.cta-btn:active {
    transform: translateY(0);
}

.cta-btn.light {
    background: #f39c12;
}

.cta-btn.light:hover {
    background: #0a3d62;
}

/* ====== ANIMATION SCROLL ====== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ====== ANIMATION FADEIN ====== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ====== STATS ====== */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stats .card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.stats .card h3 {
    color: #0a3d62;
    margin-bottom: 8px;
    font-size: 16px;
}

.stats .card p {
    font-size: 22px;
    font-weight: bold;
    color: #f39c12;
    margin: 0;
}

/* ====== TÉMOIGNAGES ====== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #0a3d62;
}

.testimonial-card blockquote {
    font-style: italic;
    color: #555;
    margin: 10px 0;
    line-height: 1.6;
}

.testimonial-card .author {
    font-weight: bold;
    color: #0a3d62;
    margin-top: 10px;
}

/* ====== BLOG ====== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-card h3 {
    margin: 15px 15px 8px;
    font-size: 18px;
    color: #0a3d62;
}

.blog-card p {
    margin: 0 15px 15px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    flex-grow: 1;
}

.blog-card .cta-btn {
    margin: 0 15px 20px;
    text-align: center;
}

/* ====== FORMULAIRES ====== */
.contact-form {
    max-width: 600px;
    margin: 30px auto 0;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #0a3d62;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #0a3d62;
    box-shadow: 0 0 6px rgba(10,61,98,0.3);
    outline: none;
}

.contact-form button {
    background: #0a3d62;
    color: #fff;
    border: none;
    padding: 12px 28px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.3s;
    width: 100%;
}

.contact-form button:hover {
    background: #f39c12;
}

/* ====== FOOTER ====== */
footer {
    background: linear-gradient(180deg, #0a3d62 0%, #062a45 100%);
    color: #fff;
    text-align: center;
    padding: 60px 20px 30px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}
 
/* Ligne décorative en haut du footer */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f39c12;
    border-radius: 0 0 4px 4px;
}
 
/* ── Logo + titre du footer ── */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    animation: footerFadeDown 0.7s ease both;
}
 
.footer-brand img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f39c12;
    box-shadow: 0 0 20px rgba(243,156,18,0.35);
}
 
.footer-brand-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin: 0;
}
 
.footer-brand-subtitle {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}
 
/* ── Séparateur ── */
.footer-divider {
    width: 60px;
    height: 2px;
    background: rgba(255,255,255,0.15);
    margin: 0 auto 40px;
    border-radius: 2px;
}
 
/* ── Section "Contactez-nous" ── */
.footer-contact-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.5);
    margin: 0 0 24px;
}
 
/* ── Icônes réseaux sociaux — colonne verticale ── */
.social-icons {
    display: flex;
    flex-direction: column;   /* ← vertical */
    align-items: center;
    gap: 14px;
    margin: 0 auto 40px;
}
 
.social-icons a {
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 260px;
    padding: 12px 20px;
    border-radius: 50px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s,
                transform 0.3s, box-shadow 0.3s;
    /* Animation d'entrée décalée */
    opacity: 0;
    animation: socialSlideIn 0.5s ease forwards;
}
 
/* Délais d'entrée pour chaque lien */
.social-icons a:nth-child(1) { animation-delay: 0.10s; }
.social-icons a:nth-child(2) { animation-delay: 0.18s; }
.social-icons a:nth-child(3) { animation-delay: 0.26s; }
.social-icons a:nth-child(4) { animation-delay: 0.34s; }
.social-icons a:nth-child(5) { animation-delay: 0.42s; }
.social-icons a:nth-child(6) { animation-delay: 0.50s; }
.social-icons a:nth-child(7) { animation-delay: 0.58s; }
 
.social-icons a:hover {
    background: rgba(243,156,18,0.18);
    border-color: #f39c12;
    transform: translateX(6px);
    box-shadow: 0 4px 18px rgba(243,156,18,0.2);
    color: #f39c12;
}
 
/* Icône ronde à gauche */
.social-icons a .icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: background 0.3s;
}
 
.social-icons a:hover .icon-circle {
    background: #f39c12;
    color: #fff;
}
 
/* Label texte du lien social */
.social-icons a .social-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
}
 
/* ── Navigation footer ── */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;   /* ← vertical */
    align-items: center;
    gap: 10px;
}
 
.footer-nav li {
    opacity: 0;
    animation: socialSlideIn 0.5s ease forwards;
}
 
.footer-nav li:nth-child(1) { animation-delay: 0.65s; }
.footer-nav li:nth-child(2) { animation-delay: 0.72s; }
.footer-nav li:nth-child(3) { animation-delay: 0.79s; }
.footer-nav li:nth-child(4) { animation-delay: 0.86s; }
.footer-nav li:nth-child(5) { animation-delay: 0.93s; }
.footer-nav li:nth-child(6) { animation-delay: 1.00s; }
.footer-nav li:nth-child(7) { animation-delay: 1.07s; }
 
.footer-nav li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 30px;
    transition: color 0.3s, background 0.3s, transform 0.3s;
}
 
.footer-nav li a::before {
    content: '›';
    color: #f39c12;
    font-size: 18px;
    line-height: 1;
    transition: transform 0.3s;
}
 
.footer-nav li a:hover {
    color: #f39c12;
    background: rgba(243,156,18,0.1);
    transform: translateX(4px);
}
 
.footer-nav li a:hover::before {
    transform: translateX(3px);
}
 
/* ── Copyright ── */
.footer-copy {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
}
 
/* ── Animations ── */
@keyframes footerFadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
 
@keyframes socialSlideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ====== MENU BURGER ====== */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #fff;
    background: none;
    border: none;
    padding: 5px;
    line-height: 1;
}

/* ====== RESPONSIVE MOBILE ====== */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        gap: 0;
        background: #0a3d62;
        position: absolute;
        top: 60px;
        right: 0;
        width: 220px;
        padding: 10px 0;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        z-index: 999;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li a {
        display: block;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 15px;
    }

    nav ul li:last-child a {
        border-bottom: none;
    }

    .site-title {
        font-size: 16px;
    }

    header img {
        height: 45px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 15px;
    }

    /* FIX: footer font-size: 30px était absurde */
    footer {
        font-size: 13px;
    }

    .contact-form {
        padding: 20px 15px;
    }

    section {
        padding: 40px 15px;
    }
}

/* ══════════════════════════════════════════════
   STATISTIQUES
══════════════════════════════════════════════ */
.stats-section {
    background: linear-gradient(135deg, #0a3d62 0%, #1a6fa0 100%);
    padding: 60px 20px;
    margin: 0;
}
 
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
 
.stat-item {
    color: #fff;
}
 
.stat-icon {
    font-size: 32px;
    color: #f39c12;
    margin-bottom: 12px;
}
 
.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
 
.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.5px;
}
 
/* ══════════════════════════════════════════════
   SECTION SOLUTIONS
══════════════════════════════════════════════ */
.solutions-section {
    background: #f4f7fb;
    padding: 80px 20px;
}
 
.solutions-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
}
 
.solutions-tag {
    display: inline-block;
    background: #f39c12;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
    text-transform: uppercase;
}
 
.solutions-header h2 {
    font-size: 28px;
    color: #0a3d62;
    margin: 0 0 14px;
    line-height: 1.3;
}
 
.solutions-header p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}
 
/* Grille des cartes */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 50px;
}
 
/* Carte solution */
.solution-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    padding: 28px 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-left: 4px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}
 
.solution-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,61,98,0.03) 0%, transparent 60%);
    pointer-events: none;
}
 
.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(10,61,98,0.15);
    border-left-color: #f39c12;
}
 
/* Icône gauche */
.solution-icon-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #0a3d62, #1a6fa0);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(10,61,98,0.25);
}
 
.solution-emoji {
    font-size: 26px;
    line-height: 1;
    /* Masquer le fa derrière l'emoji */
}
 
.solution-fa {
    display: none; /* on n'affiche que l'emoji */
}
 
/* Corps texte */
.solution-body {
    flex: 1;
}
 
.solution-body h3 {
    font-size: 17px;
    color: #0a3d62;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}
 
.sol-arrow {
    color: #f39c12;
    font-size: 13px;
    transition: transform 0.3s;
}
 
.solution-card:hover .sol-arrow {
    transform: translateX(4px);
}
 
/* Liste de services */
.solution-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
 
.solution-list li {
    font-size: 13.5px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s;
}
 
.solution-list li:last-child {
    border-bottom: none;
}
 
.solution-list li i {
    color: #f39c12;
    font-size: 13px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}
 
.solution-card:hover .solution-list li {
    color: #333;
}
 
/* ── Bannière partenaire ── */
.solutions-banner {
    max-width: 900px;
    margin: 0 auto;
}
 
.solutions-banner-inner {
    background: linear-gradient(135deg, #0a3d62 0%, #1a6fa0 100%);
    border-radius: 20px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 8px 30px rgba(10,61,98,0.25);
    flex-wrap: wrap;
    justify-content: center;
    text-align: left;
}
 
.solutions-banner-icon {
    font-size: 40px;
    color: #f39c12;
    flex-shrink: 0;
}
 
.solutions-banner-inner > div {
    flex: 1;
    min-width: 200px;
}
 
.solutions-banner-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px;
    letter-spacing: 1px;
}
 
.solutions-banner-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    margin: 0;
}
 
/* ── Responsive ── */
@media (max-width: 768px) {
    .stat-number { font-size: 32px; }
    .solutions-grid { grid-template-columns: 1fr; }
    .solution-card { padding: 20px 18px; }
    .solutions-banner-inner { padding: 24px 20px; flex-direction: column; text-align: center; }
    .solutions-banner-inner > div { min-width: auto; }
}

/* Contact Section */
.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 50px 20px;
  background: #f9f9f9;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  animation: fadeInUp 1s ease;
}

.contact-info h2 {
  color: #000811;
  margin-bottom: 20px;
}

.contact-info p {
  margin: 10px 0;
  font-size: 15px;
}

.contact-info i {
  color: #FF6600;
  margin-right: 8px;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 26px;
  }
  .contact {
    flex-direction: column;
  }
}

.map {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

.map h2 {
  margin-bottom: 20px;
  color: #FF6600;
}

.map-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 15px;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .map {
    padding: 10px;
  }

  .map-container iframe {
    height: 250px;
  }
}

.offres-section {
  background: linear-gradient(to bottom, #0a3d62, #ffffff);
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5em;
  color: #0a3d62;
  margin-bottom: 40px;
  font-weight: bold;
}

.offres-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.offre-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offre-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.offre-card .icon {
  font-size: 3em;
  color: #0a3d62;
  margin-bottom: 15px;
}

.offre-card h3 {
  font-size: 1.5em;
  color: #0a3d62;
  margin-bottom: 15px;
}

.offre-card p {
  font-size: 1em;
  color: #333;
  margin-bottom: 20px;
}

.offre-card .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #0a3d62;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.offre-card .btn:hover {
  background: #0a3d62;
}
/* ✅ Adaptation mobile */
@media (max-width: 768px) {
  .offres-section {
    padding: 40px 10px;
  }

  .section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .offres-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .offre-card {
    width: 90%;
    padding: 20px;
  }

  .offre-card .icon {
    font-size: 2.5em;
    margin-bottom: 10px;
  }

  .offre-card h3 {
    font-size: 1.3em;
  }

  .offre-card p {
    font-size: 0.95em;
  }

  .offre-card .btn {
    padding: 8px 16px;
    font-size: 0.9em;
  }
}

/* ✅ Très petits écrans (téléphones < 480px) */
@media (max-width: 480px) {
  .section-title {
    font-size: 1.8em;
  }

  .offre-card {
    width: 95%;
    padding: 15px;
  }

  .offre-card .icon {
    font-size: 2em;
  }

  .offre-card h3 {
    font-size: 1.2em;
  }

  .offre-card p {
    font-size: 0.9em;
  }
}
