:root {
    /* Couleurs principales - Rose poudré élégant */
    --primary: #E8B4C8;
    --primary-dark: #D499B3;
    --primary-light: #F5D9E6;
    --primary-pale: #FBF0F5;
    
    /* Couleurs secondaires */
    --secondary: #C9A0A0;
    --accent: #F4A5B9;
    --accent-warm: #F7C8D8;
    
    /* Neutres */
    --white: #FFFFFF;
    --cream: #FFF9F5;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    /* Typographie */
    --font-display: 'Cormorant', serif;
    --font-body: 'Questrial', sans-serif;
    
    /* Espacements */
    --section-padding: clamp(4rem, 10vw, 8rem);
    --container-padding: clamp(1.5rem, 5vw, 2rem);
    
    /* Animations */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Ombres */
    --shadow-sm: 0 2px 8px rgba(232, 180, 200, 0.08);
    --shadow-md: 0 4px 16px rgba(232, 180, 200, 0.12);
    --shadow-lg: 0 8px 32px rgba(232, 180, 200, 0.16);
    --shadow-xl: 0 16px 48px rgba(232, 180, 200, 0.2);
    
    /* Rayons */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    font-weight: 500;
    color: var(--gray-900);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.75;
}

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

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

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 249, 245, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232, 180, 200, 0.1);
    transition: var(--transition-smooth);
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.logo-img {
    height: 56px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-logo {
    height: 56px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-dark);
    transition: var(--transition-smooth);
}

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

.nav-link {
    font-size: 0.9375rem;
    color: var(--gray-700);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

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

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

.nav-link:hover {
    color: var(--primary-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    white-space: nowrap;
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--primary-light);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary);
}

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

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

.btn-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-text {
    background: transparent;
    color: var(--gray-600);
    padding: 0.625rem 1rem;
}

.btn-text:hover {
    color: var(--primary-dark);
}

/* Sticky Actions */
.sticky-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: slideInRight 0.6s ease-out 0.5s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sticky-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
}

.sticky-btn svg {
    width: 24px;
    height: 24px;
}

.sticky-btn.whatsapp {
    background: #25D366;
    color: var(--white);
}

.sticky-btn.whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-4px) scale(1.05);
}

.sticky-btn.reserve {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.sticky-btn.reserve:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: calc(80px + 2rem) var(--container-padding) 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-pale) 0%, var(--cream) 50%, var(--white) 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    background: linear-gradient(135deg, var(--primary-pale) 0%, var(--cream) 50%, var(--primary-pale) 100%);
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.25;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 180, 200, 0.3) 0%, rgba(255, 249, 245, 0.5) 50%, rgba(232, 180, 200, 0.3) 100%);
    pointer-events: none;
}

.feather {
    position: absolute;
    background: radial-gradient(ellipse at center, var(--primary-light), transparent);
    border-radius: 50% 80% 50% 80%;
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
    filter: blur(40px);
}

.feather-1 {
    width: 400px;
    height: 600px;
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.feather-2 {
    width: 350px;
    height: 500px;
    bottom: -10%;
    left: -5%;
    animation-delay: -5s;
}

.feather-3 {
    width: 300px;
    height: 450px;
    top: 30%;
    left: 10%;
    animation-delay: -10s;
}

.feather-4 {
    width: 250px;
    height: 400px;
    bottom: 20%;
    right: 15%;
    animation-delay: -15s;
}

.feather-5 {
    width: 200px;
    height: 350px;
    top: 60%;
    right: 30%;
    animation-delay: -7s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -40px) rotate(5deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(-3deg);
    }
    75% {
        transform: translate(40px, 30px) rotate(4deg);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-title-main {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 400;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
}

.hero-title-sub {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 300;
    color: var(--gray-700);
}

.hero-description {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--gray-600);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(232, 180, 200, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.trust-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-dark);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Sections */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--primary-pale);
    color: var(--primary-dark);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* Prestations */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.pricing-card-featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-pale) 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
}

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

.pricing-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.pricing-duration {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1;
}

.price-currency {
    font-size: 2rem;
    color: var(--gray-600);
    margin-left: 0.25rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    gap: 1rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Benefits */
.benefits {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid var(--gray-200);
}

.benefits-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--gray-600);
    font-size: 1rem;
}

/* Steps */
.steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--gray-600);
    line-height: 1.75;
}

/* Zone */
.zone-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.zone-map {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    min-height: 400px;
}

.zone-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--gray-400);
}

.zone-placeholder svg {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    color: var(--primary);
}

.zone-list h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.communes-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.communes-list li {
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.communes-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 600;
}

.zone-info {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--primary-pale);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.zone-info svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.zone-info p {
    margin: 0;
    font-size: 0.9375rem;
}

/* About */
.about {
    background: linear-gradient(135deg, var(--primary-pale), var(--white));
}

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

.about-image {
    position: relative;
}

.marie-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.image-placeholder {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.image-placeholder svg {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.about-text .section-label {
    margin-left: 0;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-description p {
    margin-bottom: 1.5rem;
    color: var(--gray-700);
}

.about-description blockquote {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: var(--white);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary-dark);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px dashed var(--gray-300);
}

.testimonial-placeholder p {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--primary-dark);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    color: var(--primary);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--gray-600);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.whatsapp-method {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.05));
    border: 2px solid rgba(37, 211, 102, 0.2);
}

.method-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-pale);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.whatsapp-method .method-icon {
    background: rgba(37, 211, 102, 0.15);
}

.method-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-dark);
}

.whatsapp-method .method-icon svg {
    color: #25D366;
}

.method-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.method-content p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.method-cta {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9375rem;
}

.contact-hours {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--primary-pale);
    border-radius: var(--radius-lg);
}

.contact-hours h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.contact-hours ul {
    list-style: none;
    margin: 1rem 0;
}

.contact-hours li {
    padding: 0.5rem 0;
    color: var(--gray-700);
}

.hours-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    font-style: italic;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gray-800);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 180, 200, 0.1);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--gray-500);
    font-size: 0.875rem;
}

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

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 4rem 0 2rem;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-tagline {
    color: var(--gray-400);
}

.footer-email {
    margin-top: 0.5rem;
    font-size: 0.9375rem;
}

.footer-email a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-email a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    padding: 0.5rem 0;
    color: var(--gray-400);
    transition: var(--transition-smooth);
}

.footer-column a:hover {
    color: var(--primary-light);
    padding-left: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    color: var(--gray-500);
}

.footer-bottom p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    position: relative;
    z-index: 10;
    background: var(--white);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem;
    animation: scaleIn 0.3s ease-out;
    box-shadow: var(--shadow-xl);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: var(--gray-200);
    transform: rotate(90deg);
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.booking-header p {
    color: var(--gray-600);
}

.booking-step {
    margin-bottom: 3rem;
}

.booking-step h3 {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.radio-card input:checked + .radio-content {
    border-color: var(--primary);
    background: var(--primary-pale);
}

.radio-card:hover .radio-content {
    border-color: var(--primary-light);
}

.radio-title {
    font-weight: 600;
    color: var(--gray-800);
}

.radio-description {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.radio-price {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.radio-badge {
    position: absolute;
    top: -8px;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    gap: 1rem;
    cursor: pointer;
    align-items: start;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.checkbox-label a {
    color: var(--primary-dark);
    text-decoration: underline;
}

.booking-actions {
    margin-top: 3rem;
    text-align: center;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .sticky-actions {
        right: 1rem;
        bottom: 1rem;
    }
    
    .zone-content,
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .communes-list {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
    }
    
    .sticky-btn span {
        display: none;
    }
    
    .sticky-btn {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 3rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .hero {
        min-height: auto;
        padding: calc(80px + 3rem) var(--container-padding) 3rem;
    }
}

/* Loading & Animations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Calendly Integration */
.calendly-inline-widget {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--primary-light);
}

@media (max-width: 768px) {
    .calendly-inline-widget {
        height: 600px !important;
    }
}

/* Image hero en arrière-plan */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 180, 200, 0.3) 0%, rgba(255, 249, 245, 0.5) 50%, rgba(232, 180, 200, 0.3) 100%);
    pointer-events: none;
}

/* Photo de Marie */
.marie-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Widget Calendly */
.calendly-inline-widget {
    border: 2px solid #E8B4C8;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(232, 180, 200, 0.2);
}

.calendly-inline-widget iframe {
    border-radius: 12px;
}

@media (max-width: 768px) {
    .calendly-inline-widget {
        height: 600px !important;
    }
}
