
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');


/* ===== VARIABLES ET RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a2e3f;
    --primary-dark: #051f2a;
    --secondary-color: #c9a43b;
    --secondary-light: #dbb957;
    --text-light: #f8f9fa;
    --text-dark: #1e293b;
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --overlay-primary: rgba(10, 46, 63, 0.9);
    --font-main: 'Inter', 'Segoe UI', system-ui, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

body {
    background: linear-gradient(135deg, #f0f5fa 0%, #e6edf4 100%);
    color: var(--text-dark);
    line-height: 1.7;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-smooth);
    border-bottom: 2px solid transparent;
}

.main-header.scrolled {
    background: var(--overlay-primary);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    transition: var(--transition-smooth);
    border-radius: 8px;
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px var(--secondary-color));
}

/* Navigation */
.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.navbar .nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 40px;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.navbar .nav-links a::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.5s ease;
}

.navbar .nav-links a:hover::before {
    left: 100%;
}

.navbar .nav-links a:hover,
.navbar .nav-links a.active {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 164, 59, 0.4);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 46, 63, 0.95);
    backdrop-filter: blur(12px);
    min-width: 240px;
    border-radius: 16px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--secondary-color);
    list-style: none;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(8px);
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--text-light);
    border-radius: 0;
    background: transparent;
}

.dropdown-menu a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateX(8px);
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    width: 35px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    height: 3px;
    background: var(--text-light);
    margin: 4px 0;
    border-radius: 4px;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* ===== CAROUSEL HERO ===== */
.carousel-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.carousel-hero .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    animation: kenBurns 20s infinite alternate;
}

.carousel-hero .slide.active {
    opacity: 1;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.carousel-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 46, 63, 0.4) 0%, var(--overlay-dark) 100%);
    z-index: 2;
}

.carousel-hero .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3;
    width: 90%;
    max-width: 900px;
    animation: fadeInUp 1.2s ease;
}

.carousel-hero .hero-content h1 {
    font-size: 6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 12px;
    margin-bottom: 24px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-right: 4px solid var(--secondary-color);
    border-left: 4px solid var(--secondary-color);
    display: inline-block;
    padding: 0 40px;
    line-height: 1.3;
    background: linear-gradient(135deg, #fff 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-hero .hero-content p {
    font-size: 2rem;
    letter-spacing: 6px;
    font-weight: 400;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    padding: 16px 40px;
    border-radius: 60px;
    display: inline-block;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 40px rgba(201, 164, 59, 0.3);
}

.carousel-hero .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    z-index: 3;
    animation: bounce 2.5s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-30px); }
    60% { transform: translateX(-50%) translateY(-15px); }
}

/* ===== SECTIONS PRINCIPALES ===== */
.plus_de_photo {
    padding: 100px 0;
    background: white;
    border-radius: 50px 50px 0 0;
    margin-top: -50px;
    position: relative;
    z-index: 5;
    box-shadow: 0 -20px 40px rgba(0,0,0,0.05);
}

.section-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 4px;
}

.card-box {
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-smooth);
    border: 1px solid rgba(201, 164, 59, 0.2);
}

.card-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 60px rgba(10, 46, 63, 0.3);
}

.card-box img {
    transition: var(--transition-smooth);
    height: 500px;
    object-fit: cover;
    width: 100%;
}

.card-box:hover img {
    transform: scale(1.05);
}

.card-title {
    color: var(--primary-color);
    font-size: 2.4rem;
    margin-bottom: 24px;
    border-left: 6px solid var(--secondary-color);
    padding-left: 24px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    border-bottom: 1px dashed #e2e8f0;
}

.feature-list i {
    color: var(--secondary-color);
    margin-right: 12px;
    font-size: 1.2rem;
}

/* Sections avec background */
.reparation-bg-section,
.gardiennage-bg-section {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    margin: 80px 0;
    border-radius: 0;
    box-shadow: var(--shadow-xl);
}

.reparation-bg-section {
    background: linear-gradient(135deg, rgba(201, 164, 59, 0.85), rgba(10, 46, 63, 0.98)), 
                url('../Img/JTS1.jpeg');
}

.gardiennage-bg-section {
    background: linear-gradient(135deg, rgba(10, 46, 63, 0.98), rgba(5, 31, 42, 0.98)), 
                url('../Img/JTS1.jpeg');
}

.service-intro {
    font-size: 1.25rem;
    max-width: 900px;
    margin: 0 auto 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 24px 40px;
    border-radius: 60px;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-light);
    line-height: 1.8;
}

.service-intro strong {
    color: var(--secondary-color);
    display: block;
    margin-top: 12px;
    font-size: 1.1rem;
}

.service-card, .gardiennage-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: 40px;
    padding: 40px 30px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    color: var(--text-light);
}

.service-card:hover, .gardiennage-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(201, 164, 59, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 2px solid var(--secondary-color);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.service-card h3, .gardiennage-card h4 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 12px;
    display: inline-block;
}

.service-card ul, .gardiennage-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-card li, .gardiennage-card li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
    position: relative;
    padding-left: 24px;
}

.service-card li::before, .gardiennage-card li::before {
    content: '⚓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.service-cta, .tarif-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid var(--secondary-color);
    color: var(--text-light);
    padding: 20px 40px;
    border-radius: 60px;
    display: inline-block;
    font-size: 1.2rem;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.info-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: 40px;
    padding: 40px;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.2);
}

.info-box h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    padding: 12px 0;
    font-size: 1.1rem;
}

.info-box i {
    color: var(--secondary-color);
    margin-right: 12px;
}

/* Section divider */
.section-divider {
    position: relative;
    height: 300px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1506956191951-7a88da4435e5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin: 80px 0;
    border-top: 4px solid var(--secondary-color);
    border-bottom: 4px solid var(--secondary-color);
}

.section-divider span {
    background: rgba(10, 46, 63, 0.8);
    backdrop-filter: blur(12px);
    padding: 24px 80px;
    border-radius: 80px;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 0 60px var(--secondary-color);
}

.floating-icon {
    position: absolute;
    font-size: 8rem;
    color: rgba(201, 164, 59, 0.2);
    bottom: 20px;
    right: 60px;
    transform: rotate(15deg);
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: rotate(15deg) translateY(0); }
    50% { transform: rotate(15deg) translateY(-30px); }
}

/* Carousel produits */
.products-carousel-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 100px 0;
}

.products-carousel-title h2 {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.products-carousel-title p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.products-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 0 80px;
}

.products-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 20px 0;
}

.products-carousel::-webkit-scrollbar {
    display: none;
}

.product-card {
    min-width: 340px;
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    scroll-snap-align: start;
    transition: var(--transition-smooth);
    border: 1px solid rgba(201, 164, 59, 0.2);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.product-badge.best-seller {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-specs p {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-specs i {
    color: var(--secondary-color);
    width: 24px;
}

.product-detail-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 100%;
    font-size: 1rem;
    margin-top: 20px;
    border: 2px solid transparent;
}

.product-detail-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    border: 2px solid var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.carousel-arrow:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px var(--secondary-color);
}

.carousel-arrow.left { left: 0; }
.carousel-arrow.right { right: 0; }

/* Modal */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    max-width: 1100px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 50px;
    padding: 40px;
    position: relative;
    animation: modalPop 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 60px rgba(201, 164, 59, 0.3);
}

@keyframes modalPop {
    from { 
        transform: scale(0.8) translateY(30px); 
        opacity: 0; 
    }
    to { 
        transform: scale(1) translateY(0); 
        opacity: 1; 
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--primary-color);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
    border: 2px solid transparent;
}

.modal-close:hover {
    transform: rotate(180deg) scale(1.1);
    background: var(--primary-color);
    color: white;
    border-color: var(--secondary-color);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.modal-gallery img {
    width: 100%;
    border-radius: 30px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-lg);
}

.modal-thumbnails {
    display: flex;
    gap: 12px;
}

.modal-thumbnails img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.modal-thumbnails img:hover {
    transform: scale(1.05);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.modal-details h2 {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.modal-specs p {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1.1rem;
}

.modal-specs i {
    color: var(--secondary-color);
    width: 30px;
}

.modal-description {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 24px;
    border-radius: 24px;
    margin: 30px 0;
    line-height: 1.8;
    border-left: 4px solid var(--secondary-color);
}

.modal-contact-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), #b88f2a);
    color: var(--primary-color);
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 60px;
    font-weight: 700;
    transition: var(--transition-smooth);
    border: 2px solid var(--primary-color);
    font-size: 1.1rem;
}

.modal-contact-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 164, 59, 0.4);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #031016 0%, #01090e 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    margin-top: 80px;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), var(--secondary-color), transparent);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 70px;
    width: auto;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    padding: 4px;
}

.footer-logo span {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #fff, var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 5px 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.social-icons a {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-smooth);
    font-size: 1.3rem;
    border: 1px solid rgba(201, 164, 59, 0.3);
}

.social-icons a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-5px) rotate(360deg);
    border-color: white;
    box-shadow: 0 0 30px var(--secondary-color);
}

.copyright, .order-note {
    opacity: 0.7;
    font-size: 1rem;
    margin: 12px 0;
}

.order-note i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .modal-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-hero .hero-content h1 {
        font-size: 4rem;
    }
    
    .section-divider {
        font-size: 2.5rem;
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .navbar .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--overlay-primary);
        backdrop-filter: blur(12px);
        padding: 24px;
        gap: 12px;
        border-top: 3px solid var(--secondary-color);
        box-shadow: var(--shadow-xl);
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        margin-left: 24px;
        background: rgba(0,0,0,0.3);
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .carousel-hero .hero-content h1 {
        font-size: 2.8rem;
        letter-spacing: 4px;
    }
    
    .carousel-hero .hero-content p {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .section-divider {
        height: 200px;
        font-size: 1.8rem;
    }

    .section-divider span {
        padding: 16px 30px;
    }

    .floating-icon {
        font-size: 4rem;
        right: 20px;
    }

    .reparation-bg-section,
    .gardiennage-bg-section {
        background-attachment: scroll;
    }

    .products-carousel-container {
        padding: 0 20px;
    }

    .product-card {
        min-width: 280px;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .card-title {
        font-size: 2rem;
    }
}