/* Global Styles */
:root {
    --primary-color: #074b83;
    --secondary-color: #1e5f8c;
    --accent-color: #ff7d00;
    --light-color: #f5f8fb;
    --dark-color: #0c2233;
    --gray-color: #f8f9fa;
    --border-color: #e0e6ed;
    --text-color: #2d3436;
    --font-main: 'Poppins', 'Roboto', sans-serif;
    --section-padding: 5rem 0;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease-in-out;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--light-color);
    scroll-behavior: smooth;
    letter-spacing: 0.01em;
}

/* Feature Card style */
.feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-color);
    transition: height 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

section {
    padding: var(--section-padding);
}

.section-title {
    position: relative;
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 120px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    animation: expandWidth 2s ease-in-out;
}

.text-center .section-title::before,
.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 0.4rem 1rem;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    min-height: auto;
}

.navbar-brand img.site-logo {
    max-height: 120px;
    transition: all 0.3s ease;
}

/* Add a smooth transition when scrolling down */
.navbar.scrolled .site-logo {
    max-height: 90px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: var(--primary-color);
}

.navbar-light .navbar-nav .active > .nav-link {
    color: var(--primary-color);
}

.dropdown-menu {
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: none;
}

.dropdown-item:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 5rem 0 8rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    border-bottom: 5px solid var(--accent-color);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
    margin-top: -3rem;
}

.hero h1 {
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-size: 2.4rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 120px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
    animation: highlightIn 1.5s ease-in-out;
    box-shadow: 0 2px 10px rgba(255, 125, 0, 0.3);
}

@keyframes highlightIn {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100px;
        opacity: 1;
    }
}

.hero p.lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-image {
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.5s ease;
    transform: translateY(0);
    position: relative;
    animation: floatIn 1.2s ease, pulse 6s ease-in-out infinite;
    margin-top: 3.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.2), transparent);
    z-index: 2;
    pointer-events: none;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, 
                              rgba(255, 255, 255, 0) 30%, 
                              rgba(255, 255, 255, 0.3) 50%, 
                              rgba(255, 255, 255, 0) 70%);
    opacity: 0.5;
    transform: rotate(45deg);
    z-index: 3;
    animation: shine 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    display: block;
    transition: transform 0.5s ease;
    animation: enginePulse 3s ease-in-out infinite;
    transform-origin: center center;
}

.hero-image:hover img {
    transform: scale(1.05);
    animation: engineRevving 1.5s ease-in-out infinite;
}

@keyframes enginePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes engineRevving {
    0%, 100% { transform: scale(1.03); }
    25% { transform: scale(1.04) rotate(-0.5deg); }
    75% { transform: scale(1.05) rotate(0.5deg); }
}

@keyframes shine {
    0% { top: -100%; left: -100%; }
    100% { top: 100%; left: 100%; }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25); }
    50% { box-shadow: 0 15px 40px rgba(255, 125, 0, 0.3), 0 15px 30px rgba(0, 0, 0, 0.25); }
}

.btn {
    border-radius: 30px;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Styles for hero buttons */
.hero-buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-buttons.compact {
    margin-top: 1rem;
    gap: 8px;
}

.hero-buttons.compact .btn {
    padding: 0.35rem 1rem;
    font-size: 0.95rem;
}

/* Style pour les boutons empilés sans espace */
.hero-buttons-stack {
    margin-top: 1rem;
}

.hero-buttons-stack div {
    margin: 0;
    padding: 0;
    line-height: 1;
}

.hero-buttons-stack .btn {
    width: fit-content;
    padding: 0.35rem 1rem;
    font-size: 0.95rem;
    display: inline-block;
    margin: 0;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid var(--accent-color);
}

.btn-light:hover {
    background: white;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    border-bottom: 3px solid var(--accent-color);
}

.btn-outline-light:hover {
    color: white;
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Styles */
.card {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 2rem;
    overflow: hidden;
    background: white;
    height: 100%;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
    border-radius: 10px;
}

.card:hover::before {
    opacity: 0.05;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-body {
    padding: 1.5rem;
    position: relative;
}

.card-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.card-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.card-text {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.card-img-top {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background-color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.features::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    transform: skewY(-2deg);
    z-index: 0;
}

.features .section-title::after {
    background-color: var(--accent-color);
}

.feature-icon {
    background: linear-gradient(135deg, var(--light-color) 0%, rgba(244, 249, 255, 0.7) 100%);
    padding: 2rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 82, 161, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.feature-icon:hover {
    border-color: rgba(0, 82, 161, 0.1);
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    top: 0;
    left: 0;
}

.feature-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 82, 161, 0.15);
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    z-index: 1;
}

.features .col-md-4:hover .feature-icon i {
    animation: iconPulse 1s ease;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Products & Services */
.product-card {
    height: 100%;
}

.product-img {
    height: 200px;
    object-fit: cover;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonial {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    margin-bottom: 1.5rem;
    position: relative;
    transition: var(--transition);
    border-left: 4px solid transparent;
    border: 1px solid var(--border-color);
}

.testimonial:hover {
    border-left-color: var(--accent-color);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 5rem;
    color: rgba(0, 82, 161, 0.05);
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 0;
}

.testimonial p {
    position: relative;
    z-index: 1;
    font-style: italic;
    line-height: 1.8;
    color: #555;
}

.testimonial-author {
    position: relative;
    font-weight: 700;
    margin-top: 1.5rem;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
}

.testimonial-author::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.testimonial-author small {
    font-weight: 400;
    color: #777;
    margin-top: 0.25rem;
}

/* Contact Form */
.contact-form {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.map-container {
    height: 400px;
    margin-bottom: 1.5rem;
}

/* Footer Wave */
.footer-wave {
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-wave .shape-fill {
    fill: var(--dark-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0 1.5rem;
    position: relative;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
}

footer a:hover {
    color: white;
}

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.social-icons a {
    display: inline-block;
    margin-right: 1rem;
    color: white;
    font-size: 1.5rem;
}

.copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Lien d'administration */
.admin-link {
    margin-top: 0.5rem;
}

.admin-link a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
}

.admin-link a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .navbar-brand img {
        max-height: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }
    
    .navbar-brand img.site-logo {
        max-height: 90px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 2rem 0;
    }
    
    .navbar-brand img.site-logo {
        max-height: 70px;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

/* About Page */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-content {
    padding: 1.5rem;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.timeline-date {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* About enhancements */
.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    border: 3px solid transparent;
    transition: all 0.5s ease;
}

.about-image-container:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.about-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.8s ease;
    display: block;
}

.about-image-container:hover img {
    transform: scale(1.05);
}

.about-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 40%);
    opacity: 0;
    transition: all 0.5s ease;
}

.about-image-container:hover::after {
    opacity: 1;
}

.about-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: white;
    z-index: 2;
    transform: translateY(100%);
    transition: all 0.5s ease;
}

.about-image-container:hover .about-image-caption {
    transform: translateY(0);
}

.values-card {
    position: relative;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.values-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.values-card-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    font-size: 2.5rem;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -20px auto 20px;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(7, 75, 131, 0.3);
    position: relative;
    z-index: 1;
}

.values-card-content {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
}

.values-card-title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.values-card-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.values-card:hover .values-card-title::after {
    width: 70px;
}

.values-card.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.5s forwards;
}

.mission-vision-card.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.5s forwards;
}

.about-stats-container {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(7, 75, 131, 0.2);
    overflow: hidden;
    color: white;
}

.about-stats-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    transform: rotate(30deg);
}

.about-stat {
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    display: block;
}

.about-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.about-stat-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.mission-vision-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.mission-vision-card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.mission-vision-card-header::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--accent-color);
    opacity: 0.2;
    border-radius: 50%;
}

.mission-vision-card-content {
    padding: 2rem;
}

.mission-vision-card-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.mission-vision-card-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    color: white;
    font-weight: 700;
}

.mission-vision-card-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.mission-vision-card-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.mission-vision-card-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.team-section {
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(245, 248, 251, 0.8);
    z-index: -1;
}

.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 2rem;
    position: relative;
}

.team-info h3 {
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-position {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-quote {
    position: relative;
    padding: 1.5rem 0;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: #555;
}

.team-quote::before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 1rem;
    left: 0;
    color: var(--accent-color);
    opacity: 0.2;
    font-size: 1.5rem;
}

.about-cta {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: -1;
}

.about-cta-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
    transition: all 0.5s ease;
}

.about-cta-btn:hover::after {
    left: 100%;
}

/* About History Image */
.about-history-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-top: 15px;
}

.about-history-image img {
    transition: transform 0.5s ease;
    width: 100%;
    display: block;
}

.about-history-image:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.about-history-image:hover img {
    transform: scale(1.03);
}

.about-history-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(7, 75, 131, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-history-image:hover::after {
    opacity: 1;
}

/* Team Section */
.team-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.team-image:hover {
    transform: translateY(-5px);
}

.team-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.team-info {
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-info h3 {
    color: var(--dark-color);
    font-weight: 700;
}

.team-info p.lead {
    font-weight: 600;
}

/* Product Detail */
.product-image {
    max-height: 400px;
    object-fit: contain;
}

.product-features {
    margin-top: 2rem;
}

.product-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.product-feature i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* FAQ */
.accordion-button:not(.collapsed) {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 82, 161, 0.25);
}

/* ================= PRODUCTS PAGE STYLES ================= */
.products-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 6rem 0;
    margin-bottom: 0;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.hero-badge {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.hero-badge i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.hero-badge:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.featured-categories {
    background-color: white;
    border-bottom: 1px solid var(--border-color);
}

.section-title {
    position: relative;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background-color: var(--light-color);
    border-radius: 50px;
    color: var(--dark-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-pill i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.category-pill:hover, .category-pill.active {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(7, 75, 131, 0.3);
}

.products-section {
    background-color: var(--light-color);
}

.product-filters {
    position: sticky;
    top: 20px;
}

.filter-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filter-header {
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.filter-header h5 {
    margin: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.filter-header h5 i {
    margin-right: 0.75rem;
}

.filter-body {
    padding: 1.25rem;
}

.category-tree {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-tree li {
    margin-bottom: 0.75rem;
}

.category-tree li a {
    display: flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.category-tree li a i {
    margin-right: 0.75rem;
    width: 18px;
    text-align: center;
}

.category-tree li a:hover, .category-tree li a.active {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.subcategory-list {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 0.75rem;
}

.subcategory-list li {
    margin-bottom: 0.5rem;
}

.subcategory-list li a {
    font-size: 0.9rem;
    padding: 0.4rem 0.75rem;
}

.condition-filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.condition-filter {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.condition-filter:hover {
    background-color: var(--light-color);
}

.condition-filter input {
    margin-right: 0.75rem;
}

.condition-name {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.condition-icon {
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

.condition-icon.new {
    color: #28a745;
}

.condition-icon.reconditioned {
    color: var(--primary-color);
}

.condition-icon.used {
    color: #6c757d;
}

.search-box {
    position: relative;
}

.search-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 0.9rem;
    cursor: pointer;
}

.filter-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    padding: 1.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.filter-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-content p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.btn-accent {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: #e67200;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 125, 0, 0.3);
}

.products-header {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.products-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.products-count {
    color: #6c757d;
    margin-bottom: 0;
}

.products-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
}

.view-mode {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    border: none;
    border-radius: 5px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover, .view-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.sort-selector {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sort-selector label {
    margin-bottom: 0;
    white-space: nowrap;
}

.sort-selector select {
    min-width: 150px;
}

.products-grid {
    display: grid;
    gap: 1.5rem;
}

.products-grid.grid-view {
    grid-template-columns: repeat(3, 1fr);
}

.products-grid.list-view {
    grid-template-columns: 1fr;
}

.product-item {
    opacity: 0;
    transform: translateY(20px);
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

.product-item.animate-in {
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.grid-view .product-card {
    flex-direction: column;
}

.list-view .product-card {
    flex-direction: row;
}

.product-card.hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.4rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    color: white;
}

.product-badge.new {
    background-color: #28a745;
}

.product-badge.reconditioned {
    background-color: var(--primary-color);
}

.product-badge.used {
    background-color: #6c757d;
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.list-view .product-image {
    flex: 0 0 30%;
    height: auto;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.grid-view .product-card:hover .product-image img {
    transform: scale(1.1);
}

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    color: #adb5bd;
}

.no-image i {
    font-size: 3rem;
}

.product-actions {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 50%;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.list-view .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-name a {
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-name a:hover {
    color: var(--primary-color);
}

.product-category {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.product-category span {
    display: inline-flex;
    align-items: center;
}

.product-category i {
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.product-description {
    margin-bottom: 1rem;
}

.product-price {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-footer {
    margin-top: auto;
    display: flex;
    gap: 0.75rem;
}

.list-view .product-footer {
    justify-content: flex-start;
}

.empty-products {
    background-color: white;
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 2rem;
}

.empty-products h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.empty-products p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.empty-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.why-choose-section {
    background-color: var(--light-color);
}

.feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(7, 75, 131, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    color: white;
}

.feature-card h4 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.feature-card p {
    color: #6c757d;
    margin-bottom: 0;
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.cta-title {
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-btn {
    position: relative;
    z-index: 1;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ================= SERVICES PAGE STYLES ================= */
.services-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 6rem 0;
    margin-bottom: 0;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.service-highlights {
    background-color: white;
    border-bottom: 1px solid var(--border-color);
}

.service-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-highlight:hover {
    background-color: rgba(7, 75, 131, 0.05);
    transform: translateY(-3px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(7, 75, 131, 0.1);
    border-radius: 10px;
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.service-highlight:hover .highlight-icon {
    background-color: var(--primary-color);
    color: white;
}

.highlight-text {
    flex: 1;
}

.highlight-text h4 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.highlight-text p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.services-intro {
    background-color: var(--light-color);
}

.services-intro-content h2 {
    position: relative;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    padding-bottom: 0.75rem;
}

.services-intro-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.services-list li i {
    margin-right: 0.75rem;
    color: var(--primary-color);
}

.services-intro-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.services-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.services-intro-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 70%;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1rem;
}

.card-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(7, 75, 131, 0.1);
    border-radius: 10px;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.card-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #6c757d;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
}

.service-card.animate-in {
    animation: fadeInUp 0.5s forwards;
}

.service-card.hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 75, 131, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    color: #adb5bd;
}

.no-image i {
    font-size: 3rem;
}

.service-info {
    padding: 1.5rem;
}

.service-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.service-description {
    color: #6c757d;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.service-actions {
    display: flex;
    gap: 0.75rem;
}

.service-modal-image {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.service-modal-content h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.service-modal-content h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
}

.service-benefits {
    margin: 2rem 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.benefits-list li i {
    margin-right: 0.75rem;
    color: #28a745;
    font-size: 1rem;
}

.service-process {
    margin-top: 2rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.process-step {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background-color: var(--light-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.process-step:hover {
    background-color: rgba(7, 75, 131, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h6 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.step-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.empty-services {
    background-color: white;
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    grid-column: 1 / -1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.empty-services .empty-icon {
    background-color: rgba(7, 75, 131, 0.1);
}

.expertise-section {
    background-color: white;
}

.expertise-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    border: 1px solid var(--border-color);
}

.expertise-card.animate-in {
    animation: fadeInUp 0.5s forwards;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.expertise-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px auto 1rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(7, 75, 131, 0.3);
}

.expertise-content {
    padding: 1.5rem;
    text-align: center;
}

.expertise-content h4 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.expertise-content p {
    color: #6c757d;
    margin-bottom: 1.25rem;
}

.expertise-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.feature-tag {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background-color: rgba(7, 75, 131, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

.expertise-card:hover .feature-tag {
    background-color: rgba(7, 75, 131, 0.2);
}

.testimonial-section {
    background-color: var(--light-color);
}

.testimonials-container {
    position: relative;
    padding: 1rem;
}

.testimonial {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.testimonial-content {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.testimonial-icon {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: white;
    font-weight: 700;
}

.author-info h5 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.author-info span {
    font-size: 0.9rem;
    color: #6c757d;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.control-prev, .control-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.control-prev:hover, .control-next:hover {
    background-color: var(--primary-color);
    color: white;
}

.carousel-indicators {
    position: static;
    margin: 0;
}

.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: rgba(7, 75, 131, 0.3) !important;
    margin: 0 3px !important;
}

.carousel-indicators button.active {
    background-color: var(--primary-color) !important;
}

.services-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.cta-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.cta-content {
    padding: 3rem;
    text-align: center;
}

.cta-content h2 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.cta-content p {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cta-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.cta-features .feature i {
    font-size: 1.25rem;
}

.cta-button {
    margin-top: 1rem;
}

.cta-button .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .products-grid.grid-view {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .services-intro-card {
        position: relative;
        width: 100%;
        bottom: 0;
        right: 0;
        margin-top: -50px;
    }
}

/* ================= CONTACT PAGE STYLES ================= */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 6rem 0;
    margin-bottom: 0;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.quick-contact {
    background-color: white;
    padding: 1.5rem 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.quick-contact-card {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.quick-contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(7, 75, 131, 0.2);
}

.quick-contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
}

.quick-contact-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.quick-contact-card p {
    color: #6c757d;
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.contact-section {
    background-color: var(--light-color);
}

.contact-wrapper {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-info-wrapper {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.2;
    z-index: 0;
}

.contact-info-header {
    padding: 2.5rem 2rem 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-info-header h2 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-info-header p {
    opacity: 0.9;
    margin-bottom: 0;
}

.contact-info-content {
    padding: 0 2rem 2rem;
    position: relative;
    z-index: 1;
}

.contact-info-item {
    display: flex;
    margin-bottom: 2rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.contact-info-details {
    flex-grow: 1;
}

.contact-info-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.contact-info-details p {
    margin-bottom: 0.75rem;
    line-height: 1.5;
    opacity: 0.9;
}

.contact-info-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.contact-info-link i {
    margin-right: 0.5rem;
}

.contact-info-link:hover {
    color: white;
    text-decoration: underline;
}

.contact-phone-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-phone-item {
    display: flex;
    justify-content: space-between;
    color: white;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-phone-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateX(5px);
}

.phone-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.phone-number {
    font-weight: 600;
}

.contact-email {
    color: white;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-3px);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.day {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hours {
    font-weight: 600;
}

.hours.closed {
    color: #ff7d7d;
}

.contact-social {
    margin-top: 2rem;
}

.contact-social h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-5px);
}

.contact-form-wrapper {
    padding: 3rem;
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h2 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-form-header p {
    color: #6c757d;
    margin-bottom: 0;
}

.contact-form {
    position: relative;
}

.form-submit {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.submit-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: -1;
    transition: all 0.3s ease;
}

.submit-btn:hover::after {
    width: 100%;
}

.form-message {
    font-size: 0.9rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-section {
    background-color: white;
}

.map-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.google-map {
    height: 500px;
    width: 100%;
}

.map-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    z-index: 10;
}

.map-info-header {
    margin-bottom: 1rem;
}

.map-info-header h3 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
    font-size: 1.25rem;
}

.map-info-header p {
    color: #6c757d;
    margin-bottom: 0;
}

.map-info-address, .map-info-phone {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.map-info-address i, .map-info-phone i {
    width: 25px;
    color: var(--primary-color);
}

.map-info-link {
    margin-top: 1.25rem;
}

.faq-section {
    background-color: var(--light-color);
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.faq-question span {
    flex: 1;
}

.faq-question i {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: #6c757d;
}

.faq-more {
    margin-top: 1.5rem;
    color: #6c757d;
}

.scroll-to-contact {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-to-contact:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.contact-cta h2 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.contact-cta p {
    opacity: 0.9;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.cta-btn {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991.98px) {
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .contact-info-wrapper {
        border-radius: 10px 10px 0 0;
    }
    
    .map-info {
        position: relative;
        bottom: 0;
        left: 0;
        max-width: 100%;
        border-radius: 0;
    }
}

@media (max-width: 767.98px) {
    .products-grid.grid-view {
        grid-template-columns: 1fr;
    }
    
    .list-view .product-card {
        flex-direction: column;
    }
    
    .list-view .product-image {
        flex: none;
        height: 220px;
    }
    
    .cta-content {
        padding: 2rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-contact {
        margin-top: 0;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .google-map {
        height: 350px;
    }
    
    /* Nouveaux styles pour l'amélioration du design */
    /* Styles communs de section */
    .section-header {
        margin-bottom: 2rem;
        position: relative;
    }
    
    .section-subtitle {
        display: inline-block;
        background-color: rgba(7, 75, 131, 0.1);
        color: var(--primary-color);
        font-weight: 600;
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
        border-radius: 50px;
        margin-bottom: 0.5rem;
        position: relative;
    }
    
    .btn-with-icon {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .btn-with-icon:hover {
        transform: translateY(-3px);
    }
    
    .text-accent {
        color: var(--accent-color) !important;
    }
    
    /* Hero Styles Additionnels */
    .hero-badge {
        display: inline-block;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        padding: 0.5rem 1.5rem;
        color: var(--accent-color);
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .hero-image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.2), transparent);
        z-index: 2;
        pointer-events: none;
    }
    
    .hero-image-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background-color: var(--accent-color);
        padding: 0.5rem 1rem;
        border-radius: 50px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 4;
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
        text-align: center;
    }
    
    .hero-image-badge span {
        font-weight: 700;
        font-size: 0.8rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }
    
    .hero-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .hero-stat-item {
        display: flex;
        flex-direction: column;
    }
    
    .hero-stat-value {
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--accent-color);
    }
    
    .hero-stat-label {
        font-size: 0.85rem;
        opacity: 0.8;
    }
    
    .hero-shape {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
    }
    
    .hero-shape svg {
        position: relative;
        display: block;
        width: calc(120% + 1.3px);
        height: 90px;
    }
    
    .hero-shape .shape-fill {
        fill: #FFFFFF;
    }
    
    /* Products Section Styles */
    .products-section {
        background-color: white;
        position: relative;
        padding-bottom: 8rem;
    }
    
    .product-section-shape {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
    }
    
    .product-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        z-index: 10;
    }
    
    .badge-label {
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 700;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }
    
    .product-img-wrapper {
        position: relative;
        overflow: hidden;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    
    .product-price {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 1rem;
    }
    
    .product-action {
        display: flex;
        justify-content: flex-end;
    }
    
    /* Services Section Styles */
    .services-section {
        position: relative;
        background-color: var(--light-color);
        padding-bottom: 8rem;
    }
    
    .service-card {
        background-color: white;
        border-radius: 12px;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        border: 1px solid var(--border-color);
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .service-icon {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
        background-color: rgba(7, 75, 131, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        font-size: 1.2rem;
        z-index: 10;
    }
    
    .service-image {
        margin-bottom: 1.5rem;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .service-title {
        color: var(--primary-color);
        font-weight: 700;
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .service-description {
        color: #666;
        margin-bottom: 1.5rem;
    }
    
    .service-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--primary-color);
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    
    .service-link:hover {
        color: var(--accent-color);
        text-decoration: none;
    }
    
    .services-section-shape {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
    }
    
    /* Testimonials Section Styles */
    .testimonials-section {
        background-color: var(--light-color);
        padding: 5rem 0;
    }
    
    .testimonial-card {
        background-color: white;
        border-radius: 12px;
        padding: 2.5rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        position: relative;
        transition: all 0.3s ease;
        border: 1px solid var(--border-color);
    }
    
    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .testimonial-quote {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 1.5rem;
        color: var(--accent-color);
        opacity: 0.2;
    }
    
    .testimonial-content {
        font-style: italic;
        margin-bottom: 2rem;
        position: relative;
        color: #555;
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
        border-top: 1px solid var(--border-color);
        padding-top: 1.5rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
        overflow: hidden;
        border-radius: 50%;
        background-color: var(--primary-color);
    }
    
    .avatar-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 700;
        font-size: 1.2rem;
    }
    
    .testimonial-info {
        flex: 1;
    }
    
    .author-name {
        font-weight: 700;
        margin-bottom: 0.2rem;
        color: var(--primary-color);
    }
    
    .author-title {
        font-size: 0.85rem;
        color: #777;
        margin-bottom: 0.5rem;
    }
    
    .testimonial-rating {
        color: #FFD700;
        font-size: 0.85rem;
    }
    
    /* CTA Section Styles */
    .cta-section {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: white;
        padding: 3rem 0 6rem;
        position: relative;
    }
    
    .cta-container {
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 2.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
    }
    
    .cta-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1));
        transform: skewX(-15deg) translateX(-100%);
        animation: ctaGlow 6s infinite;
    }
    
    @keyframes ctaGlow {
        0% { transform: skewX(-15deg) translateX(-100%); }
        30% { transform: skewX(-15deg) translateX(100%); }
        100% { transform: skewX(-15deg) translateX(100%); }
    }
}
