* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-dark: #0a1628;
    --blue-mid: #0e3d7a;
    --blue-light: #1565c0;
    --blue-bright: #2196f3;
    --yellow: #c8e600;
    --yellow-dark: #a0b800;
    --green: #66bb6a;
    --white: #ffffff;
    --text-light: #cce0ff;
    --text-muted: #8aadd4;
    --card-bg: rgba(14, 61, 122, 0.4);
    --card-border: rgba(33, 150, 243, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    background: var(--blue-dark);
    color: var(--white);
    line-height: 1.6;
}

/* PARTICLES BACKGROUND */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.stars span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: twinkle 3s infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.2; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

/* NAVBAR */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.98) 0%, rgba(10, 22, 40, 0.9) 100%);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--card-border);
    z-index: 1000;
    padding: 0 2rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 2px;
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.logo .cc {
    color: var(--white);
}

.logo .net-auto {
    color: var(--yellow);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--yellow);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--yellow);
    font-weight: 700;
    font-size: 0.95rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 2rem 2rem;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 50%, var(--blue-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(33, 150, 243, 0.15) 0%, transparent 70%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(0deg, var(--blue-dark) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.hero-logo {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
    letter-spacing: 4px;
}

.hero-logo .cc {
    color: var(--white);
}

.hero-logo .net-auto {
    color: var(--yellow);
}

.hero-swoosh {
    width: 300px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--blue-bright), transparent);
    margin: 0.5rem auto 1.5rem;
    border-radius: 2px;
}

.hero-badge {
    display: inline-block;
    background: rgba(200, 230, 0, 0.15);
    border: 2px solid var(--yellow);
    border-radius: 8px;
    padding: 0.6rem 1.8rem;
    margin-bottom: 1rem;
}

.hero-badge span {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badge .express {
    color: var(--yellow);
    font-weight: 900;
}

.hero .rdv-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 0.4rem 1.2rem;
    margin-bottom: 1.5rem;
    margin-left: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero .subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* PROMO BANNER */
.promo-banner {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(102, 187, 106, 0.15) 0%, rgba(200, 230, 0, 0.12) 100%);
    border-top: 2px solid rgba(200, 230, 0, 0.4);
    border-bottom: 2px solid rgba(200, 230, 0, 0.4);
    padding: 1.5rem 2rem;
    text-align: center;
}

.promo-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.promo-icon {
    font-size: 2rem;
}

.promo-text {
    font-size: 1.15rem;
    color: var(--white);
    font-weight: 600;
}

.promo-free {
    color: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-code-box {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(10, 22, 40, 0.6);
    border: 2px dashed var(--yellow);
    border-radius: 10px;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.promo-code {
    color: var(--yellow);
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: 3px;
}

.promo-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

@media (max-width: 600px) {
    .promo-text {
        font-size: 1rem;
    }
    .promo-code {
        font-size: 1.1rem;
    }
}

.hero-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.hero-phone .phone-icon {
    background: var(--yellow);
    color: var(--blue-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.btn {
    display: inline-block;
    padding: 15px 42px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    font-family: inherit;
}

.btn-primary {
    background: var(--yellow);
    color: var(--blue-dark);
}

.btn-primary:hover {
    background: var(--yellow-dark);
    box-shadow: 0 0 35px rgba(200, 230, 0, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 1rem;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--blue-dark);
}

/* NOUVEAUTE BANNER */
#nouveaute {
    background: linear-gradient(180deg, var(--blue-dark) 0%, rgba(102, 187, 106, 0.12) 50%, var(--blue-dark) 100%);
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
}

.nouveaute-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 2px solid var(--green);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.nouveaute-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    border-radius: 0 0 4px 4px;
}

.nouveaute-badge {
    display: inline-block;
    background: rgba(102, 187, 106, 0.15);
    border: 2px solid var(--green);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green);
}

.nouveaute-card h2 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.nouveaute-card h2 .highlight {
    color: var(--green);
}

.nouveaute-card .nouveaute-intro {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.nouveaute-card .nouveaute-intro strong {
    color: var(--white);
}

.nouveaute-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue-bright);
    margin-bottom: 1rem;
}

.nouveaute-checklist {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.nouveaute-checklist li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.nouveaute-checklist li .check-green {
    width: 28px;
    height: 28px;
    background: rgba(102, 187, 106, 0.12);
    border: 1px solid rgba(102, 187, 106, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    color: var(--green);
}

.nouveaute-eco {
    background: rgba(102, 187, 106, 0.08);
    border: 1px solid rgba(102, 187, 106, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.nouveaute-eco p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.nouveaute-eco strong {
    color: var(--green);
}

.nouveaute-vehicles {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.nouveaute-cta {
    text-align: center;
    padding: 1.5rem;
    background: rgba(102, 187, 106, 0.08);
    border: 1px solid rgba(102, 187, 106, 0.2);
    border-radius: 12px;
}

.nouveaute-cta p {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
}

.nouveaute-cta strong {
    color: var(--green);
}

.btn-green {
    background: var(--green);
    color: var(--blue-dark);
    margin-top: 1rem;
}

.btn-green:hover {
    background: #4caf50;
    box-shadow: 0 0 35px rgba(102, 187, 106, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .nouveaute-card {
        padding: 2rem 1.5rem;
    }

    .nouveaute-card h2 {
        font-size: 1.3rem;
    }

    .nouveaute-checklist {
        grid-template-columns: 1fr;
    }
}

/* SECTIONS */
section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-title h2 span {
    color: var(--yellow);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* SERVICES */
#services {
    background: linear-gradient(180deg, var(--blue-dark) 0%, rgba(14, 61, 122, 0.2) 50%, var(--blue-dark) 100%);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.services-grid .service-card {
    width: calc(25% - 1.5rem);
}

@media (max-width: 1100px) {
    .services-grid .service-card {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 600px) {
    .services-grid .service-card {
        width: 100%;
    }
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.service-card:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(200, 230, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: var(--yellow);
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* PRICING */
#tarifs {
    background: linear-gradient(180deg, var(--blue-dark) 0%, rgba(14, 61, 122, 0.15) 100%);
}

.pricing-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.pricing-table thead th {
    padding: 1.3rem 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 2px solid var(--card-border);
    font-weight: 700;
}

.pricing-table thead th:first-child {
    text-align: left;
    color: var(--text-muted);
}

.pricing-table thead th:not(:first-child) {
    text-align: center;
}

.pricing-table .col-express {
    color: var(--yellow);
}

.pricing-table .col-soigne {
    color: var(--blue-bright);
}

.pricing-table .col-premium {
    color: var(--green);
}

.pricing-table .col-premium small {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0;
}

.pricing-table tbody td {
    padding: 1rem;
    border-bottom: 1px solid rgba(33, 150, 243, 0.12);
    font-size: 0.95rem;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody td:first-child {
    color: var(--text-light);
    font-weight: 600;
}

.pricing-table tbody td:not(:first-child) {
    text-align: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
}

.pricing-table tbody tr {
    transition: background 0.2s;
}

.pricing-table tbody tr:hover {
    background: rgba(33, 150, 243, 0.08);
}

.pricing-table .sur-devis {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* OPTIONS */
.options-title {
    text-align: center;
    margin: 3rem 0 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.option-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.option-card:hover {
    border-color: var(--yellow);
    transform: translateY(-3px);
}

.option-card .option-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.option-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    color: var(--text-light);
}

.option-card .option-price {
    color: var(--yellow);
    font-weight: 800;
    font-size: 1rem;
}

/* ABOUT */
#apropos {
    background: linear-gradient(180deg, var(--blue-dark) 0%, rgba(14, 61, 122, 0.2) 50%, var(--blue-dark) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--yellow);
    font-weight: 800;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.stat-box:hover {
    border-color: var(--yellow);
    transform: translateY(-3px);
}

.stat-box .number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--yellow);
    display: block;
}

.stat-box .label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.3rem;
    font-weight: 600;
}

/* FACEBOOK */
#facebook {
    background: linear-gradient(180deg, var(--blue-dark) 0%, rgba(14, 61, 122, 0.2) 50%, var(--blue-dark) 100%);
}

/* FACEBOOK FEED CUSTOM */
.fb-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto 2.5rem;
}

.fb-icon-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fb-icon-circle {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1877f2, #0d5bbf);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

.fb-icon-row h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
}

.fb-icon-row h3 span {
    color: var(--yellow);
}

.btn-facebook {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #1877f2, #0d5bbf);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.25);
}

.btn-facebook:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.fb-feed {
    max-width: 1100px;
    margin: 0 auto;
    min-height: 200px;
}

.fb-feed-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem;
    color: var(--text-muted);
}

.fb-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(24, 119, 242, 0.2);
    border-top-color: #1877f2;
    border-radius: 50%;
    animation: fb-spin 0.8s linear infinite;
}

@keyframes fb-spin {
    to { transform: rotate(360deg); }
}

.fb-feed-empty,
.fb-feed-error {
    text-align: center;
    color: var(--text-muted);
    padding: 2rem;
    font-size: 0.95rem;
}

.fb-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.fb-post-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: var(--white);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    position: relative;
}

.fb-post-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #1877f2, transparent);
}

.fb-post-card:hover {
    transform: translateY(-4px);
    border-color: rgba(24, 119, 242, 0.5);
    box-shadow: 0 16px 40px rgba(24, 119, 242, 0.15);
}

.fb-post-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.fb-post-body {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.fb-post-meta {
    font-size: 0.78rem;
    color: #1877f2;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fb-post-text {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}

.fb-post-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1877f2;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: auto;
}

@media (max-width: 900px) {
    .fb-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .fb-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .fb-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* CONTACT */
#contact {
    background: linear-gradient(180deg, var(--blue-dark) 0%, rgba(14, 61, 122, 0.15) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    min-height: 400px;
}

.map-container iframe {
    min-height: 400px;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--yellow);
    font-weight: 800;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item .icon {
    width: 48px;
    height: 48px;
    background: rgba(200, 230, 0, 0.1);
    border: 1px solid rgba(200, 230, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item .details span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.contact-item .details p {
    font-size: 0.95rem;
    color: var(--white);
}

/* FOOTER */
footer {
    background: rgba(10, 22, 40, 0.95);
    border-top: 2px solid var(--card-border);
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

footer a {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 700;
}

/* COOKIE BANNER */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 22, 40, 0.97);
    border-top: 2px solid var(--card-border);
    backdrop-filter: blur(12px);
    z-index: 3000;
    padding: 1.5rem 2rem;
}

.cookie-banner.active {
    display: block;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.cookie-text strong {
    color: var(--white);
}

.cookie-text a {
    color: var(--yellow);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.cookie-btn-accept {
    background: var(--yellow);
    color: var(--blue-dark);
}

.cookie-btn-accept:hover {
    background: var(--yellow-dark);
    box-shadow: 0 0 20px rgba(200, 230, 0, 0.3);
}

.cookie-btn-refuse {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
}

.cookie-btn-refuse:hover {
    border-color: var(--white);
    color: var(--white);
}

@media (max-width: 768px) {
    .cookie-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* MODAL MENTIONS LEGALES */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--blue-dark);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 3rem;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.modal-close:hover {
    color: var(--yellow);
}

.modal h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--yellow);
}

.modal h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 1.8rem 0 0.6rem;
    color: var(--white);
}

.modal p, .modal li {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.modal ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.modal .placeholder {
    color: var(--yellow);
    font-weight: 700;
    background: rgba(200, 230, 0, 0.1);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--yellow);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: rgba(10, 22, 40, 0.98);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1rem;
        border-bottom: 2px solid var(--card-border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-phone {
        display: none;
    }

    .hero {
        min-height: 100svh;
        padding: 90px 1.2rem 2rem;
        align-items: flex-start;
    }

    .hero-content {
        padding-top: 1rem;
    }

    .hero-logo {
        font-size: 2.4rem;
        letter-spacing: 2px;
    }

    .hero-swoosh {
        width: 200px;
        margin: 0.4rem auto 1rem;
    }

    .hero-badge {
        padding: 0.4rem 1.2rem;
        margin-bottom: 0.5rem;
    }

    .hero-badge span {
        font-size: 0.9rem;
    }

    .hero .rdv-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
        margin-left: 0.3rem;
    }

    .hero-phone {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }

    .hero-phone .phone-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .hero .subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.85rem;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .pricing-table,
    .pricing-table thead,
    .pricing-table tbody,
    .pricing-table tr,
    .pricing-table th,
    .pricing-table td {
        display: block;
    }

    .pricing-table thead {
        display: none;
    }

    .pricing-table tbody tr {
        background: var(--card-bg);
        border: 1px solid var(--card-border);
        border-radius: 12px;
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .pricing-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.4rem 0;
        border-bottom: 1px solid rgba(33, 150, 243, 0.1);
        font-size: 0.9rem;
    }

    .pricing-table tbody td:last-child {
        border-bottom: none;
    }

    .pricing-table tbody td:first-child {
        font-size: 1.05rem;
        font-weight: 800;
        color: var(--white);
        margin-bottom: 0.3rem;
        justify-content: center;
    }

    .pricing-table tbody td:not(:first-child)::before {
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .pricing-table tbody td:nth-child(2)::before {
        content: "Express";
        color: var(--yellow);
    }

    .pricing-table tbody td:nth-child(3)::before {
        content: "Soigné";
        color: var(--blue-bright);
    }

    .pricing-table tbody td:nth-child(4)::before {
        content: "Premium";
        color: var(--green);
    }

    .pricing-table tbody td:not(:first-child) {
        text-align: right;
        font-size: 1rem;
    }

    .map-container {
        min-height: 350px;
    }

    .map-container iframe {
        min-height: 350px;
    }

    .options-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-badge, .hero .rdv-tag {
        font-size: 0.85rem;
    }

    .modal {
        padding: 2rem 1.5rem;
        max-height: 90vh;
    }

    .modal h2 {
        font-size: 1.3rem;
        padding-right: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* LEGAL PAGES */
.legal-page {
    padding-top: 120px;
    padding-bottom: 4rem;
    min-height: calc(100vh - 80px);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 3rem;
}

.legal-content h2 {
    color: var(--yellow);
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    color: var(--text-light);
    margin-bottom: 0.4rem;
}

.legal-content a {
    color: var(--blue-bright);
    text-decoration: underline;
}

.legal-back {
    margin-top: 2.5rem;
    text-align: center;
}

@media (max-width: 600px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }
}
