
@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 {
    font-family: var(--font-main);
    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);
}

/* 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: 1;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    animation: kenBurns 20s infinite alternate;
}

@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: 5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 8px;
    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 30px;
    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: 1.5rem;
    letter-spacing: 4px;
    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 30px;
    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 {
    position: relative;
    background: linear-gradient(135deg, rgba(201, 164, 59, 0.85), rgba(10, 46, 63, 0.98)), 
                url('../Img/JTS1.jpeg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    margin: 80px 0;
    border-radius: 0;
    box-shadow: var(--shadow-xl);
}

.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 {
    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 {
    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 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 12px;
    display: inline-block;
}

.service-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-card li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
    position: relative;
    padding-left: 24px;
}

.service-card li::before {
    content: '⚓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 0.8rem;
}

/* 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: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 6px;
    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 60px;
    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: 320px;
    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: 220px;
    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-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-specs p {
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-specs i {
    color: var(--secondary-color);
    width: 24px;
}

.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; }

/* Section Contact */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1f2b, #031016);
    color: white;
}

.contact-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border-radius: 60px;
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(201, 164, 59, 0.3);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
}

.contact-box h2 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.contact-details p {
    font-size: 1.3rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.contact-details i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    width: 30px;
}

.contact-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    padding: 16px 50px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.contact-btn:hover {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 164, 59, 0.3);
}

style>
    /* Styles supplémentaires pour la cohérence avec les autres pages */
    .cta-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #0a2e3f 0%, #1a4a63 100%);
        color: white;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        font-weight: 700;
    }
    
    .cta-content p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.9;
    }
    
    .cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 15px 30px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .cta-btn.primary {
        background: #ff7f2a;
        color: white;
    }
    
    .cta-btn.primary:hover {
        background: #e66a1c;
        transform: translateY(-2px);
    }
    
    .cta-btn.secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
    }
    
    .cta-btn.secondary:hover {
        background: white;
        color: #0a2e3f;
        transform: translateY(-2px);
    }
    
    .cta-features {
        display: flex;
        gap: 30px;
        justify-content: center;
        font-size: 1.1rem;
    }
    
    .cta-features span i {
        color: #ff7f2a;
        margin-right: 8px;
    }
    
    @media (max-width: 768px) {
        .cta-buttons {
            flex-direction: column;
        }
        
        .cta-features {
            flex-direction: column;
            gap: 10px;
        }
    }
    
    /* Styles pour le modal */
    .product-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        z-index: 1000;
        justify-content: center;
        align-items: center;
    }
    
    .product-modal.show {
        display: flex;
    }
    
    .modal-content {
        background: white;
        width: 90%;
        max-width: 1000px;
        max-height: 90vh;
        overflow-y: auto;
        border-radius: 10px;
        position: relative;
        animation: modalFadeIn 0.3s ease;
    }
    
    @keyframes modalFadeIn {
        from {
            opacity: 0;
            transform: scale(0.9);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    .modal-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #666;
        z-index: 10;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .modal-close:hover {
        color: #ff7f2a;
        transform: rotate(90deg);
    }
    
    .modal-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .modal-gallery {
        position: relative;
    }
    
    .modal-gallery img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 10px;
    }
    
    .modal-thumbnails {
        display: flex;
        gap: 10px;
        margin-top: 15px;
    }
    
    .modal-thumbnails img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 5px;
        cursor: pointer;
        opacity: 0.7;
        transition: all 0.3s ease;
    }
    
    .modal-thumbnails img:hover,
    .modal-thumbnails img.active {
        opacity: 1;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    .modal-details {
        padding: 20px 0;
    }
    
    .modal-details h2 {
        font-size: 2rem;
        color: #0a2e3f;
        margin-bottom: 20px;
        font-weight: 700;
    }
    
    .modal-specs {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 20px;
    }
    
    .modal-specs p {
        margin: 10px 0;
        color: #333;
    }
    
    .modal-specs i {
        color: #ff7f2a;
        width: 25px;
    }
    
    .modal-description {
        font-size: 1rem;
        line-height: 1.8;
        color: #666;
        margin-bottom: 30px;
    }
    
    .modal-contact-btn {
        display: inline-block;
        background: #ff7f2a;
        color: white;
        padding: 15px 30px;
        text-decoration: none;
        border-radius: 5px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .modal-contact-btn:hover {
        background: #e66a1c;
        transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
        .modal-grid {
            grid-template-columns: 1fr;
        }
        
        .modal-gallery img {
            height: 300px;
        }
    }


/* Footer */
footer {
    background: linear-gradient(135deg, #031016 0%, #01090e 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    margin-top: 0;
}

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) {
    .carousel-hero .hero-content h1 {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }
    
    .carousel-hero .hero-content p {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .section-divider {
        font-size: 2rem;
        background-attachment: scroll;
    }
    
    .section-divider span {
        padding: 15px 30px;
    }
}

@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;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .carousel-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .carousel-hero .hero-content p {
        font-size: 1rem;
        padding: 12px 20px;
    }

    .section-divider {
        height: 200px;
        font-size: 1.5rem;
    }

    .floating-icon {
        font-size: 4rem;
        right: 20px;
    }

    .reparation-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;
    }

    .contact-box {
        padding: 40px 20px;
    }

    .contact-box h2 {
        font-size: 2.2rem;
    }
}