/* ===== RESET ET BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero .container {
    padding-left: 0;
    width: 100%;
    max-width: none;
}

/* ===== VARIABLES CSS ===== */
:root {
    --primary-orange: #FF9500;
    --primary-color: #FF9500;
    --primary-dark: #E6850E;
    --bg-black: #000000;
    --bg-dark: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== BOUTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-contact {
    background: var(--primary-orange);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.3);
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-contact:hover::before {
    left: 100%;
}

.btn-contact:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.4);
}

.btn-contact:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

/* WhatsApp Icon Styling */
.btn-contact .fa-whatsapp {
    color: #ffffff;
    font-size: 1.4em;
}

.btn-contact:hover .fa-whatsapp {
    color: #25D366;
}

/* ===== HEADER ===== */
.header {
    background: var(--bg-black);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===== LOGO ===== */
.navbar-brand .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
}

/* ===== NAVIGATION ===== */
.navbar-menu {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 3rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 0;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

.nav-link i {
    font-size: 12px;
    transition: var(--transition);
}

/* ===== DROPDOWN ===== */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    list-style: none;
    box-shadow: var(--shadow-dark);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: rgba(255, 149, 0, 0.1);
    color: var(--primary-color);
}

/* ===== NAVBAR ACTIONS ===== */
.navbar-actions .btn {
    padding: 10px 20px;
    font-size: 13px;
}

/* ===== MOBILE TOGGLE ===== */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

.navbar-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition);
    transform-origin: center;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HEADER SPACER ===== */
.header-spacer {
    height: 80px; /* Hauteur du header */
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: calc(100vh - 80px); /* Compense la hauteur du header */
    overflow: hidden;
}

.hero-camera-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.camera-dome {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform; /* Optimisation GPU */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    padding-bottom: 120px;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    display: block;
}

.hero-text {
    max-width: 600px;
    margin-left: 40px;
    display: block;
    visibility: visible;
}

/* ===== HERO TEXT ===== */
.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: #ffffff !important;
    display: block;
    visibility: visible;
}

.hero-title .highlight {
    color: #ffffff !important;
    font-weight: 700;
}

.hero-description {
    font-size: 1.1rem;
    color: #ffffff !important;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 600;
    display: block;
    visibility: visible;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}



/* ===== MOBILE TOGGLE ===== */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.navbar-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-camera-bg {
        width: 100%;
        height: 100%;
    }
    
    .camera-dome {
        object-position: center right;
    }
    
    .hero-overlay {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.3) 100%);
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-black);
        padding: 80px 2rem 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .navbar-menu.active {
        left: 0;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero-camera-bg {
        width: 100%;
        height: 100% !important; /* Force la hauteur normale sur mobile */
        top: 0 !important; /* Réinitialise la position */
        transform: none !important; /* Désactive le parallax sur mobile */
    }
    
    .camera-dome {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
        transform: none !important; /* Assure qu'aucune transformation n'est appliquée */
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%);
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        margin-left: 20px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-text {
        margin-left: 15px;
        padding-right: 15px;
    }
    
    .hero-camera-bg {
        width: 100%;
        height: 100%;
        position: absolute;
    }
    
    .camera-dome {
        object-fit: cover;
        object-position: center center;
        width: 100%;
        height: 100%;
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.5) 100%);
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-text {
        margin-left: 15px;
        padding-right: 15px;
    }
}

/* ===== RESPONSIVE LANDSCAPE MOBILE ===== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-camera-bg {
        width: 100%;
        height: 100%;
    }
    
    .camera-dome {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
    }
    
    .hero-overlay {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.4) 100%);
    }
    
    .hero-text {
        margin-left: 30px;
        max-width: 50%;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
}

/* ===== SERVICES CARDS SECTION ===== */
.services-cards {
    position: relative;
    padding: 100px 0 150px 0;
    background: var(--primary-orange);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: -200px auto 0 auto;
    position: relative;
    z-index: 10;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 149, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.card-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ===== RESPONSIVE CARDS ===== */
@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: -150px auto 0 auto;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        margin: -120px auto 0 auto;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-text {
    padding-left: 2rem;
}

.about-subtitle {
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.about-tagline {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.about-description p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.trust-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.trust-message i {
    color: var(--primary-orange);
    font-size: 1.5rem;
}

.trust-message span {
    color: #333;
    font-weight: 500;
    font-size: 1rem;
}

/* ===== ABOUT RESPONSIVE ===== */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-text {
        padding-left: 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-description p {
        font-size: 0.95rem;
    }
    
    .trust-message {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

/* ===== OUR SERVICES SECTION ===== */
.our-services {
    padding: 100px 0;
    position: relative;
    background-image: url('../assets/le-panneau-du-systeme-de-securite-domestique-moderne.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.our-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

.our-services .container {
    position: relative;
    z-index: 2;
}

.services-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 4rem;
}

.services-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-item:hover .service-bg-img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
}

.service-item:hover .service-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.service-name {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    padding: 0 1rem;
}

/* ===== OUR SERVICES RESPONSIVE ===== */
@media (max-width: 768px) {
    .our-services {
        padding: 60px 0;
    }
    
    .services-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .services-grid-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 20px;
    }
    
    .service-item {
        height: 200px;
    }
    
    .service-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 1.8rem;
    }
    
    .service-item {
        height: 180px;
    }
    
    .service-name {
        font-size: 1.1rem;
    }
}

/* ===== MISSION SECTION - NOUVELLE VERSION SIMPLE ===== */
.mission-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.mission-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 4rem;
}

/* Grille des cartes flip - 4 colonnes alignées */
.flip-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Carte flip - Structure de base */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 350px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

/* Faces avant et arrière */
.flip-card-front, 
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    /* IMPORTANT: Empêcher le défilement et maintenir la position */
    overflow: hidden;
    top: 0;
    left: 0;
}

.flip-card-front {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.flip-card-back {    
    background: linear-gradient(135deg, #ff9500 0%, #ff7300 100%);
    color: white;

    
    transform: rotateY(180deg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* IMPORTANT: Maintenir la même hauteur et position */
    box-sizing: border-box;
    overflow: hidden;
    max-height: 350px;
    cursor: pointer;
}

/* Image de la face avant */
.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay de la face avant */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    color: white;
}

.card-overlay h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

/* Bouton + */
.flip-btn {
    align-self: flex-end;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #ff9500;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.flip-btn:hover {
    background: #ff7300;
    transform: scale(1.1);
}

/* Contenu de la face arrière */
.flip-card-back h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    margin-top: 0.3rem;
    font-weight: 600;
}

.flip-card-back p {
    font-size: 0.78rem;
    line-height: 1.3;
    margin-bottom: 0.6rem;
    text-align: justify;
    flex-shrink: 1;
}

/* Bouton × supprimé - Clic sur la carte pour fermer */

/* Responsive - Tablette */
@media (max-width: 1024px) {
    .flip-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .mission-section {
        padding: 60px 0;
    }
    
    .mission-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .flip-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .flip-card {
        height: 350px;
    }
    
    .card-overlay {
        padding: 1.5rem;
    }
    
    .card-overlay h3 {
        font-size: 1.2rem;
    }
    
    .flip-card-back {
        padding: 1.2rem;
        max-height: 350px;
        overflow: hidden;
    }
    
    .flip-card-back h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .flip-card-back p {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .mission-title {
        font-size: 1.8rem;
    }
    
    .flip-card {
        height: 300px;
    }
    
    .card-overlay {
        padding: 1rem;
    }
    
    .flip-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .flip-card-back {
        padding: 0.8rem;
        max-height: 300px;
        overflow: hidden;
    }
    
    .flip-card-back h3 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    
    .flip-card-back p {
        font-size: 0.72rem;
        text-align: left;
        line-height: 1.2;
        margin-bottom: 0.4rem;
    }
}

/* ===== PROCESS SECTION ===== */
.process-section {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.process-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.process-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.process-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.65);
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.process-content {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.process-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.process-image {
    margin: 0 auto;
}

.etapes-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== PROCESS RESPONSIVE ===== */
@media (max-width: 968px) {
    .process-overlay {
        padding: 60px 20px;
    }
    
    .process-content {
        padding: 2.5rem 1.5rem;
    }
    
    .process-title {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .process-content {
        padding: 2rem 1rem;
        border-radius: 15px;
    }
    
    .process-title {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .process-overlay {
        padding: 40px 15px;
    }
    
    .process-content {
        padding: 1.5rem 0.8rem;
    }
    
    .process-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: #000000;
    color: white;
}

.footer-main {
    padding: 60px 0 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
}

.footer-logo-img {
    height: 120px;
    width: auto;
}

.footer-section {
    text-align: left;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-orange);
}

.footer-address,
.footer-contact {
    color: #cccccc;
}

.address-item,
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.address-item i,
.contact-item i {
    color: var(--primary-orange);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.contact-intro {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.contact-item span {
    font-size: 0.95rem;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    background: var(--primary-orange);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: var(--transition);
}

.footer-link:hover {
    color: #333;
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px 0;
    }
    
    .footer-logo-img {
        height: 100px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-link {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 2rem;
    }
    
    .contact-intro {
        font-size: 0.9rem;
    }
    
    .address-item,
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
}

/* ===== CARDS SPACER ===== */
.cards-spacer {
    height: 50px;
}

/* ===== SERVICES PAGE ===== */

/* Hero Section Services */
.services-hero {
    position: relative;
    min-height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.services-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
}

.services-hero-overlay .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.services-hero-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.services-hero-left {
    flex: 1;
    text-align: left;
}

.services-hero-right {
    display: flex;
    justify-content: flex-end;
}

.services-hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
    margin: 0;
    text-align: left;
}

.services-hero-nav {
    display: flex;
    gap: 1rem;
}

.hero-nav-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 149, 0, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav-btn:hover {
    background: var(--primary-orange);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 149, 0, 0.4);
}

.hero-nav-btn:active {
    transform: scale(0.95);
}

/* Section Vidéo Surveillance */
.video-surveillance-section {
    padding: 3rem 0;
    background: #ffffff;
}

.video-surveillance-content {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.video-surveillance-image {
    flex: 0.8;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    line-height: 0;
}

.surveillance-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
    line-height: 0;
}

.video-surveillance-text {
    flex: 1.2;
}

.video-surveillance-image:hover .surveillance-img {
    transform: scale(1.05);
}



.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-surveillance-image:hover .image-overlay {
    opacity: 1;
}

.play-button-wrapper {
    position: relative;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: var(--primary-orange);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-play-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 149, 0, 0.4);
}

.video-surveillance-text {
    padding-left: 2rem;
}

.surveillance-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
}

.surveillance-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.surveillance-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2.5rem;
}

.surveillance-subtitle {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem !important;
    margin-top: 2rem;
}

.surveillance-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.surveillance-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.surveillance-features .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.surveillance-features .feature-item i {
    font-size: 1.2rem;
    color: var(--primary-orange);
    width: 20px;
    text-align: center;
}

.surveillance-features .feature-item span {
    font-weight: 500;
    color: #333;
}

/* ===== GALLERY VIDEO SECTION ===== */
.gallery-video-section {
    padding: 2rem 0 0 0;
    background: #ffffff;
}

.gallery-video-section .section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.gallery-video-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    position: relative;
}

.gallery-video-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.gallery-video-content {
    display: flex;
    gap: 0;
    align-items: stretch;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 300px;
}

.gallery-left,
.gallery-right {
    flex: 1;
    height: 100%;
    overflow: hidden;
    line-height: 0;
}

.gallery-center {
    flex: 1.5;
    height: 100%;
    overflow: hidden;
    line-height: 0;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.video-container {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    height: 100%;
    width: 100%;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-btn-center {
    width: 80px;
    height: 80px;
    background: var(--primary-orange);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-play-btn-center::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s infinite;
}

.video-play-btn-center:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* Espaceur avant footer */
.footer-spacer {
    height: 2rem;
    background: #ffffff;
}

/* ===== ZONES D'INTERVENTION PAGE ===== */

/* Hero Section Zones */
.zones-hero {
    position: relative;
    min-height: calc(100vh - 80px);
    overflow: hidden;
}

.zones-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.zones-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.zones-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zones-hero-content {
    text-align: center;
    color: white;
}

.zones-hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
    margin: 0 0 1rem 0;
}

.zones-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-orange);
    margin: 0;
}

/* Section Présentation */
.zones-presentation {
    padding: 5rem 0;
    background: #ffffff;
}

.zones-presentation-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.zones-text {
    flex: 1;
}

.zones-info {
    flex: 1;
}

.zones-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
}

.zones-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.zones-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
}

.zones-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.zones-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-orange);
}

.zones-features .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 149, 0, 0.15);
}

.zones-features .feature-item i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.zones-features .feature-item span {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

/* Contact Card */
.contact-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 149, 0, 0.15);
}

.contact-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-header i {
    color: var(--primary-orange);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.contact-details p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-btn:first-child {
    background: var(--primary-orange);
    color: white;
}

.contact-btn:first-child:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-btn.whatsapp {
    background: #25D366;
    color: white;
}

.contact-btn.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Section Carte */
.zones-map-section {
    padding: 5rem 0 6rem 0;
    background: #f8f9fa;
}

.zones-map-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.zones-map-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    position: relative;
}

.zones-map-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== ACCESS CONTROL SECTION ===== */
.access-control-section {
    padding: 3rem 0;
    background: #ffffff;
}

.access-control-content {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.access-control-image {
    flex: 0.8;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    line-height: 0;
}

.access-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
    line-height: 0;
}

.access-control-image:hover .access-img {
    transform: scale(1.05);
}

.access-control-text {
    flex: 1.2;
}

.access-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    position: relative;
}

.access-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.access-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2.5rem;
}

.access-subtitle {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem !important;
    margin-top: 2rem;
}

.access-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.access-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.access-features .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.access-features .feature-item i {
    font-size: 1.2rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.access-features .feature-item span {
    font-weight: 500;
    color: #333;
}

/* ===== SONORISATION SECTION ===== */
.sonorisation-section {
    padding: 3rem 0;
    background: #ffffff;
}

.sonorisation-content {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.sonorisation-image {
    flex: 0.8;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    line-height: 0;
}

.sonorisation-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
    line-height: 0;
}

.sonorisation-image:hover .sonorisation-img {
    transform: scale(1.05);
}

.sonorisation-text {
    flex: 1.2;
}

.sonorisation-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    position: relative;
}

.sonorisation-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.sonorisation-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2.5rem;
}

.sonorisation-subtitle {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem !important;
    margin-top: 2rem;
}

.sonorisation-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.sonorisation-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.sonorisation-features .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.sonorisation-features .feature-item i {
    font-size: 1.2rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.sonorisation-features .feature-item span {
    font-weight: 500;
    color: #333;
}

/* ===== ALARME SECTION ===== */
.alarme-section {
    padding: 3rem 0;
    background: #ffffff;
}

.alarme-content {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.alarme-image {
    flex: 0.8;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    line-height: 0;
}

.alarme-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
    line-height: 0;
}

.alarme-image:hover .alarme-img {
    transform: scale(1.05);
}

.alarme-text {
    flex: 1.2;
}

.alarme-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    position: relative;
}

.alarme-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.alarme-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2.5rem;
}

.alarme-subtitle {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem !important;
    margin-top: 2rem;
}

.alarme-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.alarme-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.alarme-features .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.alarme-features .feature-item i {
    font-size: 1.2rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.alarme-features .feature-item span {
    font-weight: 500;
    color: #333;
}

.surveillance-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-orange);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-orange);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #333;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid #ddd;
}

.btn-secondary:hover {
    background: #333;
    color: white;
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ===== RESPONSIVE SERVICES PAGE ===== */
@media (max-width: 968px) {
    .services-hero-title {
        font-size: 3rem;
    }
    
    .services-hero-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .services-hero-text {
        flex-direction: column;
        gap: 2rem;
    }
    
    .video-surveillance-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .video-surveillance-text {
        padding-left: 0;
        text-align: center;
    }
    
    .surveillance-features {
        grid-template-columns: 1fr;
    }
    
    .surveillance-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-hero {
        min-height: 50vh;
    }
    
    .services-hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .video-surveillance-section {
        padding: 60px 0;
    }
    
    .surveillance-img {
        height: 300px;
    }
    
    .surveillance-title {
        font-size: 2rem;
    }
    
    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .video-play-btn::before {
        width: 80px;
        height: 80px;
    }
    
    .surveillance-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .surveillance-title {
        font-size: 1.8rem;
    }
    
    .surveillance-description p {
        font-size: 1rem;
    }
}

/* ===== MODAL VIDÉO SURVEILLANCE ===== */
.surveillance-modal {
    background: rgba(0, 0, 0, 0.95);
}

.surveillance-modal .video-modal-content {
    max-width: 900px;
    width: 95%;
}

.surveillance-modal .video-info {
    background: white;
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: 8px;
    text-align: center;
}

.surveillance-modal .video-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.surveillance-modal .video-info p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* ===== RESPONSIVE - ZONES D'INTERVENTION ===== */

/* Tablettes */
@media (max-width: 1024px) {
    .zones-hero-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .zones-hero-subtitle {
        font-size: 1.3rem;
    }
    
    .zones-presentation-content {
        gap: 2.5rem;
    }
    
    .zones-title {
        font-size: 2.4rem;
    }
    
    .zones-description p {
        font-size: 1.1rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .contact-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
    
    .map-wrapper {
        height: 350px;
    }
}

/* Mobiles */
@media (max-width: 768px) {
    .zones-hero {
        min-height: calc(100vh - 70px);
    }
    
    .zones-hero-title {
        font-size: 2.5rem;
        letter-spacing: 1.5px;
    }
    
    .zones-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .zones-presentation {
        padding: 3rem 0;
    }
    
    .zones-presentation-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .zones-text {
        order: 2;
    }
    
    .zones-info {
        order: 1;
    }
    
    .zones-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .zones-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .zones-description p {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .zones-features {
        gap: 1rem;
    }
    
    .zones-features .feature-item {
        padding: 1rem;
    }
    
    .zones-features .feature-item span {
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-header i {
        font-size: 2rem;
    }
    
    .contact-header h3 {
        font-size: 1.3rem;
    }
    
    .contact-details p {
        font-size: 1rem;
    }
    
    .zones-map-section {
        padding: 3rem 0 4rem 0;
    }
    
    .zones-map-section .section-title {
        font-size: 2rem;
    }
    
    .map-container {
        margin: 0 1rem;
        border-radius: 15px;
    }
    
    .map-wrapper {
        height: 300px;
    }
}

/* Petits mobiles */
@media (max-width: 480px) {
    .zones-hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .zones-hero-subtitle {
        font-size: 1rem;
    }
    
    .zones-presentation {
        padding: 2rem 0;
    }
    
    .zones-title {
        font-size: 1.8rem;
    }
    
    .zones-description p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .zones-features .feature-item {
        padding: 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .zones-features .feature-item i {
        font-size: 1.5rem;
    }
    
    .zones-features .feature-item span {
        font-size: 0.9rem;
    }
    
    .contact-card {
        padding: 1.2rem;
    }
    
    .contact-header i {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-header h3 {
        font-size: 1.2rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .zones-map-section {
        padding: 2rem 0 3rem 0;
    }
    
    .zones-map-section .section-title {
        font-size: 1.8rem;
    }
    
    .map-container {
        margin: 0 0.5rem;
        border-radius: 12px;
    }
    
    .map-wrapper {
        height: 250px;
    }
}

/* Bouton play overlay sur vidéo */
.video-overlay-parent {
    position: relative;
}
.video-play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}
.video-play-btn-overlay:hover {
    background: var(--primary-orange);
    color: #fff;
}