/* ==== RESET & BASE ==== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --navy: #c0252f;
    --navy-dark: #9e1d27;
    --navy-light: #d83a44;
    --yellow: #f7d27a;
    --yellow-dark: #e0b04a;
    --green: #16a34a;
    --red: #e11d48;
    --dark: #0f172a;
    --gray-900: #1e293b;
    --gray-700: #475569;
    --gray-500: #64748b;
    --gray-300: #cbd5e1;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --white: #ffffff;
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 35px -10px rgba(12,35,64,0.25);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.6rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }

.accent-text { color: var(--yellow); }

/* ==== BADGE ==== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(255,183,3,0.15);
    color: var(--yellow-dark);
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
}
.badge-light { background: rgba(255,255,255,0.12); color: var(--yellow); }

.pulse-dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(22,163,74,0.6);
    animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(22,163,74,0.6); }
    70% { box-shadow: 0 0 0 10px rgba(22,163,74,0); }
    100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}

/* ==== BUTTONS ==== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 12px;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    font-family: inherit;
}
.btn svg { width: 19px; height: 19px; }
.btn-lg { padding: 17px 32px; font-size: 1.05rem; }
.btn-full { width: 100%; }
.btn-nav { padding: 11px 20px; font-size: 0.95rem; }

.btn-call {
    background: var(--yellow);
    color: var(--navy);
    box-shadow: 0 6px 18px rgba(255,183,3,0.45);
}
.btn-call:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255,183,3,0.55); }

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

/* ==== MOBILE CALL BAR ==== */
.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--yellow);
    color: var(--navy);
    font-weight: 800;
    font-size: 1.05rem;
    padding: 15px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.mobile-call-bar svg { width: 21px; height: 21px; }

/* ==== HEADER ==== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(12,35,64,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
    transition: all 0.3s;
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.logo { display: flex; align-items: center; gap: 11px; font-weight: 900; font-size: 1.2rem; color: var(--white); }
.logo-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    background: var(--yellow);
    color: var(--navy);
    border-radius: 11px;
}
.logo-icon svg { width: 22px; height: 22px; }
.logo-text { letter-spacing: 0.02em; }
.logo-accent { color: var(--yellow); margin-left: 2px; }

.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 600; color: rgba(255,255,255,0.85); transition: color 0.2s; font-size: 0.95rem; }
.nav-links a:hover { color: var(--yellow); }

.menu-toggle { display: none; background: none; border: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.menu-toggle span { width: 26px; height: 2.5px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* ==== HERO ==== */
.hero {
    padding: 140px 0 90px;
    background:
        linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
}
.hero::before {
    content: '';
    position: absolute;
    top: -150px; right: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,183,3,0.18) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
    position: relative;
}
.hero-text h1 { margin-bottom: 22px; color: var(--white); }
.hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.85); margin-bottom: 34px; max-width: 560px; }
.hero-subtitle strong { color: var(--white); }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: rgba(255,255,255,0.8); }
.trust-item svg { width: 22px; height: 22px; color: var(--yellow); flex-shrink: 0; }
.trust-item strong { color: var(--white); }

/* ==== HERO CARD ==== */
.hero-card { position: relative; }
.urgence-card {
    background: var(--white);
    color: var(--gray-900);
    border-radius: 22px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border-top: 5px solid var(--yellow);
}
.urgence-head { display: flex; align-items: center; gap: 9px; font-weight: 700; color: var(--red); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 16px; }
.urgence-pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 0 rgba(225,29,72,0.6); animation: pulse 1.6s infinite; }
.urgence-card h3 { margin-bottom: 10px; }
.urgence-card > p { color: var(--gray-700); font-size: 0.95rem; margin-bottom: 22px; }
.urgence-foot { display: flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 0.875rem; color: var(--gray-500); }
.urgence-foot svg { width: 17px; height: 17px; flex-shrink: 0; }

/* ==== STRIP ==== */
.strip { background: var(--yellow); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 26px 24px; }
.strip-item { text-align: center; }
.strip-item strong { display: block; font-size: 1.7rem; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.strip-item span { font-size: 0.85rem; color: var(--navy-dark); font-weight: 600; }

/* ==== SECTIONS ==== */
section { padding: 90px 0; }
.section-header { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--gray-700); font-size: 1.05rem; }

/* ==== SERVICES ==== */
.services { background: var(--gray-50); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.service-card {
    background: var(--white);
    padding: 34px 30px;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    border: 1px solid #eef2f7;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-xl); border-color: rgba(255,183,3,0.4); }
.service-icon {
    width: 58px; height: 58px;
    border-radius: 14px;
    background: var(--navy);
    color: var(--yellow);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.service-icon svg { width: 27px; height: 27px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--gray-700); font-size: 0.95rem; }

.service-card-featured { background: var(--navy); border-color: var(--navy); }
.service-card-featured h3 { color: var(--white); }
.service-card-featured p { color: rgba(255,255,255,0.8); }
.service-card-featured .service-icon { background: var(--yellow); color: var(--navy); }

/* ==== TARIFS ==== */
.tarifs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.tarif-card {
    background: var(--white);
    border: 2px solid #e9eef5;
    border-radius: 18px;
    padding: 30px 26px;
    text-align: center;
    transition: all 0.3s;
    display: flex; flex-direction: column;
}
.tarif-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--yellow); }
.tarif-head { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 12px; }
.tarif-head svg { width: 34px; height: 34px; color: var(--navy); }
.tarif-head h3 { font-size: 1.15rem; }
.tarif-desc { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 22px; flex-grow: 1; }
.tarif-price { border-top: 1px solid #eef2f7; padding-top: 18px; }
.tarif-price span { display: block; font-size: 0.8rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.tarif-price strong { font-size: 2rem; font-weight: 900; color: var(--navy); }

.tarif-card-featured { background: var(--navy); border-color: var(--navy); position: relative; }
.tarif-card-featured .tarif-head svg { color: var(--yellow); }
.tarif-card-featured .tarif-head h3 { color: var(--white); }
.tarif-card-featured .tarif-desc { color: rgba(255,255,255,0.7); }
.tarif-card-featured .tarif-price { border-top-color: rgba(255,255,255,0.15); }
.tarif-card-featured .tarif-price span { color: rgba(255,255,255,0.7); }
.tarif-card-featured .tarif-price strong { color: var(--yellow); }

.tarifs-note { text-align: center; color: var(--gray-500); font-size: 0.875rem; margin-top: 30px; max-width: 700px; margin-left: auto; margin-right: auto; }

/* ==== ZONES ==== */
.zones { background: var(--gray-50); }
.zones-wrap { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 56px; align-items: center; }
.zones-text h2 { margin-bottom: 16px; }
.zones-text > p { color: var(--gray-700); margin-bottom: 24px; }
.zones-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin-bottom: 22px;
}
.zones-list li {
    position: relative;
    padding-left: 28px;
    color: var(--gray-900);
    font-weight: 600;
    font-size: 0.95rem;
}
.zones-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%; transform: translateY(-50%);
    width: 18px; height: 18px;
    background: var(--yellow);
    border-radius: 50%;
    box-shadow: inset 0 0 0 4px var(--navy);
}
.zones-note { color: var(--gray-500); font-size: 0.9rem; font-style: italic; }
.zones-card {
    background: var(--navy);
    color: var(--white);
    border-radius: 20px;
    padding: 34px 30px;
    box-shadow: var(--shadow-xl);
}
.zones-card h3 { color: var(--white); margin-bottom: 12px; }
.zones-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin-bottom: 24px; }

/* ==== WHY ==== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; }
.why-item { text-align: center; padding: 20px; }
.why-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: rgba(255,183,3,0.15);
    color: var(--yellow-dark);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.why-icon svg { width: 32px; height: 32px; }
.why-item h3 { margin-bottom: 10px; }
.why-item p { color: var(--gray-700); font-size: 0.95rem; }

/* ==== CONTACT ==== */
.contact { background: var(--navy); color: var(--white); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: stretch; }
.contact-info h2 { color: var(--white); margin-bottom: 16px; }
.contact-info > p { color: rgba(255,255,255,0.8); margin-bottom: 28px; }

.big-phone {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--yellow);
    color: var(--navy);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 900;
    padding: 18px 32px;
    border-radius: 16px;
    margin-bottom: 34px;
    box-shadow: 0 8px 24px rgba(255,183,3,0.4);
    transition: all 0.25s;
}
.big-phone:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255,183,3,0.5); }
.big-phone svg { width: 30px; height: 30px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-item svg { width: 26px; height: 26px; color: var(--yellow); flex-shrink: 0; }
.contact-item strong { display: block; color: var(--white); font-weight: 700; margin-bottom: 2px; }
.contact-item span { color: rgba(255,255,255,0.75); font-size: 0.95rem; }

.contact-map { border-radius: 20px; overflow: hidden; min-height: 380px; box-shadow: var(--shadow-xl); }
.contact-map iframe { width: 100%; height: 100%; min-height: 380px; display: block; }

/* ==== FOOTER ==== */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 40px; margin-bottom: 36px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; max-width: 300px; }
.footer-col h4 { color: var(--white); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a, .footer-col li { color: rgba(255,255,255,0.7); font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom { padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 0.85rem; }

/* ==== RESPONSIVE ==== */
@media (max-width: 968px) {
    .nav-links, .btn-nav { display: none; }
    .menu-toggle { display: flex; }
    .header.menu-open .nav-links {
        display: flex;
        position: absolute;
        top: 74px; left: 0; right: 0;
        flex-direction: column;
        background: var(--navy);
        padding: 20px 24px;
        gap: 18px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .hero-content, .zones-wrap, .contact-wrap { grid-template-columns: 1fr; gap: 44px; }
    .strip-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .mobile-call-bar { display: flex; }
    body { padding-bottom: 64px; }
}

@media (max-width: 600px) {
    section { padding: 64px 0; }
    .hero { padding: 120px 0 60px; }
    .hero-trust { flex-direction: column; gap: 14px; }
    .zones-list { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .btn-lg { padding: 15px 24px; font-size: 1rem; }
}
