:root {
    --primary: #001C2A;
    --secondary: #209366;
    --light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--primary);
}

/* Texte - empêcher débordement */
h1, h2, h3, h4, h5, h6, p, span, a, li {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Images - toujours responsive */
img {
    max-width: 100%;
    height: auto;
}

video {
    max-width: 100%;
    height: auto;
}

/* Top Bar */
.top-bar {
    background: var(--primary);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: var(--secondary);
}

.top-bar i {
    color: var(--secondary);
    margin-right: 8px;
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 12px;
        padding: 8px 0;
    }
    
    .top-bar a {
        word-break: break-all;
    }
}

/* Navbar */
.navbar {
    background: rgba(0, 28, 42, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--secondary) !important;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 45px;
    width: auto;
    max-width: 80px;
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-primary {
    background: var(--secondary);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1a7a54;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(32, 147, 102, 0.4);
}

@media (max-width: 992px) {
    .navbar-brand img {
        max-width: 60px;
    }
    
    .navbar-collapse {
        background: rgba(0, 28, 42, 0.98);
        padding: 20px;
        margin-top: 10px;
        border-radius: 8px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 28, 42, 0.85) 0%, rgba(0, 61, 92, 0.85) 100%);
    color: white;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23209366" opacity="0.1"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
}

.hero-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

.hero-badge {
    background: rgba(255,255,255,0.95);
    padding: 15px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
}

.hero-badge:nth-child(1) {
    animation-delay: 0s;
}

.hero-badge:nth-child(2) {
    animation-delay: 1s;
}

.hero-badge:nth-child(3) {
    animation-delay: 3s;
}

.hero-badge img {
    height: 40px;
    width: auto;
}

.hero-badge span {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-img {
    animation: fadeInRight 1.5s ease;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.75rem !important;
        line-height: 1.3;
    }
    
    .hero .lead,
    .hero p {
        font-size: 1rem;
    }
    
    .hero .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.5rem !important;
    }
    
    .hero .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero .btn.me-3 {
        margin-right: 0 !important;
    }
}

/* Features */
.features {
    padding: 80px 0;
    background: var(--light);
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
    width: 100%;
    max-width: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(32, 147, 102, 0.2);
    border-color: var(--secondary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary), #1a7a54);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* About Section */
.about {
    padding: 100px 0;
}

.about h2 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 30px;
}

.about-img {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    animation: fadeInLeft 1s ease;
    max-width: 100%;
    height: auto;
}

/* Services */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #003d5c 100%);
    color: white;
}

.service-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.service-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(32, 147, 102, 0.4);
}

/* Stats */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 28, 42, 0.9) 0%, rgba(0, 61, 92, 0.9) 100%), url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=1920&h=600&fit=crop') center/cover;
    color: white;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 28, 42, 0.7);
    z-index: 0;
}

.stats .container {
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
    color: var(--secondary);
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem !important;
    }
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: white;
}

.partners h3 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 140px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 220px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 576px) {
    .partner-logo {
        padding: 5px;
    }
    
    .partner-logo img {
        max-width: 120px;
    }
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--light);
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, #003d5c 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-info h4 {
    color: var(--secondary);
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-info-item {
    display: flex;
    align-items: start;
    margin-bottom: 25px;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-info-item p {
    margin: 0;
    line-height: 1.6;
}

.contact-info-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--secondary);
}

@media (max-width: 992px) {
    .contact-info,
    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .contact-info,
    .contact-form {
        padding: 15px;
    }
    
    .form-check-label {
        font-size: 0.9rem;
    }
}

/* Realizations */
.realizations {
    padding: 100px 0;
    background: white;
}

.realization-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 350px;
    width: 100%;
    max-width: 100%;
}

.realization-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.realization-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.realization-card:hover img {
    transform: scale(1.1);
}

.realization-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,28,42,0.95), transparent);
    padding: 30px;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.realization-card:hover .realization-overlay {
    transform: translateY(0);
}

.realization-overlay h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
}

.realization-overlay p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 0.9rem;
}

.realization-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a7a54 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta {
    background: white;
    color: var(--secondary);
    border: none;
    padding: 15px 40px;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    background: var(--light);
    color: var(--secondary);
}

.btn-cta i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-cta:hover i {
    transform: translateX(5px);
}

/* Process Section */
.process {
    padding: 100px 0;
    background: var(--light);
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary), #1a7a54);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(32, 147, 102, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    transform: scale(1.1) rotate(5deg);
}

.process-step h5 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

.process-connector {
    position: absolute;
    top: 40px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--secondary), transparent);
    z-index: -1;
}

.process-step:last-child .process-connector {
    display: none;
}

@media (max-width: 768px) {
    .process-connector {
        display: none;
    }
    
    .process-number {
        margin: 0 auto 15px;
    }
}

/* Form Controls */
.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(32, 147, 102, 0.25);
}

/* Styles pour les checkboxes du formulaire */
.form-check {
    padding: 0.75rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.form-check:hover {
    background-color: rgba(32, 147, 102, 0.05);
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    cursor: pointer;
    border: 2px solid #209366;
}

.form-check-input:checked {
    background-color: #209366;
    border-color: #209366;
}

.form-check-input:focus {
    border-color: #209366;
    box-shadow: 0 0 0 0.25rem rgba(32, 147, 102, 0.25);
}

.form-check-label {
    cursor: pointer;
    font-size: 0.95rem;
    margin-left: 0.5rem;
    user-select: none;
}

/* Style spécifique pour la checkbox de consentement */
#consent {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

#consent + .form-check-label {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #333333;
}

#consent + .form-check-label a {
    font-weight: 500;
    color: #209366;
    transition: color 0.2s ease;
}

#consent + .form-check-label a:hover {
    color: #1a7a52;
}

/* Style pour le fieldset des services */
fieldset {
    border: 2px solid rgba(32, 147, 102, 0.2);
    padding: 1.25rem;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.02);
}

fieldset legend {
    float: none;
    width: auto;
    padding: 0 0.5rem;
    margin-bottom: 0.75rem;
}

/* Animation pour les icônes dans les labels */
.form-check-label i {
    transition: transform 0.2s ease;
}

.form-check-input:checked + .form-check-label i {
    transform: scale(1.2);
}

/* hCaptcha responsive */
.h-captcha {
    margin: 20px 0;
}

@media (max-width: 576px) {
    .h-captcha {
        transform: scale(0.85);
        transform-origin: 0 0;
    }
    
    #consent + .form-check-label {
        font-size: 0.8rem;
    }
    
    fieldset {
        padding: 1rem;
    }
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 40px 0 20px;
}

footer a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #1a7a54;
}

footer img {
    max-width: 150px;
}

@media (max-width: 768px) {
    footer {
        text-align: center;
    }
    
    footer .col-md-3 {
        margin-bottom: 30px;
    }
    
    footer img {
        max-width: 120px;
    }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 10px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(32, 147, 102, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #1a7a54;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(32, 147, 102, 0.6);
}

/* Sticky Contact Menu */
.sticky-contact {
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sticky-contact-btn {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 28, 42, 0.3);
    position: relative;
}

.sticky-contact-btn:hover {
    background: var(--secondary);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(32, 147, 102, 0.5);
}

/* Tooltip au survol (desktop uniquement) */
.sticky-contact-btn[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 70px;
    background: var(--primary);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 1;
    visibility: visible;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    /* Désactiver tooltips sur mobile */
    .sticky-contact-btn[data-tooltip]:hover::after {
        display: none;
    }
    
    /* Sticky contact optimisé - RESTE À GAUCHE */
    .sticky-contact {
        left: 10px;
        top: 50%;
        gap: 10px;
    }
    
    .sticky-contact-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    /* Scroll top optimisé - RESTE À GAUCHE */
    .scroll-top {
        left: 10px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
    
    /* Sections padding */
    section {
        padding: 40px 0;
    }
    
    /* Espacements */
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    .mt-5 {
        margin-top: 2rem !important;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

@media (max-width: 576px) {
    /* Encore plus petit sur très petits écrans */
    .sticky-contact-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .scroll-top {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Désactiver animations sur mobile si lag */
@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Widget Partoo - ajustement mobile */
@media (max-width: 768px) {
    #partoo-messaging-widget {
        bottom: 160px !important;
    }
}

      /* Fix pour le menu déroulant qui passe au-dessus du header */
      .navbar {
        z-index: 2000 !important;
    }
    
    .dropdown-menu {
        z-index: 2100 !important;
        background: rgba(0, 28, 42, 0.98);
        border: 1px solid rgba(32, 147, 102, 0.3);
        box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        padding: 10px 0;
    }
    
    .dropdown-item {
        color: rgba(255,255,255,0.9);
        padding: 10px 20px;
        transition: all 0.3s ease;
    }
    
    .dropdown-item:hover {
        background: rgba(32, 147, 102, 0.2);
        color: white;
        padding-left: 25px;
    }
    
    .dropdown-item.active {
        background: var(--secondary);
        color: white;
    }
    
    /* Fix pour le dropdown toggle - éviter conflit avec ::after */
    .nav-link.dropdown-toggle::after {
        display: inline-block !important;
        margin-left: 0.5em;
        vertical-align: 0.15em;
        content: "";
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-bottom: 0;
        border-left: 0.3em solid transparent;
    }
    
    /* Désactiver l'underline animation sur le dropdown */
    .dropdown-toggle::after {
        position: static !important;
        width: auto !important;
    }
    
    /* Service d'entretien mis en valeur */
    .featured-service {
        background: linear-gradient(135deg, #209366 0%, #1a7a54 100%);
        border-radius: 15px;
        padding: 50px;
        margin-bottom: 60px;
        box-shadow: 0 15px 50px rgba(32, 147, 102, 0.3);
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    .featured-service::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: pulse 4s ease-in-out infinite;
    }
    
    @keyframes pulse {
        0%, 100% { transform: scale(1); opacity: 0.5; }
        50% { transform: scale(1.1); opacity: 0.8; }
    }
    
    .featured-service .container {
        position: relative;
        z-index: 1;
    }
    
    .featured-service .featured-icon {
        font-size: 4.5rem;
        margin-bottom: 25px;
        color: rgba(255,255,255,0.95);
        display: inline-block;
    }
    
    .featured-service h3 {
        font-size: 2.2rem;
        font-weight: bold;
        margin-bottom: 20px;
    }
    
    .featured-service p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.95;
        line-height: 1.7;
    }
    
    .featured-service .btn {
        background-color: white;
        color: #209366;
        font-weight: bold;
        padding: 15px 35px;
        border-radius: 50px;
        transition: all 0.3s ease;
        font-size: 1.1rem;
        border: none;
    }
    
    .featured-service .btn:hover {
        background-color: #001C2A;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    }
    
    .featured-service .decorative-icon {
        font-size: 10rem;
        opacity: 0.15;
        position: absolute;
        right: 50px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* Cartes de service cliquables */
    .service-card {
        cursor: pointer;
    }
    
    @media (max-width: 768px) {
        .featured-service {
            padding: 30px 20px;
        }
        
        .featured-service h3 {
            font-size: 1.5rem;
        }
        
        .featured-service p {
            font-size: 1rem;
        }
        
        .featured-service .decorative-icon {
            font-size: 5rem;
            right: 20px;
        }
    }

 /* Hero spécifique à la page service */
 .service-hero {
    background: linear-gradient(135deg, rgba(0, 28, 42, 0.9) 0%, rgba(0, 61, 92, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=1920&h=1080&fit=crop') center/cover;
    color: white;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23209366" opacity="0.1"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.service-hero .container {
    position: relative;
    z-index: 1;
}

.service-icon-large {
    font-size: 5rem;
    color: #FDB913;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

/* Menu déroulant au-dessus */
.navbar {
    z-index: 2000 !important;
}

.dropdown-menu {
    z-index: 2100 !important;
    background: rgba(0, 28, 42, 0.98);
    border: 1px solid rgba(32, 147, 102, 0.3);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    padding: 10px 0;
}

.dropdown-item {
    color: rgba(255,255,255,0.9);
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(32, 147, 102, 0.2);
    color: white;
    padding-left: 25px;
}

.dropdown-item.active {
    background: var(--secondary);
    color: white;
}

/* Fix pour le dropdown toggle */
.nav-link.dropdown-toggle::after {
    display: inline-block !important;
    margin-left: 0.5em;
    vertical-align: 0.15em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.dropdown-toggle::after {
    position: static !important;
    width: auto !important;
}

/* Avantages en cartes */
.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(32, 147, 102, 0.2);
    border-color: var(--secondary);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary), #1a7a54);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
}