/* =========================================
   VARIABLES & DESIGN SYSTEM
========================================= */
:root {
    /* Colors */
    --clr-primary: #12355b;
    /* Deep Navy Blue */
    --clr-primary-light: #1e5a9c;
    --clr-secondary: #0096da;
    /* Water Blue */
    --clr-accent: #78be20;
    /* Leaf Green */
    --clr-accent-light: #8bc34a;

    --clr-text: #333333;
    --clr-text-light: #666666;
    --clr-heading: #111111;

    --clr-bg: #ffffff;
    --clr-bg-alt: #f8f9fa;
    --clr-bg-glass: rgba(255, 255, 255, 0.85);

    --clr-border: #e2e8f0;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout & Spacing */
    --container-width: 1200px;
    --section-padding: 5rem 1.5rem;
    --border-radius-sm: 8px;
    --border-radius: 12px;
    --border-radius-lg: 24px;

    /* Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-hover: 0 25px 50px -12px rgba(18, 53, 91, 0.15);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   RESET & BASE STYLES
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--clr-text);
    background-color: var(--clr-bg);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--clr-heading);
    line-height: 1.2;
    font-weight: 600;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0;
}

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

.bg-light {
    background-color: var(--clr-bg-alt);
}

.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   TYPOGRAPHY
========================================= */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--clr-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--clr-text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.highlight-text {
    color: var(--clr-secondary);
}

.divider {
    height: 4px;
    width: 60px;
    background: linear-gradient(90deg, var(--clr-secondary), var(--clr-accent));
    border-radius: 2px;
    margin-bottom: 2rem;
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--clr-primary-light);
    margin-bottom: 1.5rem;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--clr-secondary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 150, 218, 0.3);
}

.btn-primary:hover {
    background-color: #007eba;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 150, 218, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--clr-primary);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--clr-primary);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* =========================================
   NAVBAR
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 1.5rem;
    transition: var(--transition);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: var(--clr-bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.8rem 1.5rem;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1001;
}

.logo-icon {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    position: relative;
}

.icon-blue {
    color: var(--clr-secondary);
}

.icon-green {
    color: var(--clr-accent);
    position: absolute;
    font-size: 0.9rem;
    bottom: 2px;
    right: -4px;
    text-shadow: -1px -1px 0 #fff;
}

.navbar.scrolled .icon-green {
    text-shadow: -1px -1px 0 var(--clr-bg);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1;
    color: white;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.brand-sub {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--clr-secondary);
}

.navbar.scrolled .brand-name {
    color: var(--clr-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: white;
    font-weight: 500;
    font-family: var(--font-heading);
    position: relative;
    transition: var(--transition);
}

.navbar.scrolled .nav-link {
    color: var(--clr-text);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--clr-secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-secondary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
}

.nav-btn::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    z-index: 1001;
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--clr-primary);
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 1.5rem 3rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 53, 91, 0.8) 0%, rgba(0, 150, 218, 0.4) 100%);
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-title .highlight {
    color: #fff;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--clr-secondary);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.badge {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge i {
    color: var(--clr-accent-light);
}

.highlight-badge {
    background-color: var(--clr-secondary);
    border-color: var(--clr-secondary);
    box-shadow: 0 4px 10px rgba(0, 150, 218, 0.4);
    transform: translateY(-2px);
    animation: pulse 2s infinite;
}

.highlight-badge i {
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 150, 218, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 150, 218, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 150, 218, 0);
    }
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-15px) translateX(-50%);
    }

    60% {
        transform: translateY(-7px) translateX(-50%);
    }
}

/* =========================================
   ABOUT SECTION
========================================= */
.auto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 150, 218, 0.1);
    color: var(--clr-secondary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
    margin: 0;
}

.image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--clr-primary);
    color: white;
    padding: 2rem;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 6px solid white;
    box-shadow: var(--shadow-md);
}

.experience-badge .years {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.3rem;
}

/* =========================================
   SERVICES SECTION
========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--clr-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--clr-border);
    position: relative;
    top: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 150, 218, 0.3);
}

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

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.service-icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--clr-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
    border: 3px solid white;
}

.service-content {
    padding: 2rem;
    text-align: left;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--clr-primary);
}

.service-content p {
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card:hover .service-link {
    color: var(--clr-primary);
}

.service-link i {
    transition: transform 0.3s;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* =========================================
   WHY US SECTION
========================================= */
.why-us {
    position: relative;
    overflow: hidden;
}

.benefits-list {
    margin-top: 2rem;
}

.benefits-list li {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    background: var(--clr-bg-alt);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.benefits-list li:hover {
    background: white;
    box-shadow: var(--shadow-sm);
    border-left-color: var(--clr-secondary);
    transform: translateX(10px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--clr-secondary), var(--clr-accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-content h4 {
    margin-bottom: 0.5rem;
}

.benefit-content p {
    margin: 0;
    color: var(--clr-text-light);
    font-size: 0.95rem;
}

.why-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    background: url('assets/images/sofa_cleaning_deep.webp') center/cover no-repeat;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-md);
    position: absolute;
}

.stat-1 {
    top: 10%;
    left: -20px;
}

.stat-2 {
    bottom: 20%;
    right: -20px;
}

.stat-card h3 {
    font-size: 2rem;
    color: var(--clr-secondary);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-card p {
    font-weight: 600;
    margin: 0;
    font-size: 0.9rem;
    color: var(--clr-primary);
}

/* =========================================
   PRICING SECTION
========================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--clr-bg);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 150, 218, 0.3);
}

.pricing-card.featured {
    border: 2px solid var(--clr-secondary);
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--clr-secondary), var(--clr-accent));
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 150, 218, 0.3);
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
    margin: 0;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
    margin-right: 0.2rem;
    margin-top: 0.5rem;
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--clr-primary);
    line-height: 1;
    font-family: var(--font-heading);
}

.pricing-price .period {
    color: var(--clr-text-light);
    font-size: 1rem;
    margin-top: 2rem;
    margin-left: 0.3rem;
}

.custom-price {
    align-items: center;
}

.custom-price .amount {
    font-size: 2.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.pricing-features {
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--clr-text);
}

.pricing-features li .text-green {
    color: var(--clr-accent);
}

.credit-impot-highlight {
    background: rgba(120, 190, 32, 0.1);
    padding: 0.8rem 1rem !important;
    border-radius: 6px;
    font-weight: 600;
    color: #4CAF50 !important;
    display: flex;
    align-items: flex-start !important;
    gap: 0.5rem;
    margin-top: 1.5rem !important;
    border: 1px dashed rgba(120, 190, 32, 0.3);
}

.credit-impot-highlight i {
    color: #4CAF50 !important;
    margin-top: 0.2rem;
}

.w-100 {
    width: 100%;
}

.mt-4 {
    margin-top: 2rem;
}

.credit-impot-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(120, 190, 32, 0.1) 0%, rgba(120, 190, 32, 0.05) 100%);
    border: 1px solid rgba(120, 190, 32, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.banner-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-light));
    color: white;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(120, 190, 32, 0.3);
}

.banner-content h4 {
    color: var(--clr-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.banner-content p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--clr-text);
}

/* =========================================
   SPECIAL OFFER BADGE
========================================= */
.special-offer-badge {
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
    border: 1px dashed rgba(243, 156, 18, 0.4);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.special-offer-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.2);
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.15) 0%, rgba(243, 156, 18, 0.15) 100%);
}

.special-offer-badge .offer-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
}

.special-offer-badge .offer-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.special-offer-badge .offer-text strong {
    color: #d35400;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.special-offer-badge .offer-text span {
    color: var(--clr-text);
    font-size: 0.9rem;
    font-weight: 500;
}

/* =========================================
   RÉALISATIONS GALLERY
========================================= */
.realisations {
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 2rem auto 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-track-wrapper {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    flex-grow: 1;
    background: #fff;
    padding: 10px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item {
    min-width: 100%;
    position: relative;
    display: flex;
}

.carousel-slide {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    background-color: #f8f9fa;
}

.photo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
}

.badge-avant {
    background-color: rgba(231, 76, 60, 0.9);
    /* Red */
    border: 2px solid #e74c3c;
}

.badge-apres {
    background-color: rgba(46, 204, 113, 0.9);
    /* Green */
    border: 2px solid #2ecc71;
}

.carousel-btn {
    background: white;
    color: var(--clr-primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--clr-secondary);
    color: white;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--clr-border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--clr-secondary);
    transform: scale(1.3);
}

@media screen and (max-width: 768px) {
    .carousel-slide {
        height: 300px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-container {
        gap: 0.5rem;
    }

    .photo-badge {
        font-size: 0.9rem;
        padding: 6px 12px;
        top: 15px;
        left: 15px;
    }
}

/* =========================================
   CTA SECTION
========================================= */
.cta-section {
    background-color: var(--clr-primary);
    color: white;
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.cta-bg-shape {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 150, 218, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-btn {
    background-color: white;
    color: var(--clr-primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
    background-color: var(--clr-bg-alt);
    color: var(--clr-secondary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* =========================================
   CONTACT SECTION
========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--clr-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--clr-bg-alt);
    color: var(--clr-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-details p {
    color: var(--clr-text-light);
    margin: 0;
}

.info-details a:hover {
    color: var(--clr-secondary);
}

.glass-panel {
    background: var(--clr-bg);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--clr-border);
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.required {
    color: #e53e3e;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius-sm);
    background-color: var(--clr-bg-alt);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-secondary);
    background-color: var(--clr-bg);
    box-shadow: 0 0 0 3px rgba(0, 150, 218, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* =========================================
   FOOTER
========================================= */
.footer {
    background-color: var(--clr-primary);
    color: white;
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo .brand-name {
    color: white;
}

.footer-desc {
    margin-top: 1.5rem;
    opacity: 0.8;
    max-width: 350px;
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--clr-secondary);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--clr-secondary);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--clr-secondary);
    padding-left: 5px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

.flex-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.flex-footer p {
    opacity: 0.8;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    opacity: 0.8;
}

.legal-links a:hover {
    opacity: 1;
    color: var(--clr-secondary);
}

/* =========================================
   ANIMATIONS & REVEAL CLASSES
========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-up.active {
    opacity: 1;
    transform: translate(0);
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media screen and (max-width: 992px) {

    .auto-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .why-image {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-1 {
        top: 20px;
        left: 20px;
    }

    .stat-2 {
        bottom: 20px;
        right: 20px;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --section-padding: 4rem 1.5rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background-color: var(--clr-bg);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        color: var(--clr-text);
        font-size: 1.2rem;
    }

    .nav-btn {
        margin-top: 1rem;
    }

    .form-group-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .glass-panel {
        padding: 2rem 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
    }
}