/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    /* Palette - Orange Vif Lumineux
       Couleurs vibrantes avec effet de lumière et brillance */
    --primary: #FF6B2C;
    --primary-light: #FF8F5C;
    --primary-dark: #E5551A;
    --gold: #FFB800;
    --gold-light: #FFE066;
    --silver: #C0C0C0;
    --silver-light: #E8E8E8;
    --white: #FFFFFF;
    --cream: #FFFFFF;
    --neutral-light: #FEFEFE;
    --neutral-medium: #F5F5F5;
    --neutral-dark: #2D2926;
    --text-primary: #2D2926;
    --text-secondary: #555555;
    --text-light: #888888;

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Animation */
    --transition-fast: 200ms ease;
    --transition-base: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slower: 800ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows - Plus de brillance et de lumière */
    --shadow-sm: 0 2px 8px rgba(45, 41, 38, 0.06);
    --shadow-md: 0 4px 20px rgba(45, 41, 38, 0.10);
    --shadow-lg: 0 8px 40px rgba(45, 41, 38, 0.15);
    --shadow-gold: 0 4px 30px rgba(255, 184, 0, 0.4);
    --shadow-primary: 0 4px 25px rgba(255, 107, 44, 0.45);
    --glow-gold: 0 0 50px rgba(255, 184, 0, 0.6);
    --glow-primary: 0 0 50px rgba(255, 107, 44, 0.5);

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
}

/* Reset */
*, *::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: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
}

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

p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 65ch;
}

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

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   ENHANCED ANIMATIONS - EFFET WOW
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-left {
    transform: translateX(-80px);
}

.animate-on-scroll.animate-right {
    transform: translateX(80px);
}

.animate-on-scroll.animate-scale {
    transform: scale(0.85);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delays - plus progressifs */
.stagger-1 { transition-delay: 0ms; }
.stagger-2 { transition-delay: 150ms; }
.stagger-3 { transition-delay: 300ms; }
.stagger-4 { transition-delay: 450ms; }
.stagger-5 { transition-delay: 600ms; }

/* ============================================
   GLOW & SHIMMER EFFECTS
   ============================================ */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 25px rgba(255, 184, 0, 0.5), 0 0 50px rgba(255, 107, 44, 0.3);
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 184, 0, 0.7), 0 0 100px rgba(255, 107, 44, 0.5);
    }
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

@keyframes float-enhanced {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(2deg); }
    75% { transform: translateY(-8px) rotate(-2deg); }
}

@keyframes glow-pulse {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(255, 184, 0, 0.6)); }
    50% { filter: drop-shadow(0 0 35px rgba(255, 184, 0, 1)); }
}

@keyframes text-shine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.glow-effect {
    animation: pulse-glow 3s ease-in-out infinite;
}

.shimmer-text {
    background: linear-gradient(90deg, var(--gold) 0%, var(--primary) 25%, var(--gold) 50%, var(--primary) 75%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    background: transparent;
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 254, 249, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: var(--space-sm) 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: glow-pulse 3s ease-in-out infinite;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.logo-text span {
    color: var(--primary);
}

.nav-desktop {
    display: none;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: var(--space-lg);
    }
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transition: var(--transition-base);
    box-shadow: 0 0 15px rgba(255, 107, 44, 0.7);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--text-primary);
}

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-primary);
    transition: var(--transition-base);
}

.nav-cta:hover,
.nav-cta:focus {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(255, 107, 44, 0.55);
}

/* Mobile menu button */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 254, 249, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
}

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

.nav-mobile .nav-link {
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

/* ============================================
   HERO SECTION - ENHANCED
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: calc(var(--space-3xl) + 60px) 0 var(--space-3xl);
    background: linear-gradient(165deg, #FFFFFF 0%, #FFF9F5 40%, #FFF5EE 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 70%;
    height: 130%;
    background: radial-gradient(ellipse at center, rgba(255, 107, 44, 0.15) 0%, rgba(255, 143, 92, 0.08) 40%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 45%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(255, 184, 0, 0.15) 0%, transparent 65%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(255, 140, 66, 0.15));
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.hero-badge svg {
    width: 18px;
    height: 18px;
}

.hero-title {
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
    text-shadow: 0 0 40px rgba(255, 107, 44, 0.4);
    white-space: nowrap;
}

.hero-title .highlight::after {
    display: none;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
}

@media (min-width: 480px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
    min-height: 52px;
    position: relative;
    overflow: hidden;
}

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

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

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

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 50px rgba(255, 107, 44, 0.6);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-primary);
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover,
.btn-secondary:focus {
    transform: translateY(-5px) scale(1.03);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-light);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    animation: bounce 2s ease-in-out infinite;
}

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

.hero-scroll svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.about-grid {
    display: grid;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-3xl);
    }
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-gold);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(45, 41, 38, 0.1) 100%);
    z-index: 1;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(255, 140, 66, 0.2));
    border-radius: 50%;
    z-index: -1;
    animation: pulse-glow 4s ease-in-out infinite;
}

.about-image-quote {
    position: absolute;
    bottom: -30px;
    left: 20px;
    right: 20px;
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg), var(--glow-gold);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1rem;
    color: var(--text-primary);
    z-index: 2;
    border-left: 4px solid var(--gold);
}

@media (min-width: 900px) {
    .about-image-quote {
        left: -30px;
        right: auto;
        max-width: 280px;
    }
}

.about-content {
    padding-top: var(--space-xl);
}

@media (min-width: 900px) {
    .about-content {
        padding-top: 0;
    }
}

.about-text {
    margin-bottom: var(--space-lg);
}

.about-text p {
    margin-bottom: var(--space-md);
}

.about-mission {
    background: linear-gradient(135deg, #FFFFFF, #FFF8F0);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-md), 0 0 20px rgba(255, 184, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.about-mission::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

.about-mission h3 {
    color: var(--gold);
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
}

.about-mission p {
    font-style: italic;
    line-height: 1.9;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: var(--white);
    border: 1px solid var(--neutral-medium);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.about-badge:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.about-badge svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
    position: relative;
}

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.services-grid {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

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

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.15), rgba(212, 175, 55, 0.1));
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: var(--glow-primary);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.service-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.service-price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-family: var(--font-heading);
}

.service-price .amount {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary);
}

.service-price .unit {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   MIRACLES SECTION - ULTRA VISIBLE
   ============================================ */
.miracles-showcase {
    background: linear-gradient(135deg, #1a1510 0%, #2d2520 50%, #1a1510 100%);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.miracles-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(212, 115, 74, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
}

.miracles-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.miracles-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(212, 115, 74, 0.1));
    border: 2px solid rgba(201, 162, 39, 0.5);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-lg);
}

.miracles-badge span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.miracles-number-container {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-lg);
}

.miracles-number {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: "lnum" 1, "tnum" 1;
    background: linear-gradient(135deg, var(--gold) 0%, #f5e6a3 25%, var(--gold) 50%, #d4af55 75%, var(--gold) 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-shine 6s ease-in-out infinite;
    text-shadow: none;
    filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.12));
    transition: filter 1s ease;
}

.miracles-plus {
    position: absolute;
    top: 0;
    right: -0.5em;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 50%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-shine 4s linear infinite;
}

.miracles-label {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--white);
    margin-bottom: var(--space-md);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.miracles-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.8;
}

.miracles-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, var(--gold), var(--primary));
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 40px rgba(201, 162, 39, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.miracles-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 60px rgba(201, 162, 39, 0.6);
}

.miracles-cta svg {
    width: 24px;
    height: 24px;
}

/* Miracles section - Mobile responsive */
@media (max-width: 767px) {
    .miracles-showcase {
        padding: var(--space-xl) 0;
    }

    .miracles-number {
        font-size: clamp(4rem, 18vw, 6rem);
    }

    .miracles-plus {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        right: -0.6em;
    }

    .miracles-number-container {
        margin-bottom: var(--space-md);
    }

    .miracles-badge {
        margin-bottom: var(--space-md);
    }

    .miracles-badge span {
        font-size: 0.75rem;
    }

    .miracles-label {
        font-size: clamp(1.4rem, 5vw, 2rem);
        margin-bottom: var(--space-sm);
    }

    .miracles-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 var(--space-sm);
        margin-bottom: var(--space-lg);
    }

    .miracles-cta {
        font-size: 0.95rem;
        padding: var(--space-sm) var(--space-lg);
    }

    .miracles-cta svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 380px) {
    .miracles-number {
        font-size: 3.5rem;
    }

    .miracles-plus {
        font-size: 1.5rem;
    }

    .miracles-label {
        font-size: 1.2rem;
    }

    .miracles-subtitle {
        font-size: 0.85rem;
    }

    .miracles-cta {
        font-size: 0.85rem;
        padding: var(--space-sm) var(--space-md);
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: linear-gradient(180deg, #FFFDF8 0%, #FFF9F0 40%, #FFFDF8 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.testimonials-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.testimonials-grid {
    display: block;
    position: relative;
    min-height: 280px;
}

.testimonial-card {
    background: linear-gradient(145deg, #FFFFFF 0%, #FFFBF5 50%, #FFF7EE 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: none;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(255, 107, 44, 0.1), rgba(212, 175, 55, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.testimonial-quote-icon {
    font-size: 3.5rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.2;
    font-family: Georgia, serif;
    margin-bottom: 0.5rem;
    display: block;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

.testimonial-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(255, 107, 44, 0.08);
    border: 1px solid rgba(255, 107, 44, 0.2);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: var(--space-sm);
}

.testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15), 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-md);
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.5));
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    position: relative;
    font-style: italic;
}

.testimonial-text.truncated {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-text.expanded {
    -webkit-line-clamp: unset;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: var(--space-md);
    transition: var(--transition-fast);
    letter-spacing: 0.02em;
}

.read-more-btn:hover {
    color: var(--gold);
    text-decoration: underline;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 1.05rem;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--text-primary);
}

.testimonial-info span {
    font-size: 0.82rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

/* ============================================
   TESTIMONIALS CAROUSEL
   ============================================ */
.testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 850px;
    margin: 0 auto;
}

.testimonials-grid {
    flex: 1;
    min-width: 0;
}

.testimonial-card.carousel-visible {
    display: block;
    margin: 0 auto;
    opacity: 1 !important;
    transform: none !important;
}

.testimonial-card.carousel-enter-next {
    animation: carousel-enter-next 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes carousel-enter-next {
    0% {
        opacity: 0 !important;
        transform: translateX(80px) scale(0.92) rotateY(-4deg) !important;
        filter: blur(3px);
    }
    100% {
        opacity: 1 !important;
        transform: translateX(0) scale(1) rotateY(0) !important;
        filter: blur(0);
    }
}

.testimonial-card.carousel-enter-prev {
    animation: carousel-enter-prev 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes carousel-enter-prev {
    0% {
        opacity: 0 !important;
        transform: translateX(-80px) scale(0.92) rotateY(4deg) !important;
        filter: blur(3px);
    }
    100% {
        opacity: 1 !important;
        transform: translateX(0) scale(1) rotateY(0) !important;
        filter: blur(0);
    }
}

.carousel-arrow {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: linear-gradient(145deg, #FFFDF5, #FFF5E6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
    margin: 0 1.5rem;
}

.carousel-arrow:hover {
    background: linear-gradient(135deg, var(--gold), #e8b930);
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45), 0 0 0 4px rgba(212, 175, 55, 0.1);
    transform: scale(1.12);
}

.carousel-arrow:hover svg {
    color: var(--white);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.carousel-arrow svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
    transition: all 0.35s ease;
}

.carousel-arrow:disabled {
    opacity: 0.2;
    cursor: default;
    border-color: rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: none;
}

.carousel-arrow:disabled:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.4);
}

.carousel-arrow:disabled:hover svg {
    color: var(--gold);
    filter: none;
}

@media (max-width: 767px) {
    .carousel-arrow {
        width: 40px;
        height: 40px;
        margin: 0 0.5rem;
    }
    .carousel-arrow svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
}

.faq-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    box-shadow: var(--shadow-lg), 0 0 20px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.faq-question {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition-base);
    min-height: 60px;
}

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

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-answer-inner {
    padding: 0 var(--space-lg) var(--space-lg);
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    max-width: none;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
}

@media (min-width: 480px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-white:hover,
.btn-white:focus {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover,
.btn-outline-white:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-5px) scale(1.03);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--neutral-dark);
    padding: var(--space-xl) 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-brand .logo-text {
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm) var(--space-lg);
    justify-content: center;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

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

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--glow-primary);
}

.footer-social svg {
    width: 22px;
    height: 22px;
}

.footer-bottom {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   WHATSAPP WIDGET
   ============================================ */
.whatsapp-widget {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 900;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5);
    transition: var(--transition-base);
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 40px rgba(37, 211, 102, 0.7);
        transform: scale(1.05);
    }
}

.whatsapp-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
    width: 34px;
    height: 34px;
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + var(--space-sm));
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {
    .whatsapp-widget {
        bottom: var(--space-sm);
        right: var(--space-sm);
    }

    .whatsapp-btn {
        width: 48px;
        height: 48px;
    }

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

    .whatsapp-tooltip {
        display: none;
    }
}

/* ============================================
   ANGEL WINGS DECORATION
   ============================================ */
.wings-decoration {
    display: none;
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Skip to main content */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    z-index: 9999;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   LIGHT RAYS EFFECT
   ============================================ */
.light-rays {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(255, 184, 0, 0.12) 0%, rgba(255, 107, 44, 0.06) 30%, transparent 60%);
    pointer-events: none;
}
