/* css/style.css - Styles complets du site */
:root {
    --black: #0A0A0A;
    --blue: #0057B3;
    --red: #C8102E;
    --yellow: #FFC72C;
    --light-bg: #F4F6FA;
    --gray-light: #EFF2F8;
    --white: #FFFFFF;
    --shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #F9F9FB;
    color: #111;
    scroll-behavior: smooth;
}

/* .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
} */

.container 
{
     max-width: 1280px;
     margin: 0 auto;
     padding: 0 24px;
}

/* ========== HEADER & NAVIGATION ========== */
.navbar {
    background: var(--black);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.logo-corp {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--yellow);
    background: rgba(255,199,44,0.18);
    padding: 4px 10px;
    border-radius: 30px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--yellow);
}

.menu-icon {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

/* ========== BUTTONS ========== */
.btn-primary {
    background: var(--red);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: 0.2s;
}

.btn-primary:hover {
    background: #a00d26;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--blue);
    color: var(--blue);
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
}

.btn-outline:hover {
    background: var(--blue);
    color: white;
}

/* ========== TYPOGRAPHY & SECTIONS ========== */
section {
    padding: 70px 0;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--yellow);
    border-radius: 4px;
}

.title-center {
    text-align: center;
}

.title-center:after {
    left: 50%;
    transform: translateX(-50%);
}

.yellow-text {
    color: var(--yellow);
}

/* ========== HERO ========== */
.hero {
    background: linear-gradient(115deg, #0A0A0A 0%, #001e3c 100%);
    color: white;
    padding: 70px 0 80px;
}

.hero-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    background: var(--yellow);
    color: var(--black);
    display: inline-block;
    padding: 5px 18px;
    border-radius: 60px;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-highlight {
    border-left: 5px solid var(--yellow);
    padding-left: 18px;
    margin: 20px 0;
}

.badge-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.badge-list li {
    background: rgba(255,255,255,0.12);
    border-radius: 60px;
    padding: 6px 18px;
}

.hero-img {
    flex: 0.8;
    background: rgba(255,199,44,0.08);
    border-radius: 42px;
    padding: 30px;
    text-align: center;
}

.hero-img img {
    max-width: 100%;
    border-radius: 28px;
}

/* ========== SERVICES GRID ========== */
.services-grid, .blog-grid, .blog-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.service-card, .blog-card {
    background: white;
    border-radius: 28px;
    padding: 28px 24px;
    transition: 0.25s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
    border: 1px solid #eef2f0;
}

.service-card:hover, .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--yellow);
}

.service-icon {
    font-size: 2.6rem;
    color: var(--blue);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.tag {
    background: #FFC72C20;
    padding: 4px 12px;
    border-radius: 60px;
    font-size: 0.75rem;
    display: inline-block;
    margin-top: 12px;
}

/* ========== DOUBLE GRID ========== */
.double-grid, .contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.info-block {
    background: white;
    border-radius: 32px;
    padding: 28px;
    flex: 1;
    border-top: 5px solid var(--red);
}

.info-block h3 {
    color: var(--blue);
    margin-bottom: 18px;
}

.info-img {
    width: 100%;
    max-width: 180px;
    margin: 15px 0;
}

.epi-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 15px;
}

/* ========== BLOG ========== */
.blog-card .date {
    color: var(--blue);
    font-weight: 500;
    margin: 12px 0 8px;
}

.blog-img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 12px;
}

.page-header {
    background: var(--black);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

/* ========== ARTICLE PAGE ========== */
.article-container {
    padding: 60px 0;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content img {
    max-width: 100%;
    border-radius: 24px;
    margin: 20px 0;
}

.article-content h1 {
    font-size: 2.2rem;
    color: var(--black);
    margin-bottom: 16px;
}

.article-content .article-meta {
    color: var(--blue);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--yellow);
}

/* ========== CONTACT PAGE ========== */
.contact-info {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.info-card {
    background: white;
    padding: 24px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.info-card i {
    font-size: 2rem;
    color: var(--red);
    margin-bottom: 12px;
}

.info-card h3 {
    margin-bottom: 12px;
    color: var(--blue);
}

.contact-form-container {
    flex: 1;
    background: white;
    padding: 32px;
    border-radius: 32px;
    box-shadow: var(--shadow);
}

.contact-form h2 {
    margin-bottom: 24px;
    color: var(--black);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    padding: 14px;
    margin: 12px 0;
    border: 1px solid #ddd;
    border-radius: 16px;
    font-family: inherit;
}

.form-feedback {
    margin-top: 16px;
    font-size: 0.85rem;
}

.map-section {
    padding: 0 0 70px;
}

/* ========== FOOTER ========== */
footer {
    background: var(--black);
    color: #DDD;
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
/* .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        } */
.footer-logo-img {
    height: 100px;
    margin-bottom: 12px;
}

.footer-grid ul {
    list-style: none;
    line-height: 2;
}

.footer-grid a {
    color: #ccc;
    text-decoration: none;
}

.footer-grid a:hover {
    color: var(--yellow);
}

.social-icons i {
    font-size: 1.4rem;
    margin-right: 20px;
    color: #ccc;
    transition: 0.2s;
}

.social-icons i:hover {
    color: var(--yellow);
}

.copyright {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 30px;
    font-size: 0.8rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 880px) {
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background: var(--black);
        padding: 20px 0;
        gap: 15px;
    }
    .nav-links.active {
        display: flex;
    }
    .menu-icon {
        display: block;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-grid {
        flex-direction: column;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
        }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        flex-direction: column;
    }
}

.products-highlight {
    background: var(--light-bg);
}