/* Reset et variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
}

:root {
    --primary-color: #262e45;      /* Titres / éléments forts */
    --primary: #2d0068;             /* Pour le footer */
    --secondary-color: #d15148;    /* CTA principal */
    --accent-color: #f07d46;       /* Hover / accents orange */
    --soft-accent: #258a70;        /* CTA secondaire */
    --card-bg: #b5d9b5;            /* Fonds doux */
    --text-color: #262e45;
    --light-bg: #ffeed3;           /* Fond général */
    --white: #ffffff;
    --border-color: rgba(38, 46, 69, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Optimisation des images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Amélioration du rendu */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Images hero - chargement prioritaire */
img[fetchpriority="high"] {
    will-change: contents;
}

/* Images avec lazy loading */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

.main-content,
main {
    flex: 1 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Style général pour les section-label sur toutes les pages */
.section-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding: 0.6rem 1.8rem;
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.12), rgba(209, 81, 72, 0.08));
    border-radius: 50px;
    border: 2px solid rgba(209, 81, 72, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(209, 81, 72, 0.1);
    position: relative;
    overflow: hidden;
}

.section-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.section-label:hover {
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.18), rgba(209, 81, 72, 0.12));
    border-color: rgba(209, 81, 72, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(209, 81, 72, 0.2);
}

.section-label:hover::before {
    left: 100%;
}

/* Header et Navigation */
header {
    background: transparent;
    padding: 2.5rem 0 1.5rem 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.navbar {
    background: var(--white);
    border-radius: 999px;
    padding: 0.55rem 1.25rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    max-width: 1100px;
    margin: 0 auto;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.nav-profile {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
}

.nav-profile-name {
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.02em;
    margin: 0;
    background: linear-gradient(120deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: brandGlow 6s ease infinite;
}

@keyframes brandGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--accent-color);
}

.nav-menu a.active::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-reserve-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
    margin-left: 1.25rem;
    margin-right: 1.25rem;
}

.nav-reserve-btn:hover {
    background: var(--accent-color);
}

.nav-reserve-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: var(--white);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    margin-top: 0;
    padding-top: 120px;
    padding-bottom: 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/massage-corps-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top right, rgba(38, 46, 69, 0.7) 0%, rgba(38, 46, 69, 0.4) 40%, transparent 70%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-left: 60px;
    padding-right: 60px;
}

.hero-content {
    max-width: 900px;
    padding: 0;
    text-align: center;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-align: center;
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(209, 81, 72, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(209, 81, 72, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Boutons CTA modernes */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn-cta span {
    position: relative;
    z-index: 2;
}

.btn-cta i {
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(209, 81, 72, 0.25);
    border: 2px solid transparent;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(209, 81, 72, 0.35);
}

.btn-cta-primary:hover i {
    transform: translateX(4px);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-cta-secondary:hover i {
    transform: translateX(4px);
}

/* Boutons CTA dans le carrousel - taille réduite */
.carousel-card-content .btn-cta {
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
    margin-top: 0.75rem;
}

.carousel-card-content .btn-cta i {
    font-size: 0.8rem;
}

/* Hero Section Massages */
.massages-hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 120px;
    padding-bottom: 0;
}

.massages-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.massages-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.massages-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(38, 46, 69, 0.85) 0%, rgba(38, 46, 69, 0.7) 100%);
}

.massages-hero-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.massages-hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    color: var(--white);
}

.massages-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.massages-hero-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Indicateur de scroll animé */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    z-index: 10;
    animation: fadeInUpCentered 1s ease-out 1.5s both;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-indicator-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-align: center;
    width: auto;
}

.scroll-indicator-content:hover {
    transform: translateY(5px);
}

.scroll-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    animation: pulse 2s ease-in-out infinite;
    text-align: center;
    display: block;
    width: 100%;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.scroll-arrow i {
    color: var(--white);
    font-size: 1rem;
    animation: arrowMove 2s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpCentered {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes arrowMove {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* Section Prestations détaillées */
.massages-details {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.massage-detail-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    scroll-margin-top: 100px;
}

.massage-detail-card:hover {
    box-shadow: 0 12px 40px rgba(38, 46, 69, 0.12);
    border-color: rgba(240, 125, 70, 0.2);
    transform: translateY(-4px);
}

.massage-detail-header {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(38, 46, 69, 0.08);
}

.massage-detail-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 30px rgba(38, 46, 69, 0.25);
}

.massage-detail-title-wrapper {
    flex: 1;
}

.massage-detail-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.massage-detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.massage-detail-subtitle {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.massage-detail-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.8;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(240, 125, 70, 0.1);
    border-radius: 20px;
}

.massage-detail-duration i {
    color: var(--accent-color);
}

.massage-detail-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.massage-detail-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.massage-detail-description {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.massage-detail-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.85;
    margin: 0;
}

.massage-detail-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 238, 211, 0.3);
    border-radius: 16px;
}

.massage-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-icon {
    color: var(--accent-color);
    font-size: 0.5rem;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.step-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.85;
    margin: 0;
}

.massage-detail-objective {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(37, 138, 112, 0.1), rgba(240, 125, 70, 0.1));
    border-radius: 16px;
    border-left: 4px solid var(--soft-accent);
}

.massage-detail-objective h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.75rem 0;
}

.massage-detail-objective p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.85;
    margin: 0;
}

.massage-detail-personalization {
    padding: 1.5rem;
    background: rgba(240, 125, 70, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(240, 125, 70, 0.2);
}

.massage-detail-personalization p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.9;
    margin: 0;
    font-style: italic;
}

.massage-detail-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 238, 211, 0.3);
    border-radius: 12px;
}

.feature-item i {
    color: var(--soft-accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.85;
}

.massage-detail-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.massage-tab {
    padding: 1.5rem;
    background: rgba(255, 238, 211, 0.3);
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.massage-tab:hover {
    border-color: rgba(240, 125, 70, 0.3);
    transform: translateY(-2px);
}

.tab-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tab-header i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.tab-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.tab-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.85;
    margin: 0;
}

.massage-detail-highlight {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(37, 138, 112, 0.1), rgba(240, 125, 70, 0.1));
    border-radius: 16px;
    border-left: 4px solid var(--soft-accent);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--soft-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
}

.highlight-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.85;
    margin: 0;
}

.massage-detail-benefits {
    padding: 2rem;
    background: rgba(255, 238, 211, 0.3);
    border-radius: 16px;
}

.massage-detail-benefits h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--white);
    border-radius: 10px;
}

.benefit-item i {
    color: var(--soft-accent);
    font-size: 0.9rem;
}

.benefit-item span {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.benefits-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.85;
    margin: 0;
}

.massage-detail-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 238, 211, 0.3);
    border-radius: 16px;
}

.spec-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.spec-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
}

.spec-content p {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

.massage-detail-note {
    padding: 1.5rem;
    background: rgba(240, 125, 70, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--accent-color);
}

.massage-detail-note p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.85;
    margin: 0;
}

.massage-detail-cta {
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(38, 46, 69, 0.08);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Content Section */
.content {
    padding: 3rem 0;
}

.content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.content p {
    color: var(--primary-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Section Statistiques / Social Proof */
.stats-section {
    padding: 4rem 0;
    background-color: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.stats-grid::before,
.stats-grid::after {
    content: '';
    position: absolute;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.08), transparent);
}

.stats-grid::before {
    left: calc(33.333% - 1.5rem);
}

.stats-grid::after {
    right: calc(33.333% - 1.5rem);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.stat-avatars {
    margin-bottom: 1.5rem;
}

.avatar-stack {
    position: relative;
    width: 80px;
    height: 40px;
    margin: 0 auto;
}

.avatar-circle {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--white);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.avatar-circle.avatar-1 {
    left: 0;
    z-index: 3;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.avatar-circle.avatar-2 {
    left: 20px;
    z-index: 2;
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.avatar-circle.avatar-3 {
    left: 40px;
    z-index: 1;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.stat-icon {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i.fa-star {
    color: #ffc107;
}

.stat-icon i.fa-map-marker-alt {
    color: var(--secondary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.stat-text {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
    opacity: 0.8;
    max-width: 250px;
    margin: 0 auto;
}

/* Section Types de massages */
.massage-types {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.massage-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.massage-type-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.massage-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.massage-type-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.massage-type-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.massage-type-subtitle {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.massage-type-description {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.massage-type-link {
    display: inline-block;
    font-size: 1.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.massage-type-link:hover {
    transform: translateX(5px);
}

/* Section Présentation Lucile */
.lucile-presentation {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.lucile-presentation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.lucile-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lucile-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: var(--white);
    padding: 1rem;
}

.lucile-profile-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

.lucile-content {
    padding: 2rem 0;
}

.lucile-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.lucile-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.lucile-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.lucile-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.lucile-signature-container {
    margin-bottom: 2.5rem;
    padding: 1rem 0;
}

.lucile-signature {
    max-width: 200px;
    height: auto;
    opacity: 0.9;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

/* Section Prestations de massage - Preview */
.massage-services-preview {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(255, 255, 255, 0.8) 100%);
    position: relative;
}

.massage-services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(240, 125, 70, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(37, 138, 112, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.services-preview-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.section-number {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.services-preview-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.services-preview-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.85;
}

.services-preview-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 4rem 0;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 100px;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 0;
    perspective: 1000px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-card-inner {
    position: relative;
    background: var(--white);
    border-radius: 28px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 2px solid transparent;
    overflow: hidden;
}

.carousel-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color), var(--soft-accent));
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.carousel-card.active .carousel-card-inner {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 20px 60px rgba(38, 46, 69, 0.15);
    border-color: rgba(240, 125, 70, 0.3);
    z-index: 10;
}

.carousel-card.active .carousel-card-inner::before {
    transform: scaleX(1);
}

.carousel-card.prev {
    transform: translateX(-20px) scale(0.95);
    opacity: 0.7;
}

.carousel-card.next {
    transform: translateX(20px) scale(0.95);
    opacity: 0.7;
}

.carousel-card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 30px rgba(38, 46, 69, 0.25);
    transition: all 0.6s ease;
    position: relative;
}

.carousel-card.active .carousel-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(38, 46, 69, 0.35);
}

.carousel-card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.carousel-card-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.carousel-card-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.carousel-card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.85;
    margin: 0.5rem 0;
    flex: 1;
}

.carousel-card-duration {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.7;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(240, 125, 70, 0.1);
    border-radius: 20px;
    width: fit-content;
    margin: 0 auto;
}

.carousel-card-duration i {
    color: var(--accent-color);
}

.carousel-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(209, 81, 72, 0.3);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.carousel-card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(209, 81, 72, 0.4);
}

.carousel-card-link i {
    transition: transform 0.3s ease;
}

.carousel-card-link:hover i {
    transform: translateX(5px);
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 2px solid rgba(38, 46, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    color: var(--primary-color);
    font-size: 1.3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-nav-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(209, 81, 72, 0.4);
}

.carousel-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav-prev {
    left: 20px;
}

.carousel-nav-next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(38, 46, 69, 0.2);
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
    position: relative;
}

.carousel-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.carousel-dot:hover::before {
    border-color: var(--accent-color);
}

.carousel-dot.active {
    background: var(--secondary-color);
    width: 36px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(209, 81, 72, 0.4);
}

.carousel-dot.active::before {
    border-color: var(--secondary-color);
}


/* Section Processus Moderne */
.modern-process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(255, 255, 255, 0.5) 100%);
    position: relative;
    overflow: hidden;
}

.modern-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(240, 125, 70, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(37, 138, 112, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.process-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.process-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.process-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
}

.process-cards-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.process-card-modern {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.process-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.process-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(38, 46, 69, 0.15);
    border-color: rgba(240, 125, 70, 0.2);
}

.process-card-modern:hover::before {
    transform: scaleX(1);
}

.card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(38, 46, 69, 0.05);
    line-height: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(38, 46, 69, 0.2);
    transition: transform 0.3s ease;
}

.process-card-modern:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.85;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    margin-top: auto;
    flex-shrink: 0;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-main .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-section h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

/* Logo et description */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    margin-right: 0;
    object-fit: contain;
    background: transparent;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.logo-accent {
    color: var(--accent-color);
}

.footer-description {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 15px;
    max-width: none;
    margin-bottom: 1.5rem;
}

.footer-contact-info {
    margin-top: 1rem;
}

.footer-contact-info .contact-email,
.footer-contact-info .contact-phone {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    font-size: 14px;
}

.footer-contact-info .contact-email i,
.footer-contact-info .contact-phone i {
    margin-right: 0.5rem;
    color: var(--accent-color);
    width: 16px;
    text-align: center;
    font-size: 14px;
}

.footer-contact-info .contact-email a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info .contact-email a:hover {
    color: #ffffff;
}

.footer-social-contact {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-contact h5 {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 0, 104, 0.3);
}

.social-link i {
    font-size: 1.1rem;
    color: #ffffff;
}

/* Liens rapides */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

/* Contact */
.footer-contact {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #e0e0e0;
}

.contact-item i {
    color: var(--accent-color);
    width: 20px;
    margin-right: 12px;
    font-size: 16px;
    min-width: 20px;
    text-align: center;
}

.contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: white;
}

/* Footer bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links {
    display: flex;
    list-style: none;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.legal-links a:hover {
    color: white;
}

.footer-copyright {
    color: #b0b0b0;
    font-size: 13px;
}

.footer-copyright p {
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-container {
        flex-wrap: wrap;
        position: relative;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        margin-top: 1rem;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        gap: 0;
        width: 100%;
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        border-radius: 8px;
        width: 100%;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a:hover {
        background: var(--light-bg);
        transform: none;
    }

    .nav-reserve-btn {
        display: none;
    }

    .nav-reserve-btn.mobile {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        margin: 0.75rem 0 0 0;
        background: var(--secondary-color);
        padding: 0.7rem 1rem;
    }

    .nav-reserve-btn.mobile .nav-reserve-icon {
        display: none;
    }

    .navbar {
        padding: 0.85rem 1.25rem;
        margin: 0 1rem;
    }

    .nav-profile-name {
        font-size: 1.1rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-main {
        padding: 2.5rem 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    header {
        padding: 1rem 0;
    }

    .navbar {
        padding: 0.65rem 0.85rem;
        margin: 0 0.75rem;
    }

    .nav-logo {
        height: 50px;
    }

    .hero {
        margin-top: 0;
        padding-top: 100px;
        padding-bottom: 0;
        height: 100vh;
    }

    .hero-container {
        padding-left: 30px;
        padding-right: 30px;
        height: 100%;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-label {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-cta {
        width: 100%;
        padding: 0.8rem 1.75rem;
        font-size: 0.9rem;
    }

    .btn {
        width: 100%;
    }

    .massages-hero {
        height: 100vh;
        min-height: 400px;
        margin-top: 0;
        padding-top: 100px;
        padding-bottom: 0;
    }

    .massages-hero-content h1 {
        font-size: 2.5rem;
    }

    .massages-hero-content p {
        font-size: 1.1rem;
    }

    .scroll-indicator {
        bottom: 1.5rem;
        left: 50%;
        animation: fadeInUpCentered 1s ease-out 1.5s both;
        justify-content: center;
    }

    .scroll-text {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .scroll-arrow {
        width: 36px;
        height: 36px;
    }

    .scroll-arrow i {
        font-size: 0.9rem;
    }

    .massages-details {
        padding: 3rem 0;
    }

    .massage-detail-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .massage-detail-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .massage-detail-icon {
        margin: 0 auto;
    }

    .massage-detail-title {
        font-size: 2rem;
    }

    .massage-detail-tabs {
        grid-template-columns: 1fr;
    }

    .massage-detail-specs {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 2rem 0;
    }

    .stats-section {
        padding: 3rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .stats-grid::before,
    .stats-grid::after {
        display: none;
    }

    .stat-item {
        padding: 1.5rem 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-text {
        max-width: 100%;
    }

    .massage-types {
        padding: 3rem 0;
    }

    .massage-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .massage-type-card {
        padding: 2rem 1.5rem;
    }

    .lucile-presentation {
        padding: 4rem 0;
    }

    .lucile-presentation-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .lucile-image-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }

    .lucile-name {
        font-size: 1.75rem;
    }

    .lucile-title {
        font-size: 2rem;
    }

    .lucile-subtitle {
        font-size: 1.2rem;
    }

    .lucile-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .lucile-signature {
        max-width: 150px;
    }

    .massage-services-preview {
        padding: 4rem 0;
    }

    .services-preview-header {
        margin-bottom: 3rem;
    }

    .services-preview-header h2 {
        font-size: 2.5rem;
    }

    .services-preview-subtitle {
        font-size: 1rem;
    }

    .services-preview-wrapper {
        padding: 3rem 0;
    }

    .carousel-container {
        padding: 0 70px;
    }

    .carousel-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .carousel-card-inner {
        padding: 2.5rem 2rem;
    }

    .carousel-card-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .carousel-card-title {
        font-size: 1.6rem;
    }

    .carousel-card-description {
        font-size: 0.95rem;
    }

    .carousel-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .carousel-nav-prev {
        left: 10px;
    }

    .carousel-nav-next {
        right: 10px;
    }

    @media (max-width: 768px) {
        .carousel-container {
            padding: 0 60px;
        }

        .carousel-card {
            flex: 0 0 100%;
        }

        .carousel-card-inner {
            padding: 2rem 1.5rem;
        }

        .carousel-card-icon {
            width: 70px;
            height: 70px;
            font-size: 1.8rem;
        }

        .carousel-card-title {
            font-size: 1.4rem;
        }

        .carousel-nav-btn {
            width: 45px;
            height: 45px;
            font-size: 1rem;
        }
    }


    .modern-process-section {
        padding: 4rem 0;
    }

    .process-header {
        margin-bottom: 3rem;
    }

    .process-main-title {
        font-size: 2.5rem;
    }

    .process-description {
        font-size: 1rem;
    }

    .process-cards-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .process-card-modern {
        padding: 2rem 1.5rem;
    }

    .card-number {
        font-size: 2.5rem;
        top: 1rem;
        right: 1rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-description {
        font-size: 0.9rem;
    }

    @media (max-width: 640px) {
        .process-cards-modern {
            grid-template-columns: 1fr;
        }
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .content {
        padding: 2rem 0;
    }

    .content h2 {
        font-size: 1.5rem;
    }

    .content p {
        font-size: 1rem;
    }

    .footer {
        margin-top: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .footer-main .container {
        padding: 0 20px;
    }
    
    .footer-bottom .container {
        padding: 0 20px;
    }
    
    .footer-description {
        max-width: none;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
    
    .footer-social-contact {
        margin-top: 1rem;
        padding-top: 0.75rem;
    }
    
    .footer-social-contact h5 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .nav-profile-name {
        font-size: 1rem;
    }
}

/* Section Prestations de massage - Grille moderne */
.massages-prestations {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-light) 100%);
    position: relative;
}

.massages-prestations-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.massages-prestations-header .section-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background-color: rgba(209, 81, 72, 0.1);
    border-radius: 50px;
}

.massages-prestations-header .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.massages-prestations-header .section-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

.massages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.massage-prestation-card {
    background-color: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(38, 46, 69, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.massage-prestation-card-full {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    margin-bottom: 3rem;
    max-width: 100%;
}

.massage-prestation-card-full .massage-prestation-image-wrapper {
    flex: 0 0 45%;
    max-width: 45%;
    height: auto;
    min-height: 400px;
}

.massage-prestation-card-full .massage-prestation-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.massage-prestation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(38, 46, 69, 0.15);
}

.massage-prestation-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.massage-prestation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.massage-prestation-card:hover .massage-prestation-image {
    transform: scale(1.1);
}

.massage-prestation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(38, 46, 69, 0.4) 100%);
    transition: opacity 0.4s ease;
}

.massage-prestation-card:hover .massage-prestation-overlay {
    opacity: 0.7;
}

.massage-prestation-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(209, 81, 72, 0.3);
    z-index: 2;
}

.massage-prestation-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1rem;
}

.massage-prestation-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-top: -40px;
    position: relative;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(38, 46, 69, 0.2);
}

.massage-prestation-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0 0 0;
    line-height: 1.3;
}

.massage-prestation-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0.5rem 0;
}

.massage-prestation-duration i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.massage-prestation-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0.5rem 0;
    flex: 1;
}

.massage-prestation-objectives {
    background-color: var(--primary-light);
    padding: 1.25rem;
    border-radius: 12px;
    margin: 1rem 0;
}

.massage-prestation-objectives h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 0.75rem 0;
}

.massage-prestation-objectives ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.massage-prestation-objectives li {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-color);
    padding-left: 1.25rem;
    position: relative;
}

.massage-prestation-objectives li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1rem;
}

.massage-prestation-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(209, 81, 72, 0.25);
}

.massage-prestation-link:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(209, 81, 72, 0.35);
}

.massage-prestation-link i {
    transition: transform 0.3s ease;
}

.massage-prestation-link:hover i {
    transform: translateX(3px);
}

.massage-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0;
    margin-bottom: 4rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.massage-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.massage-card-media {
    flex: 0 0 45%;
    max-width: 45%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.massage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.massage-card:hover .massage-image {
    transform: scale(1.05);
}

.massage-card-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-left: -2rem;
    position: relative;
    z-index: 2;
}

.massage-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
}

.massage-meta {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
    margin: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(38, 46, 69, 0.1);
}

.massage-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

.massage-objectives {
    background-color: var(--primary-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 0.5rem;
}

.massage-objectives h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 1rem 0;
}

.massage-objectives ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.massage-objectives li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    padding-left: 1.5rem;
    position: relative;
}

.massage-objectives li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.massage-card-content .btn-cta {
    align-self: flex-start;
    margin-top: 0.5rem;
}

/* Responsive - Tablette */
@media (max-width: 968px) {
    .massage-card {
        flex-direction: column;
        gap: 0;
    }

    .massage-card-media {
        flex: 1;
        max-width: 100%;
        width: 100%;
        height: 300px;
    }

    .massage-card-content {
        padding: 2.5rem;
        margin-left: 0;
        margin-top: -1rem;
    }

    .massage-title {
        font-size: 2rem;
    }
}

/* Responsive - Tablette pour prestations */
@media (max-width: 968px) {
    .massages-prestations-header .section-title {
        font-size: 2.5rem;
    }

    .massages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .massage-prestation-card-full {
        flex-direction: column;
    }

    .massage-prestation-card-full .massage-prestation-image-wrapper {
        flex: 1;
        max-width: 100%;
        min-height: 300px;
    }

    .massage-prestation-card-full .massage-prestation-content {
        padding: 2.5rem;
    }
}

/* Responsive - Mobile pour prestations */
@media (max-width: 768px) {
    .massages-prestations {
        padding: 4rem 0;
    }

    .massages-prestations-header {
        margin-bottom: 3rem;
        padding: 0 1.5rem;
    }

    .massages-prestations-header .section-label {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }

    .massages-prestations-header .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .massages-prestations-header .section-description {
        font-size: 1rem;
    }

    .massages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .massage-prestation-image-wrapper {
        height: 240px;
    }

    .massage-prestation-content {
        padding: 1.75rem;
    }

    .massage-prestation-icon {
        margin-top: -20px;
    }

    .massage-prestation-title {
        font-size: 1.5rem;
    }

    .massage-prestation-link {
        width: 100%;
        justify-content: center;
    }

    .massage-prestation-card-full .massage-prestation-image-wrapper {
        min-height: 250px;
    }

    .massage-prestation-card-full .massage-prestation-content {
        padding: 2rem;
    }

    .massage-prestation-objectives {
        padding: 1rem;
    }

    .massage-prestation-objectives h4 {
        font-size: 0.95rem;
    }

    .massage-prestation-objectives li {
        font-size: 0.85rem;
    }
}

/* Section FAQ */
.faq-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.faq-header .section-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background-color: rgba(209, 81, 72, 0.1);
    border-radius: 50px;
}

.faq-header .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.faq-header .section-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(38, 46, 69, 0.08);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(38, 46, 69, 0.12);
}

.faq-question {
    width: 100%;
    padding: 1.75rem 2rem;
    background-color: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--secondary-color);
}

.faq-question span {
    flex: 1;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 2rem 1.75rem 2rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0 0 1rem 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.faq-answer li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.faq-answer li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }

    .faq-header {
        margin-bottom: 3rem;
        padding: 0 1.5rem;
    }

    .faq-header .section-label {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }

    .faq-header .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .faq-header .section-description {
        font-size: 1rem;
    }

    .faq-list {
        padding: 0 1.5rem;
        gap: 1rem;
    }

    .faq-question {
        padding: 1.5rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .faq-answer p,
    .faq-answer li {
        font-size: 0.95rem;
    }
}

/* ========================================
   Section Formulaire Bon Cadeau
   ======================================== */
.gift-card-form-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.gift-card-form-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gift-card-form-header .section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    background: rgba(209, 81, 72, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.gift-card-form-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gift-card-form-header .section-description {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.7;
}

/* Formulaire */
.gift-card-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.form-label i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(209, 81, 72, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
}

/* Style pour les champs téléphone invalides */
.form-input.invalid-phone {
    border-color: #d15148;
    background-color: rgba(209, 81, 72, 0.05);
}

.form-input.invalid-phone:focus {
    border-color: #d15148;
    box-shadow: 0 0 0 3px rgba(209, 81, 72, 0.1);
}

.phone-error-message {
    color: #d15148;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    animation: fadeInScale 0.3s ease-out;
}

/* Style pour les champs email invalides */
.form-input.invalid-email {
    border-color: #d15148;
    background-color: rgba(209, 81, 72, 0.05);
}

.form-input.invalid-email:focus {
    border-color: #d15148;
    box-shadow: 0 0 0 3px rgba(209, 81, 72, 0.1);
}

.email-error-message {
    color: #d15148;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    animation: fadeInScale 0.3s ease-out;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23262e45' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 3rem;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-section-divider {
    margin: 3rem 0 2rem 0;
    padding-top: 2rem;
    border-top: 2px solid #f3f4f6;
}

.form-section-divider h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

/* Résumé de commande */
.form-summary {
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.05) 0%, rgba(37, 138, 112, 0.05) 100%);
    border: 2px solid rgba(209, 81, 72, 0.15);
    border-radius: 16px;
    padding: 2rem;
    margin: 2.5rem 0;
}

.summary-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(209, 81, 72, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid rgba(209, 81, 72, 0.2);
}

.summary-label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1rem;
}

.summary-value {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

.summary-amount {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Protection anti-robots */
.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.security-question {
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.08) 0%, rgba(37, 138, 112, 0.08) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 20px;
    padding: 2rem;
    margin: 2.5rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.security-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.3), rgba(37, 138, 112, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.security-question:focus-within::before {
    opacity: 1;
}

.security-question:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(209, 81, 72, 0.15);
}

.security-question-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.security-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(209, 81, 72, 0.25);
    animation: pulseIcon 2s ease-in-out infinite;
}

.security-icon-wrapper i {
    font-size: 1.5rem;
    color: var(--white);
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(209, 81, 72, 0.25);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(209, 81, 72, 0.35);
    }
}

.security-header-text {
    flex: 1;
}

.security-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.security-hint {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 400;
}

.security-question-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.security-question-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    justify-content: center;
}

.security-question-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.security-equals {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0.5rem;
}

.security-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.security-input {
    max-width: 100px;
    width: 100px;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    padding: 1rem;
    border: 3px solid #e5e7eb;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(249, 250, 251, 1) 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
}

.security-input:focus {
    border-color: var(--secondary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(209, 81, 72, 0.15);
    transform: scale(1.05);
}

.security-input-correct {
    border-color: #10b981 !important;
    background: rgba(16, 185, 129, 0.05) !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15) !important;
}

.security-input-error {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05) !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15) !important;
    animation: shake 0.4s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

.security-input::placeholder {
    color: #d1d5db;
    font-weight: 400;
}

.security-feedback {
    position: absolute;
    right: -35px;
    display: none;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #10b981;
    color: var(--white);
    font-size: 1rem;
    animation: fadeInScale 0.3s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.security-feedback-success {
    display: flex;
}

/* Messages de formulaire */
.form-message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.4s ease-out;
}

.form-message i {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.form-message-success {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    color: #065f46;
}

.form-message-success i {
    color: #10b981;
}

.form-message-error {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    color: #991b1b;
}

.form-message-error i {
    color: #ef4444;
}

.form-message strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.form-message p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Actions du formulaire */
.form-actions {
    margin-top: 2.5rem;
    text-align: center;
}

.form-actions .btn-cta {
    min-width: 280px;
}

/* Container lien de paiement */
.payment-link-container {
    margin-top: 2.5rem;
    animation: fadeInUp 0.5s ease-out;
}

.payment-link-box {
    background: linear-gradient(135deg, rgba(37, 138, 112, 0.1) 0%, rgba(209, 81, 72, 0.1) 100%);
    border: 2px solid rgba(37, 138, 112, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}

.payment-link-header {
    margin-bottom: 1.5rem;
}

.payment-link-header i {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1rem;
    display: block;
}

.payment-link-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.payment-link-content p {
    font-size: 1.05rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.btn-twint {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    min-width: 250px;
    margin-bottom: 1rem;
}

.btn-twint:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.35);
}

.btn-twint i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.payment-note {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Formulaire */
@media (max-width: 768px) {
    .gift-card-form-section {
        padding: 4rem 0;
    }

    .gift-card-form-header {
        margin-bottom: 3rem;
        padding: 0 1.5rem;
    }

    .gift-card-form-header .section-title {
        font-size: 2rem;
    }

    .gift-card-form-header .section-description {
        font-size: 1rem;
    }

    .gift-card-form {
        padding: 2rem 1.5rem;
        margin: 0 1.5rem;
        border-radius: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-section-divider {
        margin: 2.5rem 0 1.5rem 0;
        padding-top: 1.5rem;
    }

    .form-section-divider h3 {
        font-size: 1.3rem;
    }

    .form-summary {
        padding: 1.5rem;
    }

    .summary-header h3 {
        font-size: 1.2rem;
    }

    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .summary-label {
        width: 100%;
    }

    .summary-value {
        font-size: 0.95rem;
        width: 100%;
    }

    .summary-amount {
        font-size: 1.3rem;
    }

    .form-actions .btn-cta {
        min-width: 100%;
        width: 100%;
    }

    .payment-link-box {
        padding: 2rem 1.5rem;
    }

    .payment-link-header i {
        font-size: 2.5rem;
    }

    .payment-link-header h3 {
        font-size: 1.3rem;
    }

    .btn-twint {
        min-width: 100%;
        width: 100%;
    }

    .security-question {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .security-question-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .security-icon-wrapper {
        width: 45px;
        height: 45px;
    }

    .security-icon-wrapper i {
        font-size: 1.3rem;
    }

    .security-question-wrapper {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.25rem;
    }

    .security-question-box {
        width: 100%;
        justify-content: center;
    }

    .security-question-text {
        font-size: 1.3rem;
    }

    .security-equals {
        font-size: 1.5rem;
    }

    .security-input-wrapper {
        width: 100%;
    }

    .security-input {
        max-width: 100%;
        width: 100%;
        font-size: 1.3rem;
    }

    .security-feedback {
        right: 10px;
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
}

/* ========================================
   Page À propos
   ======================================== */

/* Hero Section À propos */
.about-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    overflow: hidden;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.9) 0%, rgba(37, 138, 112, 0.9) 100%),
                url('../img/profil-lucile.jpg') center/cover;
    background-attachment: fixed;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(38, 46, 69, 0.7) 0%, rgba(38, 46, 69, 0.5) 100%);
}

.about-hero-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    color: var(--white);
    animation: fadeInUp 0.8s ease-out;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.95;
    font-weight: 400;
}

/* Section Introduction */
.about-intro {
    padding: 6rem 0;
    background: var(--white);
}

.about-intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-intro-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-profile-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-profile-img {
    transform: scale(1.05);
}

.about-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.about-intro-content {
    padding-left: 2rem;
}

.about-greeting {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.about-name {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-intro-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-color);
}

.about-intro-text p {
    margin-bottom: 1.5rem;
}

.about-intro-text p:last-child {
    margin-bottom: 0;
}

/* Section Valeurs */
.about-values {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.about-values-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(209, 81, 72, 0.15);
    border-color: rgba(209, 81, 72, 0.2);
}

.value-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.1), rgba(37, 138, 112, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon-wrapper {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: scale(1.1) rotate(5deg);
}

.value-icon-wrapper i {
    font-size: 2rem;
    color: var(--secondary-color);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon-wrapper i {
    color: var(--white);
    transform: scale(1.1);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

/* Section Qualifications */
.about-qualifications {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.05) 0%, rgba(37, 138, 112, 0.05) 100%);
}

.qualifications-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.qualifications-content {
    text-align: center;
}

.qualifications-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.qualifications-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.qualification-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
}

.qualification-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(209, 81, 72, 0.15);
}

.qualification-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qualification-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.qualification-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.qualifications-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.qualifications-cta .btn-cta-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(38, 46, 69, 0.1);
}

.qualifications-cta .btn-cta-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(38, 46, 69, 0.2);
}

/* Responsive À propos */
@media (max-width: 968px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .about-intro-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-intro-content {
        padding-left: 0;
    }

    .about-name {
        font-size: 3rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .qualifications-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 100vh;
        min-height: 100vh;
        padding-top: 100px;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .about-intro {
        padding: 4rem 0;
    }

    .about-name {
        font-size: 2.5rem;
    }

    .about-intro-text {
        font-size: 1rem;
    }

    .about-values {
        padding: 4rem 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }

    .about-qualifications {
        padding: 4rem 0;
    }

    .qualifications-cta {
        flex-direction: column;
    }

    .qualifications-cta .btn-cta {
        width: 100%;
    }
}

/* ========================================
   Page Partenaires
   ======================================== */

/* Hero Section Partenaires */
.partners-hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    overflow: hidden;
}

.partners-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.9) 0%, rgba(37, 138, 112, 0.9) 100%),
                url('../img/massages-all.png') center/cover;
    background-attachment: fixed;
}

.partners-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(38, 46, 69, 0.7) 0%, rgba(38, 46, 69, 0.5) 100%);
}

.partners-hero-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    color: var(--white);
    animation: fadeInUp 0.8s ease-out;
}

.partners-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.partners-hero-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.95;
    font-weight: 400;
}

/* Section Introduction Partenaires */
.partners-intro {
    padding: 5rem 0;
    background: var(--white);
}

.partners-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.partners-intro-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-top: 1.5rem;
}

/* Section Avantages */
.partners-benefits {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.partners-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(209, 81, 72, 0.2), transparent);
    z-index: 0;
}

.benefits-modern-list {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.benefit-modern-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.benefit-modern-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-modern-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-modern-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-modern-item:nth-child(4) { animation-delay: 0.4s; }
.benefit-modern-item:nth-child(5) { animation-delay: 0.5s; }

.benefit-modern-item:last-child {
    margin-bottom: 0;
}

.benefit-modern-item.benefit-left {
    flex-direction: row;
}

.benefit-modern-item.benefit-right {
    flex-direction: row-reverse;
}

.benefit-modern-number {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    min-width: 120px;
    text-align: center;
    opacity: 0.15;
    transition: all 0.4s ease;
}

.benefit-modern-item:hover .benefit-modern-number {
    opacity: 0.3;
    transform: scale(1.1);
}

.benefit-modern-content {
    flex: 1;
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-modern-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-modern-item:hover .benefit-modern-content {
    transform: translateX(8px);
    box-shadow: 0 12px 50px rgba(209, 81, 72, 0.2);
    border-color: rgba(209, 81, 72, 0.2);
}

.benefit-modern-item.benefit-right:hover .benefit-modern-content {
    transform: translateX(-8px);
}

.benefit-modern-item:hover .benefit-modern-content::before {
    opacity: 1;
}

.benefit-modern-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.1), rgba(37, 138, 112, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
}

.benefit-modern-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.benefit-modern-item:hover .benefit-modern-icon-wrapper {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: scale(1.1) rotate(5deg);
}

.benefit-modern-item:hover .benefit-modern-icon-wrapper::after {
    opacity: 0.2;
}

.benefit-modern-icon-wrapper i {
    font-size: 2.2rem;
    color: var(--secondary-color);
    transition: all 0.4s ease;
}

.benefit-modern-item:hover .benefit-modern-icon-wrapper i {
    color: var(--white);
    transform: scale(1.1);
}

.benefit-modern-text {
    flex: 1;
}

.benefit-modern-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-modern-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

/* Section Profil */
.partners-profile {
    padding: 6rem 0;
    background: var(--white);
}

.profile-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.profile-header {
    text-align: center;
    margin-bottom: 3rem;
}

.profile-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.profile-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.05), rgba(37, 138, 112, 0.05));
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 2px solid rgba(209, 81, 72, 0.1);
    transition: all 0.3s ease;
}

.profile-item:hover {
    transform: translateX(8px);
    border-color: rgba(209, 81, 72, 0.3);
    box-shadow: 0 8px 25px rgba(209, 81, 72, 0.1);
}

.profile-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.profile-text h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

/* Section Formulaire Partenaires */
.partners-form-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

.partners-form-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partners-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Responsive Partenaires */
@media (max-width: 968px) {
    .partners-hero-content h1 {
        font-size: 2.5rem;
    }

    .partners-hero-content p {
        font-size: 1.1rem;
    }

    .benefit-modern-item {
        flex-direction: column !important;
        gap: 2rem;
    }

    .benefit-modern-item.benefit-left,
    .benefit-modern-item.benefit-right {
        flex-direction: column;
    }

    .benefit-modern-number {
        font-size: 4rem;
        min-width: auto;
        order: -1;
    }

    .benefit-modern-content {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 2rem;
    }

    .benefit-modern-item:hover .benefit-modern-content {
        transform: translateY(-4px);
    }

    .benefit-modern-item.benefit-right:hover .benefit-modern-content {
        transform: translateY(-4px);
    }

    .profile-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .partners-hero {
        height: 100vh;
        min-height: 100vh;
        padding-top: 100px;
    }

    .partners-hero-content h1 {
        font-size: 2.5rem;
    }

    .partners-hero-content p {
        font-size: 1.1rem;
    }

    .partners-intro {
        padding: 4rem 0;
    }

    .partners-intro-text {
        font-size: 1.1rem;
    }

    .partners-benefits {
        padding: 4rem 0;
    }

    .partners-benefits::before {
        display: none;
    }

    .benefit-modern-item {
        margin-bottom: 3rem;
    }

    .benefit-modern-number {
        font-size: 3.5rem;
    }

    .benefit-modern-content {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .benefit-modern-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .benefit-modern-icon-wrapper i {
        font-size: 1.8rem;
    }

    .benefit-modern-title {
        font-size: 1.4rem;
    }

    .benefit-modern-description {
        font-size: 1rem;
    }

    .partners-profile {
        padding: 4rem 0;
    }

    .partners-form-section {
        padding: 4rem 0;
    }

    .partners-form {
        padding: 2rem 1.5rem;
        margin: 0 1.5rem;
    }
}

/* ========================================
   Page Entreprises
   ======================================== */

/* Hero Section Entreprises */
.companies-hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    overflow: hidden;
}

.companies-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.companies-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.companies-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(38, 46, 69, 0.7) 0%, rgba(38, 46, 69, 0.5) 100%);
}

.companies-hero-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.companies-hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    color: var(--white);
    animation: fadeInUp 0.8s ease-out;
}

.companies-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.companies-hero-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.95;
    font-weight: 400;
}

/* Section Avantages Entreprises/Hôtels */
.companies-benefits {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.companies-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(209, 81, 72, 0.2), transparent);
    z-index: 0;
}

.companies-benefits-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 1;
}

.companies-benefits-header .section-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.1), rgba(37, 138, 112, 0.1));
    border-radius: 50px;
    border: 1px solid rgba(209, 81, 72, 0.2);
    transition: all 0.3s ease;
}

.companies-benefits-header .section-label:hover {
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.15), rgba(37, 138, 112, 0.15));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(209, 81, 72, 0.15);
}

.companies-benefits-header .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.companies-benefits-intro {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-top: 1.5rem;
    font-weight: 400;
}

.companies-benefits-modern-list {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.company-benefit-modern-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.company-benefit-modern-item:nth-child(1) { animation-delay: 0.1s; }
.company-benefit-modern-item:nth-child(2) { animation-delay: 0.2s; }
.company-benefit-modern-item:nth-child(3) { animation-delay: 0.3s; }
.company-benefit-modern-item:nth-child(4) { animation-delay: 0.4s; }

.company-benefit-modern-item:last-child {
    margin-bottom: 0;
}

.company-benefit-modern-item.benefit-left {
    flex-direction: row;
}

.company-benefit-modern-item.benefit-right {
    flex-direction: row-reverse;
}

.company-benefit-modern-number {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    min-width: 120px;
    text-align: center;
    opacity: 0.15;
    transition: all 0.4s ease;
}

.company-benefit-modern-item:hover .company-benefit-modern-number {
    opacity: 0.3;
    transform: scale(1.1);
}

.company-benefit-modern-content {
    flex: 1;
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.company-benefit-modern-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.company-benefit-modern-item:hover .company-benefit-modern-content {
    transform: translateX(8px);
    box-shadow: 0 12px 50px rgba(209, 81, 72, 0.2);
    border-color: rgba(209, 81, 72, 0.2);
}

.company-benefit-modern-item.benefit-right:hover .company-benefit-modern-content {
    transform: translateX(-8px);
}

.company-benefit-modern-item:hover .company-benefit-modern-content::before {
    opacity: 1;
}

.company-benefit-modern-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.1), rgba(37, 138, 112, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
}

.company-benefit-modern-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.company-benefit-modern-item:hover .company-benefit-modern-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.15), rgba(37, 138, 112, 0.15));
}

.company-benefit-modern-item:hover .company-benefit-modern-icon-wrapper::after {
    opacity: 0.1;
}

.company-benefit-modern-icon-wrapper i {
    font-size: 2.2rem;
    color: var(--secondary-color);
    transition: all 0.4s ease;
}

.company-benefit-modern-item:hover .company-benefit-modern-icon-wrapper i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.company-benefit-modern-text {
    flex: 1;
}

.company-benefit-modern-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.company-benefit-modern-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

/* Section Entreprises */
.companies-business {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.business-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.business-content {
    padding-right: 2rem;
}

.business-content .section-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.1), rgba(209, 81, 72, 0.05));
    border-radius: 50px;
    border: 1px solid rgba(209, 81, 72, 0.2);
    transition: all 0.3s ease;
}

.business-content .section-label:hover {
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.15), rgba(209, 81, 72, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(209, 81, 72, 0.15);
}

.business-content .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.business-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 400;
}

.business-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.business-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--text-color);
}

.business-feature-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.business-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-visual-wrapper {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.1), rgba(37, 138, 112, 0.1));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.business-visual-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    opacity: 0.1;
    z-index: -1;
}

.business-visual-wrapper i {
    font-size: 6rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

/* Section Hôtels */
.companies-hotels {
    padding: 6rem 0;
    background: var(--white);
}

.hotels-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.hotels-content {
    padding-left: 2rem;
}

.hotels-content .section-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(37, 138, 112, 0.1), rgba(37, 138, 112, 0.05));
    border-radius: 50px;
    border: 1px solid rgba(37, 138, 112, 0.2);
    transition: all 0.3s ease;
}

.hotels-content .section-label:hover {
    background: linear-gradient(135deg, rgba(37, 138, 112, 0.15), rgba(37, 138, 112, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 138, 112, 0.15);
}

.hotels-content .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hotels-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hotels-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hotels-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--text-color);
}

.hotels-feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hotels-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotels-visual-wrapper {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(37, 138, 112, 0.1), rgba(209, 81, 72, 0.1));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.hotels-visual-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    opacity: 0.1;
    z-index: -1;
}

.hotels-visual-wrapper i {
    font-size: 6rem;
    color: var(--accent-color);
    opacity: 0.3;
}

/* Section Formulaire Entreprises */
.companies-form-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

.companies-form-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.companies-form-header .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.companies-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Responsive Entreprises */
@media (max-width: 1200px) {
    .companies-benefits-modern-list {
        max-width: 900px;
    }
}

@media (max-width: 968px) {
    .companies-hero-content h1 {
        font-size: 2.5rem;
    }

    .companies-hero-content p {
        font-size: 1.1rem;
    }

    .companies-benefits-header .section-label {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }

    .companies-benefits-header .section-title {
        font-size: 2.5rem;
    }

    .company-benefit-modern-item {
        gap: 2rem;
    }

    .company-benefit-modern-number {
        font-size: 4rem;
        min-width: 100px;
    }

    .company-benefit-modern-content {
        padding: 2.5rem;
        gap: 2rem;
    }

    .company-benefit-modern-title {
        font-size: 1.6rem;
    }

    .business-content .section-title,
    .hotels-content .section-title {
        font-size: 2.5rem;
    }

    .companies-form-header .section-title {
        font-size: 2.5rem;
    }

    .business-wrapper,
    .hotels-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .business-content {
        padding-right: 0;
    }

    .business-content .section-label {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }

    .hotels-content {
        padding-left: 0;
        order: -1;
    }

    .hotels-content .section-label {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }

    .business-visual-wrapper,
    .hotels-visual-wrapper {
        width: 250px;
        height: 250px;
    }

    .business-visual-wrapper i,
    .hotels-visual-wrapper i {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    .companies-hero {
        height: 100vh;
        min-height: 100vh;
        padding-top: 100px;
    }

    .companies-hero-content h1 {
        font-size: 2.5rem;
    }

    .companies-hero-content p {
        font-size: 1.1rem;
    }

    .companies-benefits {
        padding: 4rem 0;
    }

    .companies-benefits-header .section-label {
        font-size: 0.75rem;
        padding: 0.35rem 1rem;
    }

    .companies-benefits-header .section-title {
        font-size: 2rem;
    }

    .companies-benefits-intro {
        font-size: 1.1rem;
    }

    .company-benefit-modern-item {
        flex-direction: column !important;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .company-benefit-modern-number {
        font-size: 3.5rem;
        min-width: auto;
        order: -1;
    }

    .company-benefit-modern-content {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        text-align: center;
    }

    .company-benefit-modern-content::before {
        width: 100%;
        height: 4px;
        top: 0;
        left: 0;
    }

    .company-benefit-modern-item:hover .company-benefit-modern-content {
        transform: translateY(-4px);
    }

    .company-benefit-modern-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .company-benefit-modern-icon-wrapper i {
        font-size: 2rem;
    }

    .company-benefit-modern-title {
        font-size: 1.4rem;
    }

    .company-benefit-modern-description {
        font-size: 1rem;
    }

    .business-content .section-title,
    .hotels-content .section-title {
        font-size: 2rem;
    }

    .companies-form-header .section-title {
        font-size: 2rem;
    }

    .investment-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .investment-benefit-card {
        padding: 2rem 1.5rem;
    }

    .companies-business,
    .companies-hotels {
        padding: 4rem 0;
    }

    .business-visual-wrapper,
    .hotels-visual-wrapper {
        width: 200px;
        height: 200px;
    }

    .business-visual-wrapper i,
    .hotels-visual-wrapper i {
        font-size: 4rem;
    }

    .companies-form-section {
        padding: 4rem 0;
    }

    .companies-form {
        padding: 2rem 1.5rem;
        margin: 0 1.5rem;
    }
}

/* ========================================
   Page Zones d'intervention
   ======================================== */

/* Hero Section Intervention */
.intervention-hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    overflow: hidden;
}

.intervention-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.intervention-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.intervention-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(38, 46, 69, 0.7) 0%, rgba(38, 46, 69, 0.5) 100%);
}

.intervention-hero-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intervention-hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    color: var(--white);
    animation: fadeInUp 0.8s ease-out;
}

.intervention-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.intervention-hero-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.95;
    font-weight: 400;
}

/* Section Carte Interactive */
.intervention-map-section {
    padding: 6rem 0;
    background: var(--white);
}

.intervention-map-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.intervention-map-header .section-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.1), rgba(37, 138, 112, 0.1));
    border-radius: 50px;
    border: 1px solid rgba(209, 81, 72, 0.2);
}

.intervention-map-header .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.intervention-map-header .section-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
}

.map-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(209, 81, 72, 0.1);
}

.map-container {
    width: 100%;
    height: 600px;
    border-radius: 24px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 24px;
}

/* Section Zones */
.intervention-zones {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

.zones-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.zones-header .section-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.1), rgba(37, 138, 112, 0.1));
    border-radius: 50px;
    border: 1px solid rgba(209, 81, 72, 0.2);
}

.zones-header .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.zones-intro {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-top: 1rem;
}

.zone-group {
    margin-bottom: 4rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(209, 81, 72, 0.1);
    transition: all 0.4s ease;
}

.zone-group:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(209, 81, 72, 0.15);
    border-color: rgba(209, 81, 72, 0.2);
}

.zone-group:last-child {
    margin-bottom: 0;
}

.zone-group-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(209, 81, 72, 0.1);
}

.zone-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.zone-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--white);
}

.zone-group-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -0.5px;
}

.zone-communes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.commune-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.05), rgba(37, 138, 112, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(209, 81, 72, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.commune-card:hover {
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.1), rgba(37, 138, 112, 0.1));
    transform: translateX(4px);
    border-color: rgba(209, 81, 72, 0.3);
    box-shadow: 0 4px 12px rgba(209, 81, 72, 0.15);
}

.commune-card i {
    color: var(--secondary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.commune-card span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
}

/* Section CTA */
.intervention-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.05), rgba(37, 138, 112, 0.05));
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(209, 81, 72, 0.1);
}

.cta-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--white);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.cta-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Styles spécifiques pour les boutons dans la section intervention-cta */
.intervention-cta .btn-cta-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(38, 46, 69, 0.1);
}

.intervention-cta .btn-cta-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(38, 46, 69, 0.2);
}

/* Responsive Intervention */
@media (max-width: 968px) {
    .intervention-hero-content h1 {
        font-size: 2.5rem;
    }

    .intervention-hero-content p {
        font-size: 1.1rem;
    }

    .intervention-map-header .section-title,
    .zones-header .section-title {
        font-size: 2.5rem;
    }

    #intervention-map {
        height: 500px;
    }

    .zone-group {
        padding: 2rem 1.5rem;
    }

    .zone-communes-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }

    .cta-content {
        padding: 3rem 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .intervention-hero {
        height: 100vh;
        min-height: 100vh;
        padding-top: 100px;
    }

    .intervention-hero .scroll-indicator {
        left: 50%;
        right: auto;
        justify-content: center;
        align-items: center;
        width: auto;
        margin: 0;
        padding: 0;
    }

    .intervention-hero-content h1 {
        font-size: 2.5rem;
    }

    .intervention-hero-content p {
        font-size: 1.1rem;
    }

    .intervention-map-section,
    .intervention-zones {
        padding: 4rem 0;
    }

    .intervention-map-header .section-title,
    .zones-header .section-title {
        font-size: 2rem;
    }

    #intervention-map {
        height: 400px;
    }

    .zone-group {
        padding: 2rem 1.5rem;
        margin-bottom: 2.5rem;
    }

    .zone-group-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .zone-group-title {
        font-size: 1.6rem;
    }

    .zone-communes-grid {
        grid-template-columns: 1fr;
    }

    .commune-card {
        justify-content: center;
    }

    .cta-content {
        padding: 2.5rem 1.5rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn-cta {
        width: 100%;
    }
}

/* ========================================
   Page Contact
   ======================================== */

/* Hero Section Contact */
.contact-hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    overflow: hidden;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 138, 112, 0.9) 0%, rgba(209, 81, 72, 0.9) 100%),
                url('../img/massages-all.png') center/cover;
    background-attachment: fixed;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(38, 46, 69, 0.7) 0%, rgba(38, 46, 69, 0.5) 100%);
}

.contact-hero-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    color: var(--white);
    animation: fadeInUp 0.8s ease-out;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.contact-hero-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.95;
    font-weight: 400;
}

/* Section Informations de contact */
.contact-info-section {
    padding: 6rem 0;
    background: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-card {
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.05), rgba(37, 138, 112, 0.05));
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(209, 81, 72, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(209, 81, 72, 0.15);
    border-color: rgba(209, 81, 72, 0.3);
    background: var(--white);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(209, 81, 72, 0.3);
}

.contact-info-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-info-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-info-card p {
    color: var(--text-color);
    font-size: 1.05rem;
    margin: 0;
}

/* Section Formulaire Contact */
.contact-form-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-header .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.contact-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Responsive Contact */
@media (max-width: 968px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-hero-content p {
        font-size: 1.1rem;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-form-header .section-title {
        font-size: 2.5rem;
    }

    .contact-form {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 100vh;
        min-height: 100vh;
        padding-top: 100px;
    }

    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-hero-content p {
        font-size: 1.1rem;
    }

    .contact-info-section,
    .contact-form-section {
        padding: 4rem 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info-card {
        padding: 2rem 1.5rem;
    }

    .contact-form-header .section-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
        margin: 0 1.5rem;
    }
}

/* ========================================
   Page Rendez-vous
   ======================================== */

/* Hero Section Rendez-vous */
.booking-hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    overflow: hidden;
}

.booking-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.booking-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.booking-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(38, 46, 69, 0.7) 0%, rgba(38, 46, 69, 0.5) 100%);
}

.booking-hero-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    color: var(--white);
    animation: fadeInUp 0.8s ease-out;
}

.booking-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.booking-hero-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.95;
    font-weight: 400;
}

/* Section Sélection de prestations */
.booking-prestations {
    padding: 6rem 0;
    background: var(--white);
}

.booking-prestations-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.booking-prestations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-prestation-card {
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.05), rgba(37, 138, 112, 0.05));
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(209, 81, 72, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.booking-prestation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(209, 81, 72, 0.15);
    border-color: rgba(209, 81, 72, 0.3);
    background: var(--white);
}

.booking-prestation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.booking-prestation-card:hover .booking-prestation-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(209, 81, 72, 0.3);
}

.booking-prestation-icon i {
    font-size: 2rem;
    color: var(--white);
}

.booking-prestation-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.booking-prestation-duration {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.booking-prestation-price {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.booking-prestation-card .btn-cta {
    width: 100%;
    justify-content: center;
}

/* Section Formulaire de réservation */
.booking-form-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

.booking-form-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.booking-form-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.booking-form-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: opacity 0.3s ease;
}

.booking-form {
    width: 100%;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(209, 81, 72, 0.1);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-section-title i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Options de paiement */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-option {
    position: relative;
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-option-label {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.05), rgba(37, 138, 112, 0.05));
    border: 2px solid rgba(209, 81, 72, 0.2);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option input[type="radio"]:checked + .payment-option-label {
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.15), rgba(37, 138, 112, 0.15));
    border-color: var(--secondary-color);
    box-shadow: 0 4px 20px rgba(209, 81, 72, 0.2);
}

.payment-option-label:hover {
    border-color: rgba(209, 81, 72, 0.4);
    transform: translateY(-2px);
}

.payment-option-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-option-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.payment-option-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.payment-option-title {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.payment-option-description {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* Résumé de réservation */
.booking-summary {
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.08), rgba(37, 138, 112, 0.08));
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(209, 81, 72, 0.2);
    margin-bottom: 2rem;
}

.summary-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(209, 81, 72, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    padding-top: 0.75rem;
    border-top: 2px solid rgba(209, 81, 72, 0.2);
}

.summary-label {
    font-weight: 600;
    color: var(--text-color);
}

.summary-value {
    font-weight: 700;
    color: var(--primary-color);
}

.summary-amount {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

/* Container paiement Twint */
.twint-payment-container {
    margin-top: 2rem;
}

.twint-payment-box {
    background: linear-gradient(135deg, rgba(37, 138, 112, 0.1), rgba(37, 138, 112, 0.05));
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(37, 138, 112, 0.3);
    text-align: center;
}

.twint-payment-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.twint-payment-header i {
    font-size: 2rem;
    color: var(--accent-color);
}

.twint-payment-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.twint-payment-content p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.btn-twint {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.twint-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
    font-style: italic;
}

/* Calendrier Cal.com */
.booking-calendar-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 140px;
}

.calendar-header {
    text-align: center;
    margin-bottom: 2rem;
}

.calendar-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.calendar-header p {
    color: var(--text-color);
    opacity: 0.8;
}

.cal-com-iframe-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Rendez-vous */
@media (max-width: 968px) {
    .booking-hero-content h1 {
        font-size: 2.5rem;
    }

    .booking-hero-content p {
        font-size: 1.1rem;
    }

    .booking-prestations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .booking-form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-calendar-wrapper {
        position: static;
    }
}

@media (max-width: 768px) {
    .booking-hero {
        height: 100vh;
        min-height: 100vh;
        padding-top: 100px;
    }

    .booking-hero-content h1 {
        font-size: 2.5rem;
    }

    .booking-hero-content p {
        font-size: 1.1rem;
    }

    .booking-prestations,
    .booking-form-section {
        padding: 4rem 0;
    }

    .booking-prestations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .booking-prestation-card {
        padding: 2rem 1.5rem;
    }

    .booking-form-content {
        padding: 2rem 1.5rem;
        margin: 0 1.5rem;
    }

    .payment-option-label {
        flex-direction: column;
        text-align: center;
    }

    .booking-calendar-wrapper {
        padding: 1.5rem;
        margin: 0 1.5rem;
    }

    #cal-com-iframe {
        height: 600px;
    }
}

/* ========================================
   Formulaire Multi-Step Rendez-vous
   ======================================== */

/* Indicateur de progression */
.booking-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.1), rgba(37, 138, 112, 0.1));
    border: 3px solid rgba(209, 81, 72, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.step-item.active .step-number {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-color: var(--secondary-color);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(209, 81, 72, 0.3);
}

.step-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-item.active .step-label {
    color: var(--secondary-color);
}

.step-line {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, rgba(209, 81, 72, 0.2), rgba(37, 138, 112, 0.2));
    margin: 0 1rem;
    position: relative;
    top: -25px;
}

/* Étapes du formulaire */
.booking-step {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Panier de prestations */
#cart-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cart-item {
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.05), rgba(37, 138, 112, 0.05));
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(209, 81, 72, 0.1);
    transition: all 0.3s ease;
}

.cart-item:hover {
    border-color: rgba(209, 81, 72, 0.3);
    box-shadow: 0 4px 20px rgba(209, 81, 72, 0.1);
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(209, 81, 72, 0.1);
}

.cart-item-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.cart-item-remove {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(209, 81, 72, 0.1);
    border: 2px solid rgba(209, 81, 72, 0.2);
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.1);
}

.cart-item-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.cart-item-price {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(209, 81, 72, 0.1);
    margin-top: 1rem;
}

.price-label {
    font-weight: 600;
    color: var(--text-color);
}

.price-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

/* Bouton ajouter une personne */
#add-person-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Résumé total */
.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 3px solid rgba(209, 81, 72, 0.3);
}

.summary-total .summary-label {
    font-size: 1.2rem;
    font-weight: 700;
}

.summary-total .summary-amount {
    font-size: 1.8rem;
}

/* Calendrier Cal.com */
.calendar-info-box {
    background: linear-gradient(135deg, rgba(37, 138, 112, 0.1), rgba(37, 138, 112, 0.05));
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(37, 138, 112, 0.2);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.calendar-info-box i {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.calendar-info-box p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

.cal-com-container {
    min-height: 600px;
    margin-bottom: 2rem;
}

/* Section paiement Twint */
.payment-summary {
    background: rgba(255, 255, 255, 0.5);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.payment-summary p {
    margin: 0.5rem 0;
    color: var(--text-color);
}

.payment-summary strong {
    color: var(--primary-color);
}

/* Section confirmation */
.confirmation-box {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(37, 138, 112, 0.1), rgba(37, 138, 112, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(37, 138, 112, 0.3);
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirmation-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.confirmation-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.confirmation-box > p {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.confirmation-details {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
}

.confirmation-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(209, 81, 72, 0.1);
}

.confirmation-item:last-child {
    border-bottom: none;
}

.confirmation-item strong {
    color: var(--primary-color);
}

/* Navigation entre les étapes */
.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.form-actions .btn-cta {
    flex: 1;
    max-width: 300px;
}

.form-actions .btn-cta-secondary {
    margin-left: 0;
}

/* Bouton retour dans le formulaire multi-step - plus visible */
.form-actions #prev-step-2 {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(38, 46, 69, 0.1);
}

.form-actions #prev-step-2:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(38, 46, 69, 0.2);
}

.form-actions #prev-step-2:hover i {
    transform: translateX(-4px);
}

/* Bouton "Continuer" désactivé */
.form-actions #next-step-2:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.form-actions #next-step-2:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Responsive Multi-Step */
@media (max-width: 968px) {
    .booking-step {
        padding: 2.5rem 2rem;
    }

    .cart-item-content {
        grid-template-columns: 1fr;
    }

    .step-label {
        font-size: 0.8rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .booking-steps-indicator {
        margin: 2rem 0 3rem;
    }

    .step-line {
        margin: 0 0.5rem;
    }

    .step-label {
        display: none;
    }

    .booking-step {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .cart-item {
        padding: 1.5rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn-cta {
        max-width: 100%;
        width: 100%;
    }

    .cal-com-container {
        min-height: 500px;
    }
}

/* Page Validation */
.validation-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.03), rgba(37, 138, 112, 0.03));
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.validation-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 50px rgba(38, 46, 69, 0.1);
}

.validation-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--soft-accent), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.validation-icon i {
    font-size: 3.5rem;
    color: var(--white);
}

.validation-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.validation-message {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.validation-contact-info {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.05), rgba(37, 138, 112, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(209, 81, 72, 0.1);
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-info-simple {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-simple-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info-simple-item strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-simple-item a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    word-break: break-all;
}

.contact-info-simple-item a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.validation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.validation-actions .btn-cta {
    min-width: 200px;
}

/* Responsive Validation */
@media (max-width: 768px) {
    .validation-section {
        padding: 6rem 0 4rem;
    }

    .validation-content {
        padding: 3rem 2rem;
        margin: 0 1rem;
    }

    .validation-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .validation-icon i {
        font-size: 2.5rem;
    }

    .validation-title {
        font-size: 2rem;
    }

    .validation-message {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .validation-contact-info {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }

    .contact-info-simple {
        gap: 1.25rem;
    }

    .contact-info-simple-item a {
        font-size: 1.1rem;
        word-break: break-all;
    }

    .validation-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .validation-actions .btn-cta {
        width: 100%;
        min-width: auto;
    }
}

/* Page 404 */
.error-404-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.03), rgba(37, 138, 112, 0.03));
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-404-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 50px rgba(38, 46, 69, 0.1);
}

.error-404-icon {
    margin-bottom: 2rem;
}

.error-number {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
    animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInScale {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.error-404-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.error-404-message {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.error-404-submessage {
    font-size: 1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.error-404-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.error-404-actions .btn-cta {
    min-width: 200px;
}

.error-404-actions .btn-cta-secondary {
    background: linear-gradient(135deg, var(--soft-accent), var(--secondary-color));
    color: var(--white);
    border: 2px solid transparent;
}

.error-404-actions .btn-cta-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(209, 81, 72, 0.3);
}

.error-404-actions .btn-cta-secondary:hover i {
    transform: translateX(4px);
}

.error-404-links {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(209, 81, 72, 0.1);
}

.error-404-links h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.error-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.error-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.05), rgba(37, 138, 112, 0.05));
    border-radius: 16px;
    border: 2px solid rgba(209, 81, 72, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.error-link-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(209, 81, 72, 0.15);
    border-color: rgba(209, 81, 72, 0.3);
    background: var(--white);
}

.error-link-item i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.error-link-item:hover i {
    transform: scale(1.1);
    color: var(--accent-color);
}

.error-link-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.error-link-item:hover span {
    color: var(--secondary-color);
}

/* Responsive 404 */
@media (max-width: 768px) {
    .error-404-section {
        padding: 6rem 0 4rem;
    }

    .error-404-content {
        padding: 3rem 2rem;
        margin: 0 1rem;
    }

    .error-number {
        font-size: 5rem;
    }

    .error-404-title {
        font-size: 2rem;
    }

    .error-404-message {
        font-size: 1.1rem;
    }

    .error-404-submessage {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .error-404-actions {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 2rem;
    }

    .error-404-actions .btn-cta {
        width: 100%;
        min-width: auto;
    }

    .error-404-links {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .error-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .error-link-item {
        padding: 1.25rem 0.75rem;
    }

    .error-link-item i {
        font-size: 1.5rem;
    }

    .error-link-item span {
        font-size: 0.85rem;
    }
}

/* Pages Légales */
.legal-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, rgba(209, 81, 72, 0.03), rgba(37, 138, 112, 0.03));
    min-height: 70vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 50px rgba(38, 46, 69, 0.1);
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--secondary-color);
}

.legal-version {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
    padding-left: 0.5rem;
}

.legal-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.legal-update {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-section-block {
    margin-bottom: 2.5rem;
}

.legal-section-block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section-block h2:first-child {
    margin-top: 0;
}

.legal-section-block h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.legal-section-block ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section-block li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.legal-section-block a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.legal-section-block a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-section-block strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Responsive Pages Légales */
@media (max-width: 768px) {
    .legal-section {
        padding: 6rem 0 4rem;
    }

    .legal-content {
        padding: 3rem 2rem;
        margin: 0 1rem;
    }

    .legal-content h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .legal-section-block h2 {
        font-size: 1.3rem;
    }

    .legal-section-block p,
    .legal-section-block li {
        font-size: 1rem;
    }

    .legal-section-block ul {
        margin-left: 1.5rem;
    }
}

/* ========================================
   BANNIÈRE DE CONSENTEMENT AUX COOKIES
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(45, 0, 104, 0.1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark, #1a0040);
    margin-bottom: 0.5rem;
}

.cookie-banner-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.cookie-banner-links {
    margin-top: 0.5rem;
}

.cookie-banner-links a {
    color: var(--primary, #2d0068);
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.cookie-banner-links a:hover {
    color: var(--primary-dark, #1a0040);
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.cookie-btn-primary {
    background: linear-gradient(135deg, var(--primary, #2d0068) 0%, var(--primary-dark, #1a0040) 100%);
    color: #ffffff;
}

.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 0, 104, 0.3);
}

.cookie-btn-secondary {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.cookie-btn-secondary:hover {
    background: #e8e8e8;
}

.cookie-btn-link {
    background: transparent;
    color: var(--primary, #2d0068);
    text-decoration: underline;
    padding: 0.75rem 1rem;
}

.cookie-btn-link:hover {
    color: var(--primary-dark, #1a0040);
}

/* Modal de personnalisation */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.cookie-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
    transform: scale(1);
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #eee;
}

.cookie-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark, #1a0040);
    margin: 0;
}

.cookie-modal-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.cookie-modal-close:hover {
    color: var(--primary, #2d0068);
}

.cookie-modal-body {
    padding: 1.5rem 2rem;
}

.cookie-preference-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.cookie-preference-item:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}

.cookie-preference-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.cookie-preference-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.cookie-preference-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Toggle switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--primary, #2d0068);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background-color: var(--primary, #2d0068);
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-preference-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #666;
}

.cookie-preference-info p {
    margin-bottom: 0.5rem;
}

.cookie-preference-info a {
    color: var(--primary, #2d0068);
    text-decoration: underline;
}

.cookie-modal-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid #eee;
    text-align: right;
}

.manage-cookies-link {
    color: var(--primary, #2d0068);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.manage-cookies-link:hover {
    color: var(--primary-dark, #1a0040);
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-banner-container {
        padding: 1.25rem 1.5rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .cookie-preference-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-toggle {
        align-self: flex-end;
    }
}

