@charset "utf-8";
/* CSS Document */


        
		body {
    padding-top: 78px;
}

.carousel-item {
    position: relative;
}

#headerCarousel,
#headerCarousel .carousel-inner,
#headerCarousel .carousel-item {
    height: 100%;
}

.slider-cartouche {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

		
		:root {
            --primary-dark: #1a365d;
            --primary: #2c5282;
            --primary-light: #4299e1;
            --secondary: #ed8936;
            --secondary-dark: #dd6b20;
            --accent: #38a169;
            --accent-light: #68d391;
            --light: #f7fafc;
            --dark: #2d3748;
            --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #2b6cb0 100%);
            --gradient-secondary: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
            --gradient-accent: linear-gradient(135deg, #38a169 0%, #48bb78 100%);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
       
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
       
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            background-color: #f8fafc;
            overflow-x: hidden;
            line-height: 1.7;
        }
       
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.3;
        }
       
        /* ========== NAVIGATION FIXE ========== */
        .navbar {
            background: rgba(26, 54, 93, 0.98);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            transition: all 0.4s ease;
            box-shadow: var(--shadow);
            border-bottom: 3px solid var(--secondary);
            z-index: 1000;
			
        }
       
        .navbar-brand {
            font-size: 1.2rem;
            font-weight: 800;
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
			white-space:nowrap;
        }
       
        .navbar-brand i {
            margin-right: 2px;
            font-size: 1.3rem;
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
       
	   
        .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            padding: 6px 12px !important;
            border-radius: 30px;
            transition: all 0.3s ease;
            position: relative;
            font-size: 0.95rem;
            white-space: nowrap;
        }
       
        .nav-link:hover, .nav-link.active {
            background: rgba(237, 137, 54, 0.2);
            color: var(--secondary) !important;
        }

        /* ========== HEADER SLIDER CORRIGÉ ========== */
       
		
		.header-slider {
            position: relative;
            margin-top: 0; /* SUPPRIMER LA MARGE */
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
        }
        
        .carousel-inner, .carousel-item {
            height: 100%;
        }
        
        .carousel-item img {
            object-fit: cover;
            width: 100%;
            height: 100%;
            filter: brightness(0.6);
        }
        
        /* CORRECTION : Cartouche texte - PLUS CLAIR ET BIEN CENTRÉ */
        .slider-cartouche {
            position: absolute;
            top: 25%;
            left: 9%;
            transform: translate(-50%, -50%);
            background: rgba(255, 255, 255, 0.15); /* PLUS CLAIR */
            backdrop-filter: blur(10px);
            padding: 30px 35px;
            border-radius: 15px;
            color: white;
            text-align: center;
            width: 70%;
            max-width: 550px;
            z-index: 10;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        
        .slider-cartouche h1 {
            font-size: 2.2rem; /* RÉDUIT */
            margin-bottom: 12px;
            color: white;
            text-shadow: 0 2px 5px rgba(0,0,0,0.8);
            font-weight: 700;
            line-height: 1.2;
        }
        
        .slider-cartouche .badge {
            background: var(--gradient-secondary);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 1rem; /* RÉDUIT */
            margin-bottom: 15px;
            display: inline-block;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(237, 137, 54, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .slider-cartouche p {
            font-size: 1.1rem; /* RÉDUIT */
            margin-bottom: 20px;
            opacity: 0.95;
            font-weight: 400;
            line-height: 1.5;
            text-shadow: 0 1px 3px rgba(0,0,0,0.7);
        }
        
        .slider-buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* Carousel controls */
        .carousel-control-prev, .carousel-control-next {
            width: 50px;
            height: 50px;
            background: rgba(0,0,0,0.4);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            margin: 0 15px;
        }
        
        .carousel-indicators {
            bottom: 20px;
        }
        
        .carousel-indicators button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin: 0 5px;
            background-color: rgba(255,255,255,0.5);
        }
        
        .carousel-indicators button.active {
            background-color: var(--secondary);
        }
       
        /* ========== GALERIE CORRIGÉE ========== */
        .gallery-section {
            background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
            padding: 80px 0 60px;
        }
        
        .gallery-section .section-title {
            font-size: 2.3rem;
            margin-bottom: 15px;
            color: var(--primary-dark);
            position: relative;
            display: inline-block;
        }
        
        .gallery-section .section-title:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: var(--gradient-secondary);
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 5px;
        }
        
        .gallery-section .section-subtitle {
            font-size: 1.1rem;
            color: #5a6c7d;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
        }
        
        .gallery-container {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            max-width: 900px;
            margin: 0 auto;
            border: 1px solid #e2e8f0;
        }
        
        /* Galerie réduite */
        .gallery-main {
            height: 300px;
            overflow: hidden;
            position: relative;
        }
        
        .gallery-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-thumbnails {
            display: flex;
            background: white;
            padding: 12px;
            border-top: 1px solid #e2e8f0;
            justify-content: center;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .thumbnail {
            width: 100px;
            height: 60px;
            overflow: hidden;
            border-radius: 6px;
            cursor: pointer;
            opacity: 0.7;
            transition: all 0.3s ease;
            position: relative;
            border: 2px solid transparent;
        }
        
        .thumbnail:hover, .thumbnail.active {
            opacity: 1;
            transform: translateY(-2px);
            border-color: var(--secondary);
        }
        
        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* ========== SECTIONS RESTANTES ========== */
        /* Boutons */
        .btn {
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
       
        .btn-primary {
            background: var(--gradient-secondary);
            box-shadow: 0 5px 15px rgba(237, 137, 54, 0.4);
            color: white;
        }
       
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(237, 137, 54, 0.6);
            color: white;
        }
       
        .btn-accent {
            background: var(--gradient-accent);
            box-shadow: 0 5px 15px rgba(56, 161, 105, 0.4);
            color: white;
        }
       
        .btn-accent:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(56, 161, 105, 0.6);
            color: white;
        }
       
	   /* social icon */
	   .social-icon i {
    font-size: 2rem;
    transition: transform 0.3s ease;
}
.social-icon:hover i {
    transform: scale(1.2);
}

	   
        /* Sections générales */
        .section {
            padding: 80px 0;
            position: relative;
        }
       
        .section-title {
            font-size: 2.3rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
       
        .section-title:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: var(--gradient-secondary);
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 5px;
        }
       
        .section-subtitle {
            font-size: 1.1rem;
            color: #5a6c7d;
            margin-bottom: 50px;
            max-width: 700px;
        }
       
        /* Services */
        .service-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            height: 100%;
            background: white;
            position: relative;
            padding: 30px 25px;
            text-align: center;
        }
       
        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-secondary);
        }
       
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
       
        .service-icon {
            font-size: 3.2rem;
            margin-bottom: 20px;
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
       
        /* Pièces Détachées */
        .categories-section {
            background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
        }
       
        .category-card {
            background: white;
            border-radius: 15px;
            padding: 30px 25px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }
       
        .category-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-accent);
        }
       
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
       
        .category-icon {
            font-size: 2.8rem;
            margin-bottom: 20px;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
       
        /* Section Enlèvement d'Épaves */
        .epaves-section {
            background: var(--gradient-primary);
            color:#e4792a;
            position: relative;
            overflow: hidden;
			
        }
       
        /* Comment nous intervenons */
        .intervention-step {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: var(--shadow);
            height: 100%;
            transition: all 0.3s ease;
            border-left: 5px solid var(--secondary);
        }
       
        .intervention-step:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
       
        .step-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--gradient-secondary);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            font-weight: 800;
            margin-bottom: 15px;
        }
       
        /* Zone d'intervention */
        
		
		
		
		.zone-section {
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
        }
       
        .zone-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
       
        .zone-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
       
        .zone-list {
            column-count: 2;
            column-gap: 30px;
        }
       
        /* Footer */
        .footer {
            background: var(--primary-dark);
            color: white;
            padding-top: 60px;
            position: relative;
        }
       
        .footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-secondary);
        }
       
        .footer-title {
            font-size: 1.4rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
       
        .copyright {
            background: rgba(0, 0, 0, 0.3);
            padding: 20px 0;
            margin-top: 50px;
            text-align: center;
        }
       
        
       
        /* Carte Google Maps */
        .map-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: var(--shadow);
            height: 100%;
            position: relative;
            border-top: 5px solid var(--primary);
        }
       
        .map-container {
            border-radius: 12px;
            overflow: hidden;
            height: 300px;
            margin-top: 10px;
            border: 2px solid #e2e8f0;
        }
       
        /* Animation des sections */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
       
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* ========== MODALES COOKIES ET PROMO ========== */
        /* Modal cookies */
        .cookie-modal .modal-content {
            border-radius: 20px;
            overflow: hidden;
            border: none;
            box-shadow: var(--shadow-lg);
        }
       
        .cookie-header {
            background: var(--gradient-primary);
            color: white;
            padding: 20px 25px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
       
        .cookie-header:before {
            content: '🍪';
            font-size: 2.5rem;
            margin-right: 15px;
        }
       
        .cookie-title {
            margin: 0;
            flex: 1;
        }
       
        .cookie-close {
            color: white;
            font-size: 1.5rem;
            background: transparent;
            border: none;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
       
        .cookie-close:hover {
            background: rgba(255, 255, 255, 0.2);
        }
       
        .cookie-body {
            padding: 25px;
        }
       
        .cookie-buttons {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: nowrap;
            gap: 15px;
            margin-top: 20px;
        }
       
        .cookie-refuse-btn {
            background-color: #6c757d;
            border-color: #6c757d;
            color: white;
            flex: 1;
        }
       
        .cookie-refuse-btn:hover {
            background-color: #5a6268;
            border-color: #545b62;
            color: white;
        }
       
        .cookie-accept-btn {
            background: var(--gradient-secondary);
            border: none;
            color: white;
            font-weight: 500;
            flex: 1;
        }
       
        .cookie-accept-btn:hover {
            background: var(--secondary-dark);
            color: white;
        }
        
        /* Modal promotion */
        .promo-modal .modal-content {
            border: 3px solid var(--secondary);
            border-radius: 20px;
        }
        
   /* back to top */    
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;

    display: none;
    width: 45px;
    height: 45px;

    border: none;
    border-radius: 50%;
    background-color: #e47829;
    color: #fff;
    font-size: 22px;
    cursor: pointer;

    transition: opacity 0.3s ease, transform 0.3s ease;
}

#backToTop:hover {
    background-color: #f04916;
    transform: translateY(-3px);
}


