@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;600;700&display=swap');

/* ===================== GLOBAL STYLES ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(90deg, rgb(18, 48, 85) 40%, rgba(214, 180, 83, 1) 100%);
    line-height: 1.6;
    padding-top: 120px;
}

/* ===================== TOP BAR ===================== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background: linear-gradient(90deg, rgb(18, 48, 85) 70%, rgba(214, 180, 83, 1) 100%);
    color: white;
    font-size: 14px;
    z-index: 1100;
    flex-wrap: nowrap;
}

.top-left a {
    margin-right: 20px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.top-left a:hover {
    opacity: 0.8;
}

.top-left i {
    color: #F4B400;
    margin-right: 6px;
}

.top-right {
    display: flex;
    align-items: center;
}

.top-right a {
    margin-left: 15px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.top-right a:hover {
    opacity: 0.7;
}

/* Language Switch */
.lang-switch {
    display: flex;
    margin-left: 20px;
}

.lang-btn {
    display: flex;
    align-items: center;
    border: none;
    background: transparent;
    color: white;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
    transition: opacity 0.3s;
}

.lang-btn:hover {
    opacity: 0.7;
}

.lang-btn .flag {
    width: 18px;
    height: 12px;
    margin-right: 5px;
    object-fit: cover;
}

/* ===================== DEMANDE DEVIS ===================== */
/* ===================== BOUTON DEMANDE DE DEVIS ===================== */
.quote-btn {
    display: inline-block;
    padding: 12px 22px;
    border: 2px solid #f4c400;
    border-radius: 20px;
    background: linear-gradient(135deg, #0b3d91, rgb(18, 48, 85));
    color: #fff !important;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(11, 61, 145, 0.35);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: pulseQuote 2s infinite;
}

.quote-btn:hover {
    background: linear-gradient(135deg, #f4c400, rgba(214, 180, 83, 1));
    color: #0b3d91 !important;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 18px rgba(244, 196, 0, 0.45);
}

/* petit effet brillant */
.quote-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}

.quote-btn:hover::before {
    left: 130%;
}

/* animation légère pour attirer l’attention */
@keyframes pulseQuote {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 196, 0, 0.5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(244, 196, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 196, 0, 0);
    }
}

/* ===================== HEADER & NAVIGATION ===================== */
header {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background: rgba(255, 255, 255, 0.8);
    transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
    z-index: 1000;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(5, 11, 96, 0.803);
}

/* Logo */
.logo img {
    height: 120px;
    object-fit: contain;
    display: block;
    margin-left: 10px;
}

/* Main Navigation */
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    /* center vertically */
    gap: 20px;
    flex: 1;
    flex-wrap: nowrap;
    /* Prevent wrapping */

}

nav a {
    text-decoration: none;
    color: #0033a0;
    font-weight: 700;
    font-size: 18px;
    transition: color 0.3s, transform 0.3s;
}

/* Main Menu Links */
/* Dropdown Menu */
nav .dropdown {
    position: relative;
    display: inline-block;
}

nav .dropbtn {
    cursor: pointer;
    text-decoration: none;
    color: #0033a0;
    font-weight: 700;
    font-size: 18px;
    transition: color 0.3s;
}

nav .dropbtn:hover {
    color: #1a73e8;
}

nav .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    z-index: 1500;
    padding: 10px;
    gap: 30px;
}

nav .dropdown-content.active {
    display: flex;
}

/* Submenu in Dropdown */
nav .dropdown-content .submenu {
    display: flex;
    flex-direction: column;
}

nav .dropdown-content .submenu span {
    font-weight: 700;
    color: #0b4ea2;
    margin-bottom: 8px;
}

nav .dropdown-content .submenu a {
    text-decoration: none;
    color: #555;
    margin-bottom: 5px;
    font-size: 0.95rem;
    transition: color 0.2s;
}

nav .dropdown-content .submenu a:hover {
    color: #1a73e8;
}

/* ===================== BORNES STYLES (for menu items with submenus) ===================== */
.menu-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.submenu {
    position: absolute;
    left: 0;
    top: 100%;
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.submenu a {
    display: block;
    padding: 10px 15px;
    color: rgba(5, 11, 96, 0.803);
    text-decoration: none;
    white-space: nowrap;
}

.submenu a:hover {
    background-color: #f2f6ff;
    color: #007BFF;
}

.menu-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===================== HERO SECTION ===================== */
/* ================= HERO SLIDER ================= */
.hero {
    position: relative;
    width: 100%;
    height: min(75vh, 700px);
    min-height: 280px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 60px;
    /* ajuste selon ton besoin */
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 20px;
    z-index: 2;
}

.hero-overlay h1 {
    width: 100%;
}

.hero-overlay p {
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

/* Flèches */
.hero .prev,
.hero .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.25);
    /* léger transparent */
    border: none;
    font-size: 1.8rem;
    /* taille de la flèche */
    width: 35px;
    /* cercle */
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 3;
    color: #fff;
    /* flèche blanche */
    line-height: 1;
    /* important pour centrer le texte */
    padding: 0;
    /* supprime les marges internes par défaut */
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero .prev:hover,
.hero .next:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.hero .prev {
    left: 15px;
}

.hero .next {
    right: 15px;
}



/* ===================== BUTTONS ===================== */
/* ===================== BUTTONS ===================== */
.btn {
    margin-top: 20px;
    padding: 12px 25px;
    background: rgb(18, 48, 85);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

/* 🔥 Bouton principal avec animation */
.btn-primary {
    animation: blinkColor 2s infinite alternate;
}

/* Animation bleu ⇄ jaune */
@keyframes blinkColor {
    0% {
        background: #0b4ea2;
        box-shadow: 0 0 8px rgba(11, 78, 162, 0.6);
    }

    100% {
        background: #FFD700;
        color: #000;
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.9);
    }
}

/* Hover effet premium */
.btn:hover {
    transform: translateY(-2px) scale(1.03);
}

/* Variante outline */
.btn-outline {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #0b4ea2;
}

/* ===================== CONTENT SECTIONS ===================== */
.featured,
.page,
.contact {
    padding: 60px 20px;
    text-align: center;
    margin-top: 70px;

}

/* Section Structure */
.section {
    padding: 80px 40px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: rgb(255, 255, 255);

}

.section-title1 {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: rgb(18, 48, 85);
    /* décalage X, décalage Y, flou, couleur */
}

/* CTA Section */
.section-cta {
    background: linear-gradient(90deg, rgb(18, 48, 85) 40%, rgba(214, 180, 83, 1) 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    /* space between quote-btn and WhatsApp */
    padding: 60px 20px 100px;
    /* top padding, bottom extra space */

}

.section-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.section-cta p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 25px;
}

/* ===================== PRODUCT GRID ===================== */
.product-grid-acceuil {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin-top: 30px;
}

.product-card-acceuil {
    background: #fff;
    padding: 8px 10px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.25s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.product-card-acceuil img {
    width: 100%;
    max-height: 130px;
    object-fit: contain;
    border-radius: 10px;
    display: block;
}

.product-card-acceuil h3 {
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #0033a0;
}

.section-title-acceuil {
    color: #e8f0ff;
    font-size: 2.2rem;
}

.product-card-acceuil:hover {
    transform: translateY(-5px);
}

.product-tag-acceuil {
    display: inline-block;
    margin-top: 12px;
    padding: 5px 14px;
    background: #e8f0ff;
    color: #1a73e8;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
}

/* ===================== CATEGORY GRID ===================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: #ffffff;
    padding: 25px;
    text-decoration: none;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.category-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #0033a0;
}

.category-card p {
    font-size: 0.95rem;
    color: #666;
}

/* ===================== SERVICES DETAIL ===================== */
/* ===================== SERVICES CIRCLES ===================== */
.section-services-circles {
    background: #fff;
    padding: 80px 20px;
}

.services-circles {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.circle-item {
    text-align: center;
    transition: transform 0.3s ease;
}

/* 🔥 CONTAINER CERCLE (solution pro) */
.circle-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
    border: 4px solid rgb(18, 48, 85);
    padding: 8px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* image داخل cercle */
.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* texte */
.circle-item p {
    margin-top: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgb(18, 48, 85);
}

/* hover */
.circle-item:hover {
    transform: translateY(-8px);
}


/* ===================== CONTACT FORM ===================== */
.contact-form {
    max-width: 500px;
    margin: auto;
}

.contact h1 {
    color: rgba(214, 180, 83, 1)
}

.contact p {
    color: #ffffff !important;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* ===================== FOOTER ===================== */
footer {
    background: linear-gradient(90deg, rgb(18, 48, 85) 40%, rgba(214, 180, 83, 1) 100%);
    color: #fff;
    text-align: center;
    padding: 30px;
}

/* ===================== ANIMATIONS ===================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s, transform 0.8s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

#mobileMenuBtn {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* ===================== MOBILE RESPONSIVE ===================== */




/* Texte “ou via WhatsApp” sur sa propre ligne */
.or-text {
    display: block;
    /* force sur une ligne */
    font-weight: 500;
    color: #fff;
    margin-bottom: 5px;
    /* petit espace avant le bouton */
}

/* Bouton WhatsApp */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.whatsapp-btn:hover {
    background-color: #1ebe57;
}

/* Logo WhatsApp */
.whatsapp-logo {
    width: 24px;
    height: 24px;
}



/* ===================== ABOUT PAGE ===================== */

/* ===================== ABOUT PREMIUM ===================== */

.about-premium {
    padding: 100px 20px;
    background: #ffffff;
}

/* ===================== UNDERLINE PREMIUM ===================== */

.underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, rgb(18, 48, 85), #f4c400);
    margin: 15px 0 25px;
    border-radius: 2px;
}

/* centrée pour les sections comme "Nos valeurs" */
.underline.center {
    margin: 15px auto 40px;
}

.underline {
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineAnim 1s ease forwards;
}

@keyframes underlineAnim {
    to {
        transform: scaleX(1);
    }
}

.about-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* IMAGE */
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* TEXTE */
.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 40px;
    color: rgb(18, 48, 85);
    margin-bottom: 20px;
}

.about-text p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.about-text ul li {
    margin-bottom: 10px;
}

/* INTRO */
.intro {
    font-size: 18px;
    font-weight: 500;
}

/* HIGHLIGHT */
.highlight {
    font-weight: 600;
    color: rgb(18, 48, 85);
}

/* STATS */
.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.about-stats h2 {
    color: #f4c400;
    font-size: 28px;
}

.about-stats span {
    display: block;
    font-size: 14px;
    color: #555;
}

/* ===================== VALUES ===================== */

.about-values {
    padding: 80px 20px;
    background: linear-gradient(90deg, rgb(18, 48, 85), #0b3d91);
    text-align: center;
    color: white;
}

.about-values h2 {
    font-size: 32px;
    margin-bottom: 50px;
}

.values-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    width: 260px;
    transition: 0.3s;
}

.value-card i {
    font-size: 30px;
    color: #f4c400;
    margin-bottom: 15px;
}

.value-card h3 {
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    opacity: 0.9;
}

/* HOVER */
.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

/* ================= TOTEMS ================= */
.totems-section {
    padding: 80px 40px;
    background: rgb(18, 48, 85);
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: rgba(214, 180, 83, 1);
}

.section-subtitle {
    color: #ffffff;
    margin-bottom: 50px;
}

/* Container */
.totems-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Card */
.totem-card {
    background: #ffffff;
    width: 48%;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.totem-card:hover {
    transform: translateY(-10px);
}

/* Images */
.totem-imgs {
    display: flex;
    justify-content: center;
    /* centre les images */
    gap: 20px;
    /* espace entre les images */
    margin-bottom: 25px;
}

.totem-imgs img {
    width: 48%;
    /* chaque image prend presque la moitié */
    height: auto;
    border-radius: 15px;
    object-fit: contain;
    /* pour éviter que l'image soit coupée */
    background: #ffffff;
    padding: 5px;
}

/* Title */
.totem-card h3 {
    margin-bottom: 20px;
    color: #123055;
}

/* Specs list */
/* Specs centrées et largeur réduite */
.specs {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* centre tout le contenu des li */
    padding: 0;
    margin: 0 auto;
    /* centre la liste dans la carte */
    max-width: 400px;
    /* largeur maximale de la liste */
}

.specs li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* texte à gauche mais centré dans la colonne */
    gap: 10px;
    background: #f5f7ff;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 10px;
    width: 100%;
    /* s’adapte au max-width de la liste */
    box-sizing: border-box;
    transition: 0.3s;
}

.specs li i {
    color: #ffcc00;
    min-width: 22px;
    text-align: center;
}

.specs li:hover {
    background: #e6ecff;
}

.product-link {
    text-decoration: none;
    /* remove underline */
    color: inherit;
    /* keep text color */
    display: inline-block;
    /* allow proper layout */
}

/* ===== ECRANs.html ===== */

.ecran-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* Ajouté pour empiler titre + container verticalement */
    justify-content: center;
    align-items: center;
    /* Centrer horizontalement */
    padding: 60px 20px;
    /* Espace autour */
    background: rgb(18, 48, 85);
    /* Optionnel : couleur de fond pour contraste */
}

/* Container centrée */
.ecran-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Carte produit */
.ecran-card {
    background: #fff;
    width: 500px;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.ecran-card:hover {
    transform: translateY(-10px);
}

/* Image produit */
.ecran-image {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.ecran-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    object-fit: contain;
    background: #f0f0f0;
    padding: 5px;
}

/* Specs */
.ecran-specs {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0 auto;
    max-width: 400px;
}

.ecran-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f7ff;
    margin-bottom: 10px;
    padding: 12px 15px;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    transition: 0.3s;
}

.ecran-specs li i {
    color: #ffcc00;
    min-width: 22px;
    text-align: center;
}

.ecran-specs li:hover {
    background: #e6ecff;
}

/* Title produit */
.ecran-title {
    color: #123055;
    margin-bottom: 20px;
    text-align: center;
}

/* TITRE ET SOUS-TITRE */
/* TITRE ET SOUS-TITRE */
.ecran-section-title {
    font-size: 2.5rem;
    color: rgba(214, 180, 83, 1);
    margin-bottom: 10px;
    text-align: center;
    z-index: 1;
    /* S'assure qu'il est au-dessus si d'autres éléments */
}

.ecran-section-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 50px;
    text-align: center;
}


/* ===================== BORNES ===================== */
.borne-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* vertical */
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: #f9f9ff;

}

.borne-title {
    font-size: 2.5rem;
    color: #123055;
    text-align: center;
    margin-bottom: 10px;
}

.borne-subtitle {
    font-size: 1.2rem;
    color: #556080;
    text-align: center;
    margin-bottom: 50px;
}

.borne-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.borne-card {
    background: #fff;
    width: 400px;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.borne-card:hover {
    transform: translateY(-10px);
}

.borne-image img {
    width: 300px;
    height: 390px;
    border-radius: 15px;
    object-fit: cover;
    background: #f0f0f0;
    padding: 5px;
    margin-bottom: 20px;
}

.borne-name {
    color: #123055;
    margin-bottom: 15px;
    text-align: center;
}

.borne-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.borne-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f7ff;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 10px;
}

.borne-specs li i {
    color: #ffcc00;
    min-width: 22px;
    text-align: center;
}


/*===location.html==*/
/* ================= LOCATION IMAGE ================= */
/* Pour que la section prenne toute la page */
.location-section {
    width: 100%;
    height: 70vh;
    /* 100% de la hauteur de l'écran */
    margin: 0;
    padding: 0;
    background-color: rgb(229, 225, 214);
    /* Fond blanc */
}

/* Conteneur de l'image */
.Location img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* fills completely without stretching */
    display: block;
    /* removes inline-gap space */
}

/* L'image prend toute la largeur et hauteur, sans déformer */
.Location img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ================= RENT BUTTON ================= */
.rent-btn {
    /* fixed px distance from bottom */
    background-color: rgba(214, 180, 83, 1);
    color: #000;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: 0.3s;
}


.rent-btn:hover {
    background-color: #ffb300;
}

/* ================= MOBILE ADJUSTMENTS ================= */

.cta-buttons {
    display: flex;
    justify-content: center;
    /* centré horizontalement */
    align-items: center;
    /* centré verticalement si besoin */
    gap: 40px;
    /* distance fixe entre les deux boutons */
    margin: 32px 0 100px;
    /* marge au-dessus et en dessous */
    flex-wrap: wrap;
    /* permet aux boutons de passer à la ligne si l'écran est petit */
}

.rent-btn,
.whatsapp-btn {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    flex-shrink: 0;
    /* empêche les boutons de rétrécir sur grand écran */
}

/* Responsive fixes for small screens */

/* ===================== MOBILE MENU ===================== */
#mobileMenuBtn {
    display: none;
    /* hidden by default on desktop */
    font-size: 2rem;
    cursor: pointer;
    color: #0033a0;
    z-index: 1200;
}

/* Mobile menu styles */
.footer-mobile-only {
    display: none;
}


/* Main menu */
#mainMenu {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    /* prevent wrapping */
    align-items: center;
    -webkit-overflow-scrolling: touch;
    /* allow horizontal scroll if needed */
    /* smooth scrolling on mobile */
    padding: 0 10px;
}

#mainMenu a {
    flex: 0 0 auto;
    /* prevent shrinking */
    white-space: nowrap;
    /* prevent line breaks in links */
    text-decoration: none;
    color: #123055;
    font-weight: 500;
    transition: color 0.3s;
}

#mainMenu a:hover {
    color: #d6b453;
}

#mainMenu a:hover::after {
    width: 100%;
}

#mainMenu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background-color: rgba(19, 76, 147, 1);
    transition: width 0.3s;
}

/* Quote button */
#mainMenu .quote-btn {
    background-color: #d6b453;
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
}

/* Mobile menu button */
#mobileMenuBtn {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* ===================== FONTS ===================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
/* ===================== MOBILE VERSION ===================== */
@media (max-width: 768px) {

    /* ===== TOP BAR ===== */
    .top-bar {
        display: none;
    }

    .top-left {
        display: none;

    }

    .top-right .lang-switch {
        margin-left: auto;
        /* pousse le switch de langue à l'extrémité droite */
        display: flex;
        gap: 5px;
    }

    .lang-btn {
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .lang-btn img.flag {
        width: 16px;
        height: auto;
    }

    /* ===== HEADER ===== */
    header {
        top: 0;
        /* Remove the 30px you had */
        margin: 0;
        /* Ensure no margin */
        height: 70px;
        padding: 0 15px;


        padding-left: 0;



    }

    body {
        margin: 0px;
        padding: 0;
    }

    .logo {
        margin: 0;
        padding: 0;
        margin-left: 0;

    }

    .logo img {
        height: 130px;
        display: block;
    }

    /* ===== MOBILE BUTTON ☰ ===== */
    #mobileMenuBtn {
        display: block;
    }

    /* ===== MENU MOBILE ===== */
    #mainMenu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 20px;
        display: none;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    #mainMenu.open {
        display: flex;
    }

    #mainMenu a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        font-size: 16px;
    }

    #mainMenu .quote-btn {
        margin-top: 10px;
        text-align: center;
        width: 100%;
    }

    /* ===== HERO ===== */
    .hero {
        margin-top: 70px;
        height: 55vh;
    }

    .hero-overlay {
        padding-bottom: 20px;
    }

    .hero-overlay h1 {
        font-size: 22px;
    }

    .hero-overlay p {
        font-size: 14px;
    }

    /* ===== SERVICES CIRCLES ===== */
    .circle-img {
        width: 120px;
        height: 120px;
    }

    .circle-item p {
        font-size: 14px;
    }

    /* ===== SECTIONS ===== */
    .section {
        padding: 50px 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-title1 {
        font-size: 1.6rem;
    }

    /* ===== PRODUCTS GRID ===== */
    .product-grid-acceuil {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ===== CATEGORY GRID ===== */
    .category-grid {
        grid-template-columns: 1fr;
    }

    /* ===== CTA ===== */
    .section-cta h2 {
        font-size: 1.6rem;
    }

    .section-cta p {
        font-size: 0.95rem;
    }

    /* ===== FOOTER ===== */
    footer {
        font-size: 14px;
        padding: 20px;
    }
}

/* ===================== ABOUT PAGE MOBILE ===================== */
@media (max-width: 768px) {

    /* ===== MAIN ABOUT SECTION ===== */
    .about-premium {
        padding: 70px 15px;
    }

    .about-wrapper {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    /* ===== IMAGE ===== */
    .about-image {
        width: 100%;
    }

    .about-image img {
        width: 100%;
        border-radius: 15px;
    }

    /* ===== TEXT ===== */
    .about-text {
        width: 100%;
    }

    .about-text h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .about-text p,
    .about-text li {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-text ul {
        padding-left: 20px;
        text-align: left;
    }

    .intro {
        font-size: 16px;
    }

    .highlight {
        font-size: 15px;
    }

    /* ===== UNDERLINE ===== */
    .underline {
        margin: 10px auto 20px;
    }

    /* ===== STATS ===== */
    .about-stats {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 25px;
    }

    .about-stats div {
        min-width: 90px;
    }

    .about-stats h2 {
        font-size: 24px;
    }

    .about-stats span {
        font-size: 13px;
    }

    /* ===== VALUES SECTION ===== */
    .about-values {
        padding: 50px 15px;
    }

    .about-values h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .values-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .value-card {
        width: 100%;
        max-width: 320px;
        padding: 25px;
    }

    .value-card h3 {
        font-size: 20px;
    }

    .value-card p {
        font-size: 14px;
    }
}

/* ===================== LOCATION PAGE MOBILE ===================== */
@media (max-width: 768px) {
    .Location img {
        display: none;
    }

    .location-section {
        height: 70vh;
        padding-top: 5px;
        margin-top: 70px;
        min-height: 400px;
        background-image: url("assets/location-mobile.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }


    /* ===== CTA BUTTONS ===== */
    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin: 30px 15px 50px;
    }

    .rent-btn,
    .whatsapp-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        text-align: center;
        padding: 14px 20px;
        font-size: 15px;
        border-radius: 30px;
    }

    .whatsapp-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .whatsapp-logo {
        width: 22px;
        height: 22px;
    }
}

/* ===================== ECRAN PAGE MOBILE ===================== */
@media (max-width: 768px) {

    /* ===== SECTION ===== */
    .ecran-section {
        padding: 40px 15px;
        margin-top: 70px;

    }

    .ecran-section-title {
        font-size: 1.9rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .ecran-section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* ===== CONTAINER ===== */
    .ecran-container {
        width: 100%;
    }

    /* ===== CARD ===== */
    .ecran-card {
        width: 100%;
        max-width: 100%;
        padding: 20px 15px;
        border-radius: 16px;
    }

    /* ===== IMAGE ===== */
    .ecran-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 260px;
        object-fit: contain;
    }

    /* ===== TITLE ===== */
    .ecran-title {
        font-size: 1.2rem;
        line-height: 1.4;
        margin-bottom: 18px;
    }

    /* ===== SPECS ===== */
    .ecran-specs {
        width: 100%;
        max-width: 100%;
    }

    .ecran-specs li {
        font-size: 14px;
        padding: 10px 12px;
        gap: 8px;
        line-height: 1.4;
    }

    .ecran-specs li i {
        min-width: 20px;
        font-size: 14px;
    }
}

/* ===================== BORNE PAGE MOBILE ===================== */
@media (max-width: 768px) {

    /* ===== SECTION ===== */
    .borne-section {
        padding: 40px 15px;
        margin-top: 70px;

    }

    .borne-title {
        font-size: 1.9rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .borne-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* ===== CARDS CONTAINER ===== */
    .borne-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    /* ===== CARD ===== */
    .borne-card {
        width: 100%;
        max-width: 100%;
        padding: 20px 15px;
        border-radius: 16px;
    }

    /* ===== IMAGE ===== */
    .borne-image img {
        width: 100%;
        max-width: 260px;
        height: auto;
        max-height: 320px;
        object-fit: contain;
        margin: 0 auto 15px;
        display: block;
    }

    /* ===== PRODUCT NAME ===== */
    .borne-name {
        font-size: 1.2rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    /* ===== SPECS ===== */
    .borne-specs {
        width: 100%;
    }

    .borne-specs li {
        font-size: 14px;
        padding: 10px 12px;
        gap: 8px;
        line-height: 1.4;
    }

    .borne-specs li i {
        min-width: 20px;
        font-size: 14px;
    }
}

/* ===================== TOTEMS PAGE MOBILE ===================== */
@media (max-width: 768px) {

    .totems-section {
        padding: 40px 15px;
        margin-top: 70px;

    }

    .section-title {
        font-size: 1.9rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* TOTEMS CONTAINER - stacked vertically */
    .totems-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    /* TOTEM CARD */
    .totem-card {
        width: 100%;
        max-width: 100%;
        padding: 20px 15px;
        border-radius: 16px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    }

    /* TOTEM IMAGES */
    .totem-imgs {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 15px;
    }

    .totem-imgs img {
        width: 48%;
        max-width: 180px;
        height: auto;
        object-fit: contain;
        border-radius: 8px;
    }

    /* TOTEM TITLE */
    .totem-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
        text-align: center;
    }

    /* SPECS LIST */
    .specs {
        width: 100%;
        padding-left: 0;
    }

    .specs li {
        font-size: 14px;
        padding: 8px 10px;
        gap: 6px;
        line-height: 1.4;
        display: flex;
        align-items: center;
    }

    .specs li i {
        min-width: 20px;
        font-size: 14px;
    }
}

/* Afficher seulement en mobile */
/* Cacher par défaut */
.footer-mobile-only {
    display: none;
}

/* Afficher seulement en mobile */
@media (max-width: 768px) {
    .footer-mobile-only {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        /* pas d’espace entre socials et contact */
        padding: 10px;
        background-color: linear-gradient(90deg, rgb(18, 48, 85) 40%, rgba(214, 180, 83, 1) 100%);
        color: #fff;
        margin: 0;
    }

    /* Socials */
    .footer-mobile-only .socials {
        display: flex;
        gap: 8px;
        /* espace seulement entre icônes */
        font-size: 20px;
        margin: 0;
        padding: 0;
    }

    .footer-mobile-only .socials a {
        color: #fff;
        margin: 0;
        padding: 0;
        line-height: 1;
    }

    .footer-mobile-only .socials a i {
        vertical-align: middle;
        color: rgba(214, 180, 83, 1);
        /* default color - white */
        transition: color 0.3s;
    }

    /* Contact */
    .footer-mobile-only .contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        /* espace minimal entre mail et téléphone */
        font-size: 14px;
        margin: 0;
        padding: 0;
        line-height: 1;
    }

    .footer-mobile-only .contact a {
        color: #fff;
        text-decoration: none;
        margin: 0;
        padding: 0;
        line-height: 1;
    }

    .footer-mobile-only .contact a i {
        color: rgba(214, 180, 83, 1);

    }

    .footer-mobile-only .contact a:hover {
        text-decoration: underline;
    }
}