:root {
    --primary: #00D4FF; /* Cyan Eau */
    --dark: #1A2B48;    /* Bleu Abysse */
    --light: #F4F7F9;   /* Gris Ardoise clair */
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Permet un défilement fluide quand on clique sur le menu */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--dark);
}

/* Header Glassmorphism */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(26, 43, 72, 0.8); /* Fond bleu transparent */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
}

.logo span { color: var(--primary); }

.nav a {
    text-decoration: none;
    color: var(--white);
    margin-left: 25px;
    font-weight: 400;
    transition: 0.3s;
}

.nav a:hover { color: var(--primary); }

.btn-cta {
    background: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--dark) !important;
    font-weight: 700 !important;
}

/* Hero Section avec Photo */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: var(--white);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 43, 72, 0.6);
    z-index: -1;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h1 span { color: var(--primary); }

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    margin-right: 15px;
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 13px 35px;
    text-decoration: none;
    border-radius: 5px;
}

/* Section Zones Remontée */
.zones {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.card-zone {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.card-zone h4 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card-zone p {
    font-size: 0.9rem;
    color: #666;
}

/* Sections Globales */
.features, .tarifs-section, .faq-section {
    padding: 80px 0;
}

.tarifs-section { background: var(--light); }

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

.card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.card:hover { transform: translateY(-5px); }

.card h3 {
    color: var(--dark);
    margin-bottom: 15px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin: 15px 0;
}

.text-center { text-align: center; }

/* FAQ Styles */
.faq-item {
    background: var(--light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.faq-item h4 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* SEO Text Section */
.seo-text {
    padding: 60px 20px;
    font-size: 0.9rem;
    color: #777;
    border-top: 1px solid #eee;
}
.seo-text h3 { margin-bottom: 15px; color: var(--dark); }

/* Bouton d'appel flottant */
.btn-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #00D4FF;
    color: var(--dark);
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 2000;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .nav a { display: none; }
    .nav a.btn-cta { display: block; }
    .zones { margin-top: 20px; } /* On annule le chevauchement sur mobile */
}
CSS
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light);
    padding: 40px;
    border-radius: 15px;
}

.contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.contact-form textarea {
    margin: 20px 0;
    resize: vertical;
}

/* Adaptation mobile pour le formulaire */
@media (max-width: 600px) {
    .contact-form .form-grid {
        grid-template-columns: 1fr;
    }
    .contact-container {
        padding: 20px;
    }
}

/* Alignement du logo et du texte */
.logo-link {
    display: flex;
    align-items: center;
    gap: 35px; /* Espace entre l'image du drone et le texte */
    text-decoration: none;
}

.logo-icon {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Styles du texte pour forcer les couleurs */
.logo-text {
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 0px; /* Empêche tout espacement forcé entre les lettres */
}

.logo-text .hyd {
    color: #ffffff !important; /* !important garantit que le blanc est appliqué */
}

.logo-text .rone {
    color: #00D4FF !important; /* Bleu cyan */
}

.logo-text .dot {
    color: #ffffff !important; /* Bleu cyan pour le point */
}
CSS
/* ==========================================
   OPTIMISATION ET CORRECTIFS MOBILE (Responsive)
   ========================================== */

/* 1. Empêche tout débordement horizontal de la page */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* 2. Rend toutes les images fluides */
img {
    max-width: 100%;
    height: auto;
}

/* 3. Adaptations spécifiques pour smartphones (< 768px) */
@media screen and (max-width: 768px) {
    
    /* Réduction du header pour éviter qu'il prenne tout l'écran */
    .header .container {
        flex-direction: column; /* Empile le logo et le menu si besoin */
        gap: 15px;
        padding: 10px 15px;
    }

    /* Taille du logo ajustée pour smartphone */
    .logo-icon {
        height: 35px; /* Un peu plus petit sur mobile pour gagner de la place */
    }

    .logo-text {
        font-size: 1.4rem; /* Taille de texte ajustée */
    }

    /* Ajustement des marges internes sur les sections principales */
    section, container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box;
    }

    /* Si tu as des grilles ou des colonnes, on les met sur 1 seule colonne */
    .services-grid, .features-grid, .grid {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
    }
}

/* ==========================================
   CORRECTIF AFFICHAGE DES LIENS SUR MOBILE
   ========================================== */

@media screen and (max-width: 768px) {

    /* 1. Header compact */
    .header {
        padding: 8px 0 !important;
    }

    .header .container {
        display: flex !important;
        flex-direction: column !important; /* Empile logo et liens */
        align-items: center !important;
        gap: 8px !important;
        padding: 0 10px !important;
    }

    /* 2. Logo compact */
    .logo-icon {
        height: 28px !important;
    }

    .logo-text {
        font-size: 1.2rem !important;
    }

    /* 3. Forcer l'affichage du bloc de navigation */
    nav, .nav-links, .nav-menu, header ul {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    /* 4. Style des liens (Accueil, Prestations, Tarifs...) */
    nav a, .nav-links a, header a:not(.logo-link) {
        display: inline-block !important;
        visibility: visible !important;
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        color: #ffffff !important; /* Force la couleur blanche */
        text-decoration: none !important;
        padding: 4px 6px !important;
	.devis-noir-mobile {
        color: #000000 !important;
    }


}