/* =============================================
   EMC BEAUTY - STYLE PRINCIPAL V2
   Charte : Rose/Fuchsia + Noir + Doré
   Version GIRLY avec animations
   ============================================= */

/* Variables CSS */
:root {
    /* Couleurs principales */
    --pink-lightest: #fdf2f8;
    --pink-light: #f8e8ee;
    --pink: #e8a0bf;
    --pink-dark: #c77da5;
    --fuchsia: #d63384;
    --fuchsia-dark: #a91d5a;
    --gold: #c9a86c;
    --gold-light: #e8d4b8;
    --gold-lightest: #f5efe6;
    --black: #1a1a1a;
    --white: #ffffff;
    --gray-light: #f8f8f8;
    --gray: #6c757d;
    --gray-dark: #343a40;

    /* Typographie */
    --font-heading: "Cormorant Garamond", Georgia, serif;
    --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-script: "Great Vibes", cursive;

    /* Espacements */
    --section-padding: 120px;
    --container-width: 1200px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

/* 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);
    font-weight: 300;
    line-height: 1.7;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Canvas pour animations flottantes */
#floating-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
}

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

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.script-text {
    font-family: var(--font-script);
    font-size: 1.3em;
    color: var(--fuchsia);
}

/* =============================================
   BANNIÈRE PROMO DÉFILANTE
   ============================================= */
.promo-banner {
    background: linear-gradient(
        90deg,
        var(--fuchsia),
        var(--pink-dark),
        var(--fuchsia)
    );
    background-size: 200% 100%;
    animation: gradient-shift 5s ease infinite;
    color: var(--white);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

@keyframes gradient-shift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.promo-content {
    display: flex;
    animation: scroll-left 20s linear infinite;
    white-space: nowrap;
}

.promo-content span {
    padding: 0 50px;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(214, 51, 132, 0.1);
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--black);
    letter-spacing: 3px;
}

.logo-script {
    font-family: var(--font-script);
    font-size: 1.2rem;
    color: var(--fuchsia);
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--black);
    position: relative;
}

.nav-menu a:not(.btn-nav)::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--fuchsia), var(--pink));
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    background: linear-gradient(135deg, var(--fuchsia), var(--pink-dark));
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214, 51, 132, 0.4);
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--black);
    transition: var(--transition);
    border-radius: 2px;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(
        135deg,
        var(--pink-lightest) 0%,
        var(--white) 40%,
        var(--gold-lightest) 100%
    );
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.hero-bg-right {
    right: 0;
    background-image: url("https://images.unsplash.com/photo-1616683693504-3ea7e9ad6fec?w=1200");
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(
        to left,
        rgba(0, 0, 0, 1),
        rgba(0, 0, 0, 0)
    );
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, var(--pink-light) 0%, transparent 70%);
    opacity: 0.5;
    animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.hero-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 100%
    );
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 0.95rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--fuchsia);
    margin-bottom: 20px;
    font-weight: 400;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero h1 .highlight {
    font-family: var(--font-script);
    font-size: 1.2em;
    color: var(--fuchsia);
    display: inline-block;
    animation: float-gentle 3s ease-in-out infinite;
}

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

.hero-text {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Boutons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--fuchsia), var(--pink-dark));
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(214, 51, 132, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary::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: var(--transition-slow);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(214, 51, 132, 0.45);
}

.btn-primary .btn-icon {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.btn-primary:hover .btn-icon {
    transform: translateX(5px);
}

.btn-primary.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    box-shadow: 0 8px 30px rgba(201, 168, 108, 0.35);
}

.btn-primary.btn-gold:hover {
    box-shadow: 0 12px 40px rgba(201, 168, 108, 0.45);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--black);
    padding: 16px 32px;
    border: 2px solid var(--pink);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--transition);
}

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

.btn-secondary.btn-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-secondary.btn-light:hover {
    background: var(--white);
    color: var(--fuchsia);
    border-color: var(--white);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-scroll span {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--fuchsia), transparent);
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }
    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
}

/* =============================================
   SECTIONS AVEC FOND IMAGE
   ============================================= */
.section-with-bg {
    position: relative;
    overflow: hidden;
}

.section-bg {
    position: absolute;
    top: 0;
    width: 45%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
}

.section-bg-left {
    left: 0;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 1),
        rgba(0, 0, 0, 0)
    );
}

.section-bg-right {
    right: 0;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(
        to left,
        rgba(0, 0, 0, 1),
        rgba(0, 0, 0, 0)
    );
}

/* =============================================
   ÉLÉMENTS FLOTTANTS (Cœurs, étoiles, etc.)
   ============================================= */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.floating-heart,
.floating-star,
.floating-sparkle,
.floating-butterfly,
.floating-unicorn,
.floating-flower,
.floating-star-light {
    position: absolute;
    left: var(--x);
    top: var(--y);
    animation: float-element 6s ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0.6;
}

/* Cœur */
.floating-heart::before {
    content: "💖";
    font-size: 1.5rem;
}

/* Étoile */
.floating-star::before {
    content: "✨";
    font-size: 1.2rem;
}

/* Sparkle */
.floating-sparkle::before {
    content: "⭐";
    font-size: 1rem;
}

/* Papillon */
.floating-butterfly::before {
    content: "🦋";
    font-size: 1.8rem;
}

/* Licorne */
.floating-unicorn::before {
    content: "🦄";
    font-size: 2rem;
}

/* Fleur */
.floating-flower::before {
    content: "🌸";
    font-size: 1.5rem;
}

/* Étoile claire (pour fond sombre) */
.floating-star-light::before {
    content: "✦";
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.4);
}

@keyframes float-element {
    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) rotate(5deg) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) rotate(-3deg) scale(1);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-25px) rotate(3deg) scale(1.05);
        opacity: 0.9;
    }
}

/* =============================================
   SECTIONS COMMUNES
   ============================================= */
.section-badge {
    display: inline-block;
    background: linear-gradient(
        135deg,
        var(--pink-light),
        var(--gold-lightest)
    );
    color: var(--fuchsia);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-badge-light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    text-align: center;
    margin-bottom: 15px;
    color: var(--black);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 60px;
}

/* =============================================
   BÉNÉFICES
   ============================================= */
.benefits {
    padding: var(--section-padding) 0;
    background: linear-gradient(
        180deg,
        var(--white) 0%,
        var(--pink-lightest) 100%
    );
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 50px 30px;
    border-radius: 30px;
    background: var(--white);
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--fuchsia),
        var(--pink),
        var(--gold)
    );
    transform: scaleX(0);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(214, 51, 132, 0.15);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.icon-custom {
    width: 100%;
    height: 100%;
}

.icon-wide {
    width: 100px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--black);
}

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

/* =============================================
   PROMESSES
   ============================================= */
.promises {
    padding: var(--section-padding) 0;
    background: linear-gradient(
        180deg,
        var(--pink-lightest) 0%,
        var(--white) 100%
    );
    text-align: center;
}

.promises-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.promise {
    position: relative;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.promise:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(214, 51, 132, 0.12);
}

.promise-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}

.promise-number {
    font-family: var(--font-script);
    font-size: 3.5rem;
    color: var(--pink);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    right: 20px;
}

.promise h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--black);
}

.promise p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* =============================================
   SERVICES / TARIFS
   ============================================= */
.services {
    padding: var(--section-padding) 0;
    background: var(--white);
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--pink-light);
    border-radius: 25px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    text-align: left;
}

.service-card:hover {
    border-color: var(--fuchsia);
    box-shadow: 0 20px 50px rgba(214, 51, 132, 0.15);
    transform: translateY(-8px);
}

.service-card.featured {
    border-color: var(--fuchsia);
    background: linear-gradient(
        135deg,
        var(--white) 0%,
        var(--pink-lightest) 100%
    );
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 25px;
    background: linear-gradient(135deg, var(--fuchsia), var(--pink-dark));
    color: var(--white);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 5px 20px rgba(214, 51, 132, 0.3);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.service-header h3 {
    font-size: 1.4rem;
    color: var(--black);
}

.service-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--fuchsia);
    background: var(--pink-light);
    padding: 6px 12px;
    border-radius: 15px;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 25px;
    min-height: 60px;
}

.service-prices {
    border-top: 1px dashed var(--pink);
    padding-top: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.price-row span:first-child {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--fuchsia);
}

.other-services {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 35px;
    background: linear-gradient(
        135deg,
        var(--pink-lightest),
        var(--gold-lightest)
    );
    border-radius: 20px;
    margin-bottom: 40px;
}

.other-service {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
}

.other-service .price {
    font-size: 1.2rem;
}

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

/* =============================================
   GALERIE
   ============================================= */
.gallery {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--black) 0%, #2a1a2e 100%);
    color: var(--white);
    text-align: center;
    position: relative;
}

.gallery .section-title,
.gallery .section-subtitle {
    color: var(--white);
}

.gallery .section-subtitle {
    opacity: 0.7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* =============================================
   TÉMOIGNAGES
   ============================================= */
.testimonials {
    padding: var(--section-padding) 0;
    background: linear-gradient(
        135deg,
        var(--pink-lightest) 0%,
        var(--white) 50%,
        var(--gold-lightest) 100%
    );
    text-align: center;
}

.testimonial {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    font-family: var(--font-script);
    font-size: 5rem;
    color: var(--pink);
    line-height: 1;
    margin-bottom: -20px;
}

.testimonial-content p {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--black);
}

.testimonial-stars {
    font-size: 1.5rem;
    color: var(--gold);
    margin: 25px 0 15px;
    letter-spacing: 5px;
}

.testimonial-author {
    margin-top: 20px;
}

.author-name {
    font-size: 0.95rem;
    color: var(--gray);
}

/* =============================================
   À PROPOS
   ============================================= */
.about {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-image-decoration {
    position: absolute;
    top: -25px;
    left: -25px;
    right: 25px;
    bottom: 25px;
    border: 3px solid var(--pink);
    border-radius: 30px;
    z-index: -1;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.about-intro {
    font-size: 1.15rem;
    color: var(--fuchsia);
    margin-bottom: 25px;
    font-weight: 400;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--gray-dark);
    font-size: 1rem;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--fuchsia);
}

/* =============================================
   INFOS PRATIQUES
   ============================================= */
.info-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(
        180deg,
        var(--white) 0%,
        var(--pink-lightest) 100%
    );
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.info-card {
    background: var(--white);
    padding: 35px 20px;
    border-radius: 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(214, 51, 132, 0.12);
}

.info-icon {
    margin-bottom: 15px;
    opacity: 0.8;
}

.info-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--fuchsia), var(--pink));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(214, 51, 132, 0.3);
}

.info-card p {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.info-card strong {
    color: var(--black);
}

/* =============================================
   RÉSERVATION
   ============================================= */
.booking {
    padding: var(--section-padding) 0;
    background: var(--white);
    text-align: center;
}

.booking-wrapper {
    max-width: 600px;
    margin: 0 auto 60px;
    background: linear-gradient(135deg, var(--pink-lightest), var(--white));
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(214, 51, 132, 0.15);
    padding: 50px 40px;
}

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

.booking-icon {
    margin-bottom: 25px;
}

.booking-placeholder h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--black);
}

.booking-placeholder p {
    color: var(--gray);
    margin-bottom: 30px;
}

.booking-fallback {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px dashed var(--pink);
}

.booking-fallback p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.booking-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.gift-card {
    max-width: 650px;
    margin: 0 auto;
    background: linear-gradient(
        135deg,
        var(--pink-light) 0%,
        var(--gold-light) 100%
    );
    border-radius: 30px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gift-card-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    opacity: 0.2;
    transform: rotate(15deg);
}

.gift-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--black);
}

.gift-card p {
    color: var(--gray-dark);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
    padding: var(--section-padding) 0;
    background: linear-gradient(
        180deg,
        var(--pink-lightest) 0%,
        var(--white) 100%
    );
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.logo-large .logo-text {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 600;
    color: var(--black);
    letter-spacing: 8px;
}

.logo-large .logo-script {
    font-family: var(--font-script);
    font-size: 4rem;
    color: var(--fuchsia);
    margin-top: -15px;
}

.contact-info h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        var(--pink-light),
        var(--gold-lightest)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--fuchsia);
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--black);
    font-size: 1rem;
}

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

.contact-item .small {
    font-size: 0.8rem;
    color: var(--gray);
}

.contact-item a:hover {
    color: var(--fuchsia);
}

.contact-social {
    margin-top: 40px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--fuchsia), var(--pink-dark));
    color: var(--white);
    font-size: 0.95rem;
    box-shadow: 0 5px 25px rgba(214, 51, 132, 0.3);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(214, 51, 132, 0.4);
}

.contact-image img {
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, var(--black) 0%, #2a1a2e 100%);
    color: var(--white);
    text-align: center;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    color: var(--black);
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.footer-content {
    opacity: 0.9;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.footer .logo-text {
    color: var(--white);
    font-size: 2rem;
}

.footer .logo-script {
    color: var(--pink);
    font-size: 1.3rem;
}

.footer p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.footer-hearts {
    font-size: 1.5rem;
    margin: 20px 0;
    letter-spacing: 10px;
}

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* =============================================
   ANIMATIONS D'ENTRÉE
   ============================================= */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promises-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-bg {
        opacity: 0.05;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .navbar {
        top: 44px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: var(--transition);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    }

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

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .benefits-grid,
    .promises-grid,
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

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

    .other-services {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .other-service {
        justify-content: center;
    }

    .gift-card {
        padding: 40px 25px;
    }

    .section-bg {
        display: none;
    }

    .floating-elements {
        opacity: 0.4;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .booking-wrapper {
        padding: 35px 25px;
    }
}
