/* ============================================================
   FONT & RESET GLOBAL
============================================================ */
body {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    background: #f5f6fa;
}

/* Container général pour sections */
.section-container {
    width: 92%;
    max-width: 1300px;
    margin: 60px auto;
    display: block;
}

/* TITRES PREMIUM */
h1, h2, h3, h4,
.hero-title,
.page-title,
.domain-title,
.section-header h3,
.kit-detail-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-subtitle,
.hero-pill,
.cta-box h2,
.kit-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

p, .kit-desc, .domain-subtitle, .kit-detail-description {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    line-height: 1.65;
}

/* ============================================================
   BANDEAU DÉFILANT ULTRA LENT (60s)
============================================================ */
.top-marquee {
    width: 100%;
    background: #ff6a00;
    color: #fff;
    padding: 8px 0;
    font-size: 15px;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marqueeUltraSlow 60s linear infinite;
}

@keyframes marqueeUltraSlow {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}

/* ============================================================
   HEADER PREMIUM
============================================================ */
.ibig-header {
    background: #041b4d;
    padding: 18px 0;
    box-shadow: 0 3px 15px rgba(0,0,0,0.20);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    width: 92%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
}

.logo small {
    color: #c5d2e9;
    font-weight: 400;
    font-size: 13px;
    margin-left: 5px;
}

/* Desktop Menu */
.desktop-menu ul {
    list-style: none;
    display: flex;
    gap: 38px;
    margin: 0;
}

.desktop-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: .25s;
}

.desktop-menu ul li a:hover {
    color: #ff6a00;
}

/* Mobile Button */
.mobile-btn {
    display: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

/* Responsive */
@media(max-width: 768px){
    .desktop-menu { display: none; }
    .mobile-btn { display: block; }
}

/* ============================================================
   MOBILE MENU PREMIUM (SLIDE)
============================================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(4, 27, 77, 0.98);
    backdrop-filter: blur(6px);
    z-index: 9999;
    padding-top: 70px;
    padding-left: 20px;
    padding-right: 20px;
    transition: right 0.35s ease-in-out;
    box-shadow: -3px 0 12px rgba(0,0,0,0.25);
}

/* Header du menu mobile */
.mobile-menu-header {
    position: absolute;
    top: 15px;
    left: 20px;
    right: 20px;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    padding: 5px;
}

/* Liens */
.mobile-menu a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.mobile-menu a:hover {
    color: #ff6a00;
}

/* ============================================================
   HERO SECTION (avec image de fond)
============================================================ */
.hero-home {
    background-image: url('/assets/img/hero-kits.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(7,29,68,0.95), rgba(7,29,68,0.78));
    padding: 65px 0;
}

.hero-container {
    width: 92%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.hero-left {
    max-width: 650px;
}

.hero-title {
    font-size: 41px;
    font-weight: 900;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.hero-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.hero-buttons .btn-primary-orange {
    background: #ff6a00;
    padding: 12px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 700;
    text-decoration: none;
    margin-right: 10px;
}

.hero-buttons .btn-secondary-outline {
    border: 1px solid white;
    padding: 12px 25px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.hero-buttons .btn-primary-orange:hover {
    background: #ff7b1a;
}

.hero-right {
    width: 35%;
}

.hero-side-card {
    background: rgba(7,29,68,0.88);
    padding: 22px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.15);
}

.hero-pill {
    display: block;
    padding: 12px 16px;
    margin-bottom: 12px;
    background: rgba(15,23,42,0.85);
    color: white;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: .2s;
}

.hero-pill:hover {
    background: rgba(15,23,42,1);
}

/* MOBILE */
@media(max-width:900px){
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-right { display:none; }
}

/* ============================================================
   KITS EN VEDETTE
============================================================ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.section-header h3 {
    color: #071D44;
    font-size: 24px;
    font-weight: 800;
}

.section-header .section-link {
    font-size: 15px;
    text-decoration: none;
    color: #071D44;
    font-weight: 600;
}

.kits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.kit-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    padding: 18px;
}

.kit-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 12px;
    background: #f1f1f1;
}

.kit-title {
    color: #071D44;
    font-weight: 700;
    font-size: 15px;
    height: 40px;
    overflow: hidden;
}

.kit-desc {
    font-size: 13px;
    color: #6b7280;
    height: 40px;
    overflow: hidden;
}

.kit-price {
    color: #ff6a00;
    font-weight: 700;
    margin-top: 4px;
    margin-bottom: 10px;
}

.btn-dark {
    display: block;
    background: #071D44;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration:none;
}

/* ============================================================
   CTA BOX BLEUE
============================================================ */
.cta-box {
    width: 92%;
    max-width: 1300px;
    margin: 50px auto;
    background: #071D44;
    color: white;
    padding: 35px 28px;
    border-radius: 22px;
    text-align: center;
}

.cta-box h2 {
    font-size: 25px;
    font-weight: 800;
}

.cta-box p {
    font-size: 15px;
}

.cta-box .btn-primary-orange {
    background: #ff6a00;
    padding: 12px 25px;
    border-radius: 8px;
    color: white;
    text-decoration:none;
    font-weight: 700;
    display: inline-block;
}

/* ============================================================
   DOMAINES
============================================================ */
.domain-section {
    background: #f0f1f5;
    padding: 55px 0;
}

.domain-container {
    width: 92%;
    max-width: 1300px;
    margin: auto;
    text-align: center;
}

.domain-title {
    color: #071D44;
    font-size: 26px;
    font-weight: 800;
}

.domain-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
}

.domain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
    gap: 18px;
}

.domain-item {
    background: #fff;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    color: #071D44;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
}

.domain-item:hover {
    background: #071D44;
    color: white;
    border-color: #071D44;
}

/* ============================================================
   FOOTER PREMIUM
============================================================ */
.ibig-footer {
    background: #041b4d;
    color: #cbd5e1;
    margin-top: 60px;
    padding: 55px 0 25px;
    border-radius: 40px 40px 0 0;
}

.footer-container {
    width: 92%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 35px;
}

.footer-col h5 {
    font-size: 15px;
    color: #ff6a00;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: .25s;
}

.footer-col ul li a:hover {
    color: #ff6a00;
}

/* BAS DE PAGE */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    margin-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 13px;
    color: #94a3b8;
}

/* ============================================================
   PAGE CATALOGUE
============================================================ */
.page-title {
    font-size: 32px;
    font-weight: 800;
    color: #071D44;
    margin-bottom: 5px;
}

.page-subtitle {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 30px;
}

/* BARRE DE RECHERCHE */
.search-bar {
    display: flex;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    max-width: 500px;
    margin-bottom: 25px;
}

.search-bar input {
    border: none;
    padding: 12px 15px;
    flex: 1;
    font-size: 15px;
}

.search-bar button {
    background: #071D44;
    color: white;
    border: none;
    padding: 0 20px;
    font-size: 16px;
}

/* FILTRE PAR CATÉGORIES */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.filter-item {
    padding: 8px 16px;
    border-radius: 20px;
    background: #e5e7eb;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #071D44;
    transition: .25s;
}

.filter-item.active,
.filter-item:hover {
    background: #071D44;
    color: white;
}

/* MESSAGE SI VIDE */
.no-results {
    background: #fff8ea;
    border: 1px solid #ffe0a8;
    padding: 18px;
    text-align: center;
    border-radius: 12px;
    color: #b65c00;
    font-weight: 600;
}

/* ============================================================
   FICHE PRODUIT (kit.php)
============================================================ */
.kit-detail-box {
    display: flex;
    gap: 35px;
    align-items: flex-start;
}

.kit-detail-left {
    flex: 2;
}

.kit-detail-right {
    flex: 1;
}

.kit-detail-title {
    font-size: 30px;
    font-weight: 800;
    color: #071D44;
    margin-bottom: 10px;
}

.kit-detail-price {
    font-size: 22px;
    font-weight: 800;
    color: #ff6a00;
    margin-bottom: 15px;
}

.kit-detail-description {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 25px;
}

.buy-btn {
    margin-bottom: 12px;
    display: inline-block;
    text-align: center;
    width: 250px;
}

/* Carte de droite */
.kit-detail-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 20px;
}

.kit-detail-card h4 {
    color: #071D44;
    font-weight: 700;
    margin-bottom: 12px;
}

.kit-detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.kit-detail-card li {
    font-size: 14px;
    margin-bottom: 8px;
}

/* MOBILE */
@media(max-width: 900px){
    .kit-detail-box {
        flex-direction: column;
    }
}

/* Ajustement logo header */
.logo img,
.logo-img {
    height: 48px !important; /* taille idéale */
    width: auto !important;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo img,
    .logo-img {
        height: 38px !important; /* version mobile */
    }
}

/* LOGO FIX - FORCE LA TAILLE */
.ibig-header .logo img,
.logo img,
.logo-img {
    height: 48px !important;
    width: auto !important;
    max-height: 48px !important;
    display: block !important;
    object-fit: contain !important;
}

header.ibig-header .logo img {
    height: 42px !important;
    width: auto !important;
    max-height: 42px !important;
    display: block !important;
    object-fit: contain !important;
}

/* LOGO HEADER – VERSION PARFAITE */
.ibig-header .logo img {
    height: 34px !important; 
    width: auto !important;
    display: block;
    object-fit: contain;
}

.ibig-header .logo {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    margin-left: 10px;
}

/* Bas du footer – même couleur que la barre orange du header */
.footer-bottom {
    background: #ff6d00 !important; /* orange IBIG DIGITAL */
    color: #fff !important;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.footer-bottom a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

.footer-bottom a:hover {
    opacity: 0.8;
}

/* ========== PAGE ABOUT ========== */

.about-hero {
    background: #0a1f44;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.about-hero-container h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.about-hero-container p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    opacity: 0.9;
}

/* SECTION PRINCIPALE */
.about-section {
    padding: 60px 20px;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-title {
    font-size: 28px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #0a1f44;
}

.about-text {
    line-height: 1.7;
    font-size: 17px;
    margin-bottom: 10px;
}

.about-list li {
    font-size: 16px;
    margin: 10px 0;
}

/* VALEURS */
.about-values {
    background: #f5f7fa;
    padding: 60px 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
}

.value-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    text-align: center;
}

.value-item h3 {
    font-size: 20px;
    color: #0a1f44;
}

/* CTA */
.about-cta {
    text-align: center;
    padding: 70px 20px;
    background: #0a1f44;
    color: #fff;
}

.about-cta h2 {
    font-size: 32px;
}

.about-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* ============ PAGE SOUMISSION ============ */

.soumission-hero {
    background: #0a1f44;
    padding: 70px 20px;
    text-align: center;
    color: #fff;
}

.soumission-hero h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.soumission-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* FORMULAIRE */
.soumission-section {
    padding: 60px 20px;
}

.soumission-container {
    max-width: 700px;
    margin: 0 auto;
}

.soumission-form .form-group {
    margin-bottom: 20px;
}

.soumission-form label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.soumission-form input,
.soumission-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccd3dd;
    border-radius: 8px;
    font-size: 15px;
}

.soumission-btn {
    margin-top: 10px;
    width: 100%;
    padding: 14px;
    font-size: 17px;
    border-radius: 8px;
}

/* ALERTES */
.soumission-success {
    background: #d1f3d1;
    border-left: 4px solid #2c8a2c;
    color: #155e15;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.soumission-error {
    background: #ffdede;
    border-left: 4px solid #d60000;
    color: #7e0000;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 5px;
}

/* WHATSAPP */
.soumission-whatsapp {
    margin-top: 30px;
    text-align: center;
}

.whatsapp-link {
    background: #25d366;
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
}

/* ========== PAGES LÉGALES (CGU, Confidentialité, etc.) ========== */

.legal-hero {
    background: #0a1f44;
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.legal-hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-hero h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.legal-hero p {
    font-size: 16px;
    opacity: 0.9;
}

.legal-section {
    padding: 50px 20px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
}

.legal-container h2 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 8px;
    color: #0a1f44;
}

.legal-container p,
.legal-container ul {
    margin-bottom: 10px;
}

.legal-container ul {
    padding-left: 18px;
}

/* ========== PAGE FAQ ========== */

.faq-hero {
    background: #0a1f44;
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.faq-hero-container h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.faq-hero-container p {
    font-size: 17px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.faq-section {
    padding: 50px 20px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e3e6ea;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 15px 0;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    color: #0a1f44;
}

.faq-answer {
    display: none;
    padding-bottom: 15px;
    font-size: 15px;
    line-height: 1.7;
}

.faq-answer.open {
    display: block;
}

/* ===== BOUTON WHATSAPP FLOTTANT ===== */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff !important;
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
    z-index: 999;
    transition: all .3s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    background: #1ebe5d;
}

/* BANNIÈRE DU TITRE */
.kit-banner {
    background: #0a1f44;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.kit-banner h1 {
    font-size: 32px;
    font-weight: 800;
}

.kit-code {
    margin-top: 8px;
    font-size: 15px;
    opacity: 0.9;
}

/* SECTIONS */
.kit-section {
    padding: 50px 20px;
    max-width: 900px;
    margin: auto;
    line-height: 1.7;
}

.kit-section.alt {
    background: #f4f6fa;
}

.kit-section h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
}

.kit-list li {
    margin-bottom: 10px;
    font-size: 15px;
}

.centered {
    text-align: center;
}

/* PRIX */
.price-box {
    background: #0a1f44;
    color: #fff;
    padding: 20px 35px;
    display: inline-block;
    border-radius: 8px;
    margin-top: 10px;
}

.price {
    font-size: 32px;
    font-weight: 900;
}

/* BOUTON WHATSAPP */
.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    padding: 14px 25px;
    color: #fff !important;
    font-size: 17px;
    border-radius: 8px;
    margin-top: 20px;
    text-decoration: none;
    font-weight: 700;
}

.btn-whatsapp i {
    margin-right: 8px;
}

/* ========= LANDING PACK COM-001 ========= */

.com-kit-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 15px 40px;
    line-height: 1.7;
    color: #111827;
    font-size: 15px;
}

.com-kit-page h2 {
    font-size: 24px;
    font-weight: 800;
    margin: 25px 0 10px;
    color: #0a1f44;
}

.com-kit-page h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 18px 0 8px;
    color: #ff6d00;
}

.com-kit-page p {
    margin-bottom: 10px;
}

/* Image de couverture */
.com-kit-cover {
    text-align: center;
    margin: 0 0 25px;
}

.com-kit-cover img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* Bloc prix */
.com-kit-price {
    text-align: center;
    margin: 20px 0 10px;
}

.com-kit-price-main {
    font-size: 30px;
    font-weight: 900;
    color: #0a1f44;
}

.com-kit-price-sub {
    font-size: 13px;
    color: #6b7280;
}

/* Boutons d'action */
.com-kit-cta {
    text-align: center;
    margin-top: 15px;
}

.btn-com {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    margin: 5px 6px;
    transition: all .2s ease-in-out;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-com-whatsapp {
    background: #25D366;
    color: #ffffff;
}

.btn-com-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
}

.btn-com-chariow {
    background: #ff6d00;
    color: #ffffff;
}

.btn-com-chariow:hover {
    background: #e65b00;
    transform: translateY(-1px);
}
.old-price{
    text-decoration: line-through;
    color:#999;
    font-size:14px;
    margin-right:8px;
}
.new-price{
    font-weight:700;
    font-size:18px;
    color:#ff4500;
}
.promo-badge{
    position:absolute;
    top:10px;
    right:10px;
    background:#ff4500;
    color:#fff;
    padding:5px 10px;
    border-radius:5px;
    font-size:13px;
    font-weight:bold;
}

