/* ============================================================
   PREMIUM UPGRADE CSS — Instant Beauté
   Modern, Innovative, Fluid Design System
   ============================================================ */

/* ── 1. HERO ENHANCEMENTS ─────────────────────────────────── */

.hero {
    height: 88vh;
    background: linear-gradient(160deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 100%),
                url('../images/hero-home.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 0 0 60px 60px;
    position: relative;
    overflow: hidden;
}

/* Animated shimmer overlay on hero */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(171, 115, 124, 0.12) 0%,
        transparent 40%,
        rgba(196, 164, 132, 0.08) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Floating petals particle effect */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255,192,203,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(196,164,132,0.06) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
    animation: heroAmbient 8s ease-in-out infinite alternate;
}

@keyframes heroAmbient {
    0%   { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1;   transform: scale(1.03); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.hero-content h2 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: #ffffff !important;
    margin-bottom: 28px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.55);
    font-style: italic;
    line-height: 1.15;
    letter-spacing: -1px;
    animation: slideDownFade 1s ease-out both;
}

@keyframes slideDownFade {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 50px;
    font-weight: 600;
    background: rgba(255,255,255,0.9);
    color: var(--primary);
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    animation: slideUpFade 1.2s ease-out 0.3s both;
    border: 1px solid rgba(255,255,255,0.5);
}

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

/* Hero CTA button enhanced */
.hero .btn-primary {
    animation: slideUpFade 1.4s ease-out 0.6s both;
    font-size: 1rem;
    padding: 18px 48px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-soft), #aa3a4c);
    border: none;
    box-shadow: 0 12px 35px rgba(171, 115, 124, 0.5);
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero .btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}

.hero .btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 50px rgba(171, 115, 124, 0.65);
    background: linear-gradient(135deg, #aa3a4c, var(--primary-soft));
    color: white;
    border-color: transparent;
}

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

/* Scroll indicator */
.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scrollBounce 2.5s ease-in-out infinite;
    cursor: pointer;
    text-decoration: none;
}

.hero-scroll-hint i {
    font-size: 1.2rem;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
    50%       { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ── 2. HEADER GLASSMORPHISM ──────────────────────────────── */

.site-header {
    background: rgba(255,248,242,0.88) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(171, 115, 124, 0.12) !important;
    box-shadow: 0 2px 30px rgba(0,0,0,0.06) !important;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255,248,242,0.97) !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1) !important;
}

/* Top bar subtle gradient */
.top-bar {
    background: linear-gradient(90deg, var(--primary-soft), #aa3a4c) !important;
}

/* Nav links animated underline upgrade */
.main-nav a {
    transition: color 0.3s ease !important;
    font-weight: 600 !important;
}

.main-nav a::after {
    background: linear-gradient(90deg, var(--primary-soft), #aa3a4c) !important;
    border-radius: 2px !important;
    height: 2px !important;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* ── 3. INTRO SECTION — Photo & Text ─────────────────────── */

.intro-section {
    gap: 80px;
    align-items: center;
}

.intro-image img {
    border-radius: 32px !important;
    box-shadow: 20px 30px 60px rgba(171, 115, 124, 0.25) !important;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.6s ease !important;
    position: relative;
}

.intro-image {
    position: relative;
}

/* Decorative background shape behind the photo */
.intro-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, rgba(196, 164, 132, 0.15), rgba(171, 115, 124, 0.1));
    border-radius: 40px;
    z-index: -1;
    transition: transform 0.6s ease;
}

.intro-image img:hover {
    transform: translateY(-8px) rotate(1deg) !important;
    box-shadow: 25px 40px 80px rgba(171, 115, 124, 0.35) !important;
}

.intro-image:hover::before {
    transform: translate(-5px, -5px);
}

/* Stats row in intro —— new addition */
.intro-stats {
    display: flex;
    gap: 30px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.intro-stat {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.intro-stat .stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.intro-stat .stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

/* ── 4. SERVICE CARDS — Premium Upgrade ──────────────────── */

.services-section {
    background: linear-gradient(180deg, #fff5f0 0%, #ffeee8 100%) !important;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,164,132,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.services-grid {
    gap: 40px !important;
    margin-top: 60px !important;
}

.service-card {
    background: rgba(255,255,255,0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255,255,255,0.9) !important;
    border-radius: 24px !important;
    padding: 45px 30px !important;
    box-shadow: 0 8px 32px rgba(171, 115, 124, 0.1) !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative;
    overflow: hidden;
}

/* Gradient top accent bar */
.service-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-soft), #aa3a4c);
    transition: width 0.4s ease;
    border-radius: 0 0 3px 0;
}

.service-card:hover::after {
    width: 100%;
}

.service-card:hover {
    transform: translateY(-14px) !important;
    box-shadow: 0 30px 60px rgba(171, 115, 124, 0.25) !important;
    border-color: rgba(171, 115, 124, 0.25) !important;
}

.icon-wrapper {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #fff5f0, #ffeee8) !important;
    box-shadow: 0 8px 24px rgba(171, 115, 124, 0.15) !important;
    border: 1px solid rgba(171, 115, 124, 0.1) !important;
    font-size: 2.2rem !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.service-card:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--primary-soft), #aa3a4c) !important;
    color: white !important;
    transform: rotate(15deg) scale(1.1) !important;
    box-shadow: 0 12px 30px rgba(171, 115, 124, 0.4) !important;
}

.service-card h3 {
    font-size: 1.6rem !important;
    color: var(--text-dark) !important;
    margin-bottom: 16px !important;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary) !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    transition: all 0.3s ease !important;
}

.btn-text::after {
    content: '→';
    transition: transform 0.3s ease;
}

.btn-text:hover {
    gap: 10px;
    color: #aa3a4c !important;
}

.btn-text:hover::after {
    transform: translateX(4px);
}

/* ── 5. HOW IT WORKS — New Section ───────────────────────── */

.how-it-works {
    background: linear-gradient(135deg, #3d3536 0%, #2a2020 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(171, 115, 124, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.how-it-works .section-title {
    color: rgba(255,255,255,0.95) !important;
}

.how-it-works .section-title::after {
    background: #3d3536 !important;
    color: rgba(255,255,255,0.6) !important;
}

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 70px;
    position: relative;
}

/* Connecting line between steps */
.hiw-grid::before {
    content: '';
    position: absolute;
    top: 45px;
    left: calc(25% / 2 + 30px);
    right: calc(25% / 2 + 30px);
    height: 1px;
    background: linear-gradient(90deg, rgba(171,115,124,0.3), rgba(196,164,132,0.5), rgba(171,115,124,0.3));
    z-index: 0;
}

.hiw-step {
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease both;
}

.hiw-step:nth-child(1) { animation-delay: 0.1s; }
.hiw-step:nth-child(2) { animation-delay: 0.25s; }
.hiw-step:nth-child(3) { animation-delay: 0.4s; }
.hiw-step:nth-child(4) { animation-delay: 0.55s; }

.hiw-number {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-soft), #aa3a4c);
    color: white;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 12px 35px rgba(171, 115, 124, 0.45);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hiw-step:hover .hiw-number {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 20px 50px rgba(171, 115, 124, 0.6);
}

.hiw-step h4 {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.hiw-step p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 220px;
    margin: 0 auto;
}

/* ── 6. REELS SECTION — Enhanced ─────────────────────────── */

.reels-section {
    background: linear-gradient(180deg, #fff0f3 0%, #fce8ec 100%) !important;
}

.reel-card {
    border-radius: 20px !important;
    border: 2px solid rgba(255,255,255,0.8) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    filter: sepia(20%) brightness(0.95) !important;
}

.reel-card:hover {
    transform: translateY(-14px) scale(1.04) rotate(-1deg) !important;
    box-shadow: 0 30px 60px rgba(171, 115, 124, 0.4) !important;
    border-color: rgba(196,164,132,0.8) !important;
    filter: sepia(0%) brightness(1.02) !important;
}

.reel-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%) !important;
    padding: 25px !important;
}

/* ── 7. INFO SECTION — Elevated ──────────────────────────── */

.info-section {
    background: linear-gradient(180deg, var(--bg-body) 0%, #fff5f0 100%);
}

.info-box {
    background: rgba(255,255,255,0.9) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 40px rgba(171, 115, 124, 0.1) !important;
    padding: 45px 35px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: 1px solid rgba(255,255,255,0.95) !important;
}

.info-box:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 60px rgba(171, 115, 124, 0.2) !important;
}

.info-box::before {
    height: 4px !important;
    background: linear-gradient(90deg, var(--primary-soft), #aa3a4c) !important;
    border-radius: 4px 4px 0 0 !important;
}

/* ── 8. TESTIMONIALS — Dark Section ──────────────────────── */

#livre-or {
    background: linear-gradient(135deg, #3d3536 0%, #2a2020 100%) !important;
    position: relative;
    overflow: hidden;
}

#livre-or::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 164, 132, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial-card {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-radius: 20px !important;
    padding: 35px !important;
    color: white !important;
    transition: all 0.4s ease !important;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.14) !important;
    border-color: rgba(196, 164, 132, 0.4) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2) !important;
}

.testimonial-card .stars {
    color: #f5c518;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
    display: block;
}

.testimonial-card .review-text {
    color: rgba(255,255,255,0.85) !important;
    font-style: italic;
    line-height: 1.75;
    font-size: 0.95rem;
}

.testimonial-card .reviewer-name {
    color: rgba(196, 164, 132, 0.9);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 16px;
    display: block;
}

/* ── 9. NEWSLETTER SECTION ───────────────────────────────── */

.newsletter-box {
    background: linear-gradient(135deg, var(--primary-soft) 0%, #aa3a4c 100%) !important;
    border-radius: 28px !important;
    padding: 70px 50px !important;
    box-shadow: 0 25px 60px rgba(171, 115, 124, 0.4) !important;
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}

.newsletter-box::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}

.newsletter-form {
    background: rgba(255,255,255,0.15) !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    border-radius: 60px !important;
    transition: all 0.3s ease;
}

.newsletter-form:focus-within {
    background: rgba(255,255,255,0.22) !important;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
}

.newsletter-form input {
    background: transparent !important;
    color: white !important;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.65);
}

.newsletter-form button {
    background: white !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    letter-spacing: 0.5px;
}

.newsletter-form button:hover {
    background: #fff5f0 !important;
    transform: scale(1.03) !important;
}

/* ── 10. FOOTER ENHANCEMENT ──────────────────────────────── */

.site-footer {
    background: linear-gradient(135deg, #2a2020 0%, #3d3536 100%) !important;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #aa3a4c, var(--primary-soft), var(--accent-gold), var(--primary-soft), #aa3a4c);
    background-size: 200% 100%;
    animation: gradientShift 5s linear infinite;
}

@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.social-links-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8) !important;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-links-footer a:hover {
    background: linear-gradient(135deg, #E1306C, #833AB4) !important;
    border-color: transparent;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    color: white !important;
}

/* ── 11. SCROLL REVEAL ANIMATIONS ────────────────────────── */

.reveal,
.service-card,
.info-box,
.reel-card,
.hiw-step {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible,
.service-card.visible,
.info-box.visible,
.reel-card.visible,
.hiw-step.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for grids */
.services-grid .service-card:nth-child(1) { transition-delay: 0.0s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.12s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.24s; }

.info-grid .info-box:nth-child(1) { transition-delay: 0.0s; }
.info-grid .info-box:nth-child(2) { transition-delay: 0.12s; }
.info-grid .info-box:nth-child(3) { transition-delay: 0.24s; }

.reels-grid .reel-card:nth-child(1) { transition-delay: 0.0s; }
.reels-grid .reel-card:nth-child(2) { transition-delay: 0.10s; }
.reels-grid .reel-card:nth-child(3) { transition-delay: 0.20s; }
.reels-grid .reel-card:nth-child(4) { transition-delay: 0.30s; }

/* ── 12. SECTION TITLES — Premium Style ──────────────────── */

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem) !important;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-soft), #aa3a4c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Override for dark backgrounds */
#livre-or .section-title,
.how-it-works .section-title {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: rgba(255,255,255,0.95) !important;
    background-clip: unset !important;
    color: rgba(255,255,255,0.95) !important;
}

/* ── 13. BUTTONS GLOBAL GLOW ─────────────────────────────── */

.btn-primary {
    background: linear-gradient(135deg, var(--primary-soft), #aa3a4c) !important;
    border: none !important;
    box-shadow: 0 8px 25px rgba(171, 115, 124, 0.4) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    letter-spacing: 1px !important;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #aa3a4c, var(--primary-soft)) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 45px rgba(171, 115, 124, 0.6) !important;
    color: white !important;
    border-color: transparent !important;
}

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

/* ── 14. CUSTOM CURSOR UPGRADES ──────────────────────────── */

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary) !important;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s ease;
    mix-blend-mode: multiply;
}

.cursor-outline {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(171, 115, 124, 0.5) !important;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

.cursor-outline.hovering {
    width: 50px;
    height: 50px;
    background: rgba(171, 115, 124, 0.08);
    border-color: var(--primary-soft) !important;
}

/* ── 15. FAB BUTTON ENHANCED ─────────────────────────────── */

.fab-booking {
    background: linear-gradient(135deg, var(--primary-soft), #aa3a4c) !important;
    box-shadow: 0 8px 30px rgba(171, 115, 124, 0.55) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.fab-booking:hover {
    transform: scale(1.15) !important;
    box-shadow: 0 15px 45px rgba(171, 115, 124, 0.7) !important;
}

/* ── 16. FLOATING BADGE "NOUVEAU" on Service Cards ────────── */

.service-card-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: linear-gradient(135deg, var(--accent-gold), #e8c98a);
    color: #5a3e00;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 3;
}

/* ── 17. PAGE-SPECIFIC SUBTLE ANIMATIONS ─────────────────── */

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

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

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

/* ── 18. ALERT BOX UPGRADE ───────────────────────────────── */

.alert-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,245,240,0.95)) !important;
    border-left: 4px solid linear-gradient(180deg, var(--primary-soft), #aa3a4c) !important;
    border-color: var(--primary-soft) !important;
    box-shadow: 0 8px 30px rgba(171, 115, 124, 0.12) !important;
    border-radius: 14px !important;
    backdrop-filter: blur(8px) !important;
    transition: all 0.3s ease;
}

.alert-box:hover {
    transform: translateX(4px);
    border-left-color: #aa3a4c !important;
    box-shadow: 0 12px 40px rgba(171, 115, 124, 0.18) !important;
}

/* ── 19. MOBILE ENHANCEMENTS ──────────────────────────────── */

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll !important;
        border-radius: 0 0 40px 40px;
        height: 85vh;
    }

    .services-grid {
        gap: 24px !important;
    }

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

    .newsletter-box {
        padding: 45px 25px !important;
    }

    .intro-stats {
        gap: 20px;
    }

    .intro-stat .stat-number {
        font-size: 1.8rem;
    }

    .hiw-grid::before {
        display: none;
    }
}

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

    .intro-stats {
        gap: 16px;
    }
}

/* ── 20. AMBIENT GLOW SECTION DIVIDERS ───────────────────── */

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(171, 115, 124, 0.25), rgba(196,164,132,0.3), rgba(171, 115, 124, 0.25), transparent);
    margin: 0;
    border: none;
}

/* ── 21. SMOOTH GUESTBOOK SECTION TITLE ──────────────────── */

#livre-or h2.section-title {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: white !important;
    background-clip: unset !important;
}
