/* ===== VARIABLES - Thème Élégant Rose Poudré ===== */
:root {
    --primary: #C9A89D;
    --primary-dark: #A88B7D;
    --primary-light: #E8D5CF;
    --secondary: #2C2C2C;
    --accent: #D4AF37;
    --cream: #FDF9F6;
    --nude: #F5EDE8;
    --text: #3A3A3A;
    --text-light: #7A7A7A;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #C9A89D 0%, #E8D5CF 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F5D76E 100%);
    --shadow: 0 4px 25px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.08);
    --radius: 24px;
    --radius-sm: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; }

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--primary);
}

.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-title span {
    color: var(--primary-dark);
    font-style: italic;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s ease;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.06);
    padding: 1rem 0;
}

.navbar .container { display: flex; justify-content: space-between; align-items: center; }

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
}

.navbar.scrolled .logo { color: var(--secondary); }

.nav-menu { display: flex; gap: 2.5rem; list-style: none; }

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover, .nav-menu a.active { color: var(--primary-dark); }
.navbar.scrolled .nav-menu a { color: var(--text); }
.navbar.scrolled .nav-menu a:hover, .navbar.scrolled .nav-menu a.active { color: var(--primary-dark); }

.nav-cta {
    background: var(--secondary);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-cta:hover { background: var(--primary-dark); transform: translateY(-2px); }
.navbar.scrolled .nav-cta { background: var(--secondary); color: var(--white); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-toggle span { background: var(--secondary); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
}

.mobile-menu.active { right: 0; }

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--nude);
}

.mobile-menu-header .logo { color: var(--secondary); }

.mobile-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
}

.mobile-nav { list-style: none; }

.mobile-nav a {
    display: block;
    padding: 1.2rem 0;
    color: var(--text);
    text-decoration: none;
    font-weight: 400;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--nude);
    transition: all 0.3s ease;
}

.mobile-nav a:hover { color: var(--primary-dark); padding-left: 1rem; }

.mobile-cta {
    display: block;
    margin-top: 2rem;
    background: var(--gradient) !important;
    color: var(--white) !important;
    text-align: center;
    padding: 1rem !important;
    border-radius: 50px;
    border: none !important;
    font-weight: 500;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active { opacity: 1; visibility: visible; }

/* ===== HERO - Style Élégant Épuré ===== */
.hero {
    min-height: 100vh;
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: var(--nude);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 4rem 4rem 6rem;
    position: relative;
    z-index: 2;
}

.hero-label {
    color: var(--primary-dark);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero h1 {
    font-size: clamp(2.8rem, 5vw, 4rem);
    color: var(--secondary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero h1 em {
    color: var(--primary-dark);
    font-style: italic;
}

.hero-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    max-width: 420px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-gold:hover { 
    background: var(--primary-dark);
    transform: translateY(-3px); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); 
}

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

.btn-ghost:hover { 
    background: var(--secondary);
    color: var(--white);
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.hero-badge {
    position: absolute;
    bottom: 20%;
    left: 5%;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid var(--nude);
}

.hero-badge-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary-dark);
    line-height: 1;
}

.hero-badge-text {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SECTIONS ===== */
.section { padding: 7rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }

/* ===== ABOUT - Style Décalé ===== */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-images {
    position: relative;
    height: 550px;
}

.about-img-main {
    width: 80%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about-img-small {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
}

.about-content h2 { margin-bottom: 1.5rem; }

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.9;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--nude);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: var(--nude);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
}

.highlight-text { font-size: 0.9rem; font-weight: 500; }

/* ===== SERVICES - Style Cards Élégantes ===== */
.services-section { background: var(--cream); }

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

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

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

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

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

.service-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
}

.service-card-body { padding: 1.75rem; }

.service-card-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    margin-top: -45px;
    position: relative;
    box-shadow: var(--shadow);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

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

/* ===== EXPERTISE - Style Numéroté ===== */
.expertise-section { background: var(--secondary); color: var(--white); }

.expertise-section .section-eyebrow { color: var(--primary-light); }
.expertise-section .section-eyebrow::before,
.expertise-section .section-eyebrow::after { background: var(--primary-light); }

.expertise-section .section-title { color: var(--white); }
.expertise-section .section-title span { color: var(--primary-light); }

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

.expertise-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--primary);
}

.expertise-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 1rem;
}

.expertise-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.expertise-item p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

/* ===== SPECIALTIES - Style Tags Flottants ===== */
.specialties-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.specialty-tag {
    background: var(--white);
    color: var(--text);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.specialty-tag:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===== TESTIMONIALS - Style Carrousel ===== */
.testimonials-section { background: var(--nude); }

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.rating-block { text-align: right; }

.rating-score {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--secondary);
    line-height: 1;
}

.rating-stars { color: var(--accent); font-size: 1rem; margin: 0.5rem 0; }
.rating-count { color: var(--text-light); font-size: 0.9rem; }

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonials-track::-webkit-scrollbar { height: 4px; }
.testimonials-track::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); border-radius: 2px; }
.testimonials-track::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }

.testimonial-card {
    flex: 0 0 380px;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    scroll-snap-align: start;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--nude);
    line-height: 1;
}

.testimonial-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-info h4 { font-size: 1rem; font-family: 'Outfit', sans-serif; margin-bottom: 0.2rem; }
.testimonial-info span { color: var(--text-light); font-size: 0.85rem; }
.testimonial-stars { color: var(--accent); font-size: 0.85rem; margin-bottom: 1rem; }

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* ===== ZONES - Style Map ===== */
.zones-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.zones-content h2 { margin-bottom: 1.5rem; }
.zones-content > p { color: var(--text-light); margin-bottom: 2rem; line-height: 1.8; }

.zones-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.zone-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    padding: 0.5rem 0;
}

.zone-item i { color: var(--primary-dark); font-size: 0.8rem; }

.zone-item.main {
    font-weight: 600;
    color: var(--secondary);
}

.zones-visual {
    position: relative;
}

.zones-visual img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* ===== CTA - Style Élégant ===== */
.cta-section {
    background: var(--gradient);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    position: relative;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
}

.cta-section .btn-gold { background: var(--white); color: var(--secondary); }
.cta-section .btn-gold:hover { background: var(--secondary); color: var(--white); }

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 5rem 0 2rem;
}

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

.footer-brand .logo { font-size: 2rem; margin-bottom: 1rem; display: block; color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 1.5rem; font-size: 0.95rem; }

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-cta:hover { background: var(--primary-dark); }

.footer-group h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-group ul { list-style: none; }
.footer-group li { margin-bottom: 0.75rem; }

.footer-group a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-group a:hover { color: var(--primary-light); }

.footer-zone { color: rgba(255,255,255,0.8); margin-bottom: 0.5rem; font-size: 0.95rem; }
.footer-zone i { color: var(--primary-light); margin-right: 0.5rem; }
.footer-zone-list { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.7; }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-bottom a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-bottom a:hover { color: var(--primary-light); }

.footer-tec { margin-top: 1.25rem !important; margin-bottom: 0 !important; font-size: 0.9rem !important; }
.footer-tec a { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--primary-light); text-decoration: none; }
.footer-tec a:hover { color: var(--white); text-decoration: underline; }

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--nude);
    padding: 10rem 0 4rem;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A89D' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-header::after {
    display: none;
}

.page-header h1 { 
    color: var(--secondary); 
    font-size: clamp(2.5rem, 5vw, 3.5rem); 
    margin-bottom: 1rem; 
    position: relative;
}

.page-header p { 
    color: var(--text-light); 
    font-size: 1.1rem; 
    position: relative;
}

.breadcrumb { 
    display: flex; 
    justify-content: center; 
    gap: 0.5rem; 
    margin-bottom: 1.5rem; 
    font-size: 0.9rem; 
    position: relative;
}

.breadcrumb a { color: var(--text-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary-dark); }
.breadcrumb span { color: var(--text-light); }
.breadcrumb span:last-child { color: var(--primary-dark); }

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

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--nude);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(201,168,157,0.2); }
textarea.form-control { min-height: 150px; resize: vertical; }

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

/* Contact */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; }

.contact-info {
    background: var(--secondary);
    color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
}

.contact-info h3 { font-size: 1.6rem; margin-bottom: 2rem; }

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

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-text h4 { font-size: 1rem; font-family: 'Outfit', sans-serif; margin-bottom: 0.25rem; }
.contact-info-text p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

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

.contact-form-card h3 { font-size: 1.6rem; margin-bottom: 1.5rem; }

/* Captcha */
.captcha-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--nude);
    padding: 1rem;
    border-radius: var(--radius-sm);
}

.dice-display { display: flex; align-items: center; gap: 0.5rem; font-size: 2rem; }
.captcha-input { width: 70px; text-align: center; font-size: 1.1rem; font-weight: 600; }

.captcha-refresh {
    background: none;
    border: none;
    color: var(--primary-dark);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.captcha-refresh:hover { transform: rotate(180deg); }

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

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

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    font-family: 'Outfit', sans-serif;
}

.faq-question i { color: var(--primary-dark); transition: transform 0.3s ease; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer p { padding: 0 1.5rem 1.5rem; color: var(--text-light); line-height: 1.8; }

/* Alerts */
.alert { padding: 1rem 1.5rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem; }
.alert-success { background: #D1FAE5; color: #065F46; }
.alert-danger { background: #FEE2E2; color: #991B1B; }

/* Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(201,168,157,0.3); }

.btn-primary.loading { opacity: 0.7; pointer-events: none; }

.spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 0.5rem;
}

.btn-primary.loading .spinner { display: inline-block; }

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

/* ===== SERVICES PAGE ===== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    position: relative;
}

.step-card:hover { transform: translateY(-5px); }

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 0 0 3px 3px;
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 1rem;
}

.step-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; font-family: 'Outfit', sans-serif; }
.step-card p { color: var(--text-light); font-size: 0.9rem; }

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

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--nude);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary-dark);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon { background: var(--gradient); color: var(--white); }
.benefit-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; font-family: 'Outfit', sans-serif; }
.benefit-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

.for-who-list { list-style: none; margin-top: 1.5rem; }

.for-who-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--nude);
}

.for-who-list li:last-child { border-bottom: none; }
.for-who-list i { color: var(--primary-dark); font-size: 1.2rem; flex-shrink: 0; }

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

.session-step { text-align: center; padding: 1.5rem; }

.session-step-number {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
}

.session-step h4 { font-size: 1.1rem; margin-bottom: 0.5rem; font-family: 'Outfit', sans-serif; }
.session-step p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

.results-block {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--nude);
    padding: 3rem;
    border-radius: var(--radius);
}

.results-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.results-content { flex: 1; }
.results-content p { color: var(--text-light); font-size: 1.05rem; line-height: 1.8; margin-top: 1rem; }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .hero::before { display: none; }
    .hero-content { padding: 8rem 2rem 3rem; text-align: center; }
    .hero-text { margin: 0 auto 2rem; }
    .hero-cta { justify-content: center; }
    .hero-image { height: auto; padding: 2rem; }
    .hero-image img { max-width: 400px; }
    .hero-badge { bottom: 10%; left: 10%; }
    
    .about-wrapper, .zones-wrapper, .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .about-images { height: 400px; }
    
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    
    .testimonials-header { flex-direction: column; text-align: center; gap: 1.5rem; }
    .rating-block { text-align: center; }
    
    .steps-grid, .benefits-grid, .session-steps { grid-template-columns: repeat(2, 1fr); }
    .results-block { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .nav-menu, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    
    .hero-content { padding: 6rem 1.5rem 2rem; }
    .hero h1 { font-size: 2.2rem; }
    .hero-image img { max-width: 300px; }
    .hero-badge { display: none; }
    
    .services-grid { grid-template-columns: 1fr; }
    .expertise-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    
    .form-row { grid-template-columns: 1fr; }
    .about-highlights { grid-template-columns: 1fr; }
    .zones-list { grid-template-columns: 1fr; }
    
    .steps-grid, .benefits-grid, .session-steps { grid-template-columns: 1fr; }
    
    .about-images { height: auto; }
    .about-img-main { width: 100%; height: 300px; object-fit: cover; }
    .about-img-small { display: none; }
}

@media (max-width: 480px) {
    .section { padding: 4rem 0; }
    .container { padding: 0 1.25rem; }
    
    .hero h1 { font-size: 1.9rem; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn-gold, .hero-cta .btn-ghost { width: 100%; justify-content: center; }
    
    .section-title { font-size: 1.8rem; }
    .testimonial-card { flex: 0 0 300px; }
    
    .captcha-box { flex-wrap: wrap; }
}

/* ===== Blog ===== */
.blog-article-content { font-size: 1.05rem; line-height: 1.8; color: var(--text-medium, #444); }
.blog-article-content h2 { font-size: 1.6rem; font-weight: 700; margin: 2.2rem 0 1rem; }
.blog-article-content h3 { font-size: 1.3rem; font-weight: 700; margin: 1.6rem 0 .75rem; }
.blog-article-content p { margin-bottom: 1.2rem; }
.blog-article-content ul, .blog-article-content ol { margin: 0 0 1.2rem 1.4rem; }
.blog-article-content li { margin-bottom: .5rem; }
.blog-article-content img { max-width: 100%; border-radius: var(--radius, 12px); margin: 1.5rem 0; }
.blog-article-content a { color: var(--primary, #333); }

/* ===== A PROPOS — citation + suite du récit ===== */
.about-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--primary-dark);
    border-left: 3px solid var(--primary);
    padding: 0.25rem 0 0.25rem 1.75rem;
    margin: 0 0 2rem;
}

.about-story-section { background: var(--cream); }

.about-story {
    max-width: 820px;
    margin: 0 auto;
}

.about-story p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.about-story p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
    .about-quote { font-size: 1.25rem; padding-left: 1.25rem; }
}

/* ===== AVIS GOOGLE — lien vers la fiche ===== */
a.rating-block { text-decoration: none; color: inherit; display: block; transition: transform .2s ease; }
a.rating-block:hover { transform: translateY(-2px); }

.testimonials-source { text-align: center; margin-top: 2.5rem; }

.testimonials-source a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--primary-light);
    padding-bottom: 0.25rem;
    transition: color .2s ease, border-color .2s ease;
}

.testimonials-source a:hover { color: var(--secondary); border-color: var(--primary); }
