/* ========================================
   LIBRE SOY - CENTRO HOLÍSTICO
   Tema: Espiritual Premium Mobile-First
   ======================================== */

/* Variables CSS - Paleta Espiritual */
:root {
    --primary-purple: #7b2d8e;
    --primary-purple-light: #a855c7;
    --primary-purple-dark: #5a1a6e;
    --accent-gold: #d4af37;
    --accent-gold-light: #f0d77c;
    --accent-rose: #e8567f;
    --accent-teal: #2dd4bf;
    --bg-deep: #0a0812;
    --bg-dark: #110e1a;
    --bg-card: #1a1525;
    --bg-card-hover: #231e30;
    --text-white: #f5f0ff;
    --text-gray: #b8b0c8;
    --text-light: #8a80a0;
    --success-green: #25d366;
    --warning-orange: #ff9800;
    --shadow-purple: rgba(123, 45, 142, 0.35);
    --shadow-gold: rgba(212, 175, 55, 0.25);
    --gradient-main: linear-gradient(135deg, #7b2d8e 0%, #a855c7 50%, #7b2d8e 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f0d77c 50%, #d4af37 100%);
    --gradient-dark: linear-gradient(180deg, #1a1525 0%, #0a0812 100%);
    --gradient-card: linear-gradient(145deg, rgba(123,45,142,0.08) 0%, rgba(212,175,55,0.04) 100%);
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-deep);
    color: var(--text-white);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ========================================
   PANTALLA DE BIENVENIDA
   ======================================== */
.welcome-screen {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, #1a0e2e 0%, #0a0812 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.welcome-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: particleFloat 6s infinite;
    opacity: 0;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    20% { opacity: 1; }
    80% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.welcome-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 70%, rgba(123, 45, 142, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
}

.welcome-content {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.welcome-mandala {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mandala-ring {
    position: absolute;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
}

.ring-1 { width: 150px; height: 150px; animation: spin 20s linear infinite; }
.ring-2 { width: 110px; height: 110px; border-color: rgba(123, 45, 142, 0.3); animation: spinReverse 15s linear infinite; }
.ring-3 { width: 70px; height: 70px; border-color: rgba(212, 175, 55, 0.4); animation: spin 10s linear infinite; }

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

.welcome-lotus {
    font-size: 2rem;
    color: var(--accent-gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    animation: pulseGlow 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes pulseGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(212, 175, 55, 0.4); transform: scale(1); }
    50% { text-shadow: 0 0 40px rgba(212, 175, 55, 0.8); transform: scale(1.05); }
}

.welcome-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--text-white);
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    text-shadow: 0 0 40px rgba(123, 45, 142, 0.4);
}

.welcome-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.5em;
    margin-bottom: 10px;
}

.welcome-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--text-gray);
    letter-spacing: 0.05em;
}

.welcome-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 35px 0;
}

.ornament-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.ornament-symbol {
    color: var(--accent-gold);
    font-size: 1rem;
    letter-spacing: 0.3em;
}

.enter-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--gradient-main);
    color: var(--text-white);
    border: none;
    padding: 18px 45px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px var(--shadow-purple);
    position: relative;
    overflow: hidden;
}

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

.enter-btn:hover::before { left: 100%; }
.enter-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 50px var(--shadow-purple); }
.enter-btn:active { transform: translateY(-1px); }

/* ========================================
   HEADER
   ======================================== */
.header {
    background: linear-gradient(180deg, rgba(10, 8, 18, 0.98) 0%, rgba(10, 8, 18, 0.92) 100%);
    backdrop-filter: blur(20px);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 500;
    border-bottom: 1px solid rgba(123, 45, 142, 0.2);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
}

.header-logo {
    width: 45px;
    height: 45px;
    background: var(--gradient-main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--shadow-purple);
}

.logo-symbol {
    font-size: 1.4rem;
    color: var(--accent-gold);
}

.header-text { flex: 1; margin-left: 12px; }

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 0.1em;
}

.brand-sub {
    font-size: 0.65rem;
    color: var(--accent-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.menu-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(123, 45, 142, 0.3);
    background: rgba(123, 45, 142, 0.1);
    color: var(--text-white);
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.menu-toggle:hover { background: var(--primary-purple); border-color: var(--primary-purple); }

/* ========================================
   MOBILE NAV OVERLAY
   ======================================== */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 18, 0.97);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.mobile-nav-content { text-align: center; padding: 40px 20px; }

.close-nav {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: var(--text-white);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.close-nav:hover { background: var(--primary-purple); border-color: var(--primary-purple); }

.nav-logo { margin-bottom: 40px; }
.nav-symbol { font-size: 2rem; color: var(--accent-gold); display: block; margin-bottom: 10px; }
.nav-logo h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; letter-spacing: 0.1em; }

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.mobile-nav-links a:hover {
    color: var(--text-white);
    background: rgba(123, 45, 142, 0.15);
}

.mobile-nav-links a i { color: var(--accent-gold); width: 24px; }

.nav-social { display: flex; gap: 20px; justify-content: center; }

.nav-social a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nav-social a:hover { background: var(--accent-gold); color: var(--bg-deep); }

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    inset: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) saturate(0.8);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 8, 18, 0.3) 0%,
        rgba(10, 8, 18, 0.5) 40%,
        rgba(10, 8, 18, 0.95) 85%,
        rgba(10, 8, 18, 1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px 30px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(123, 45, 142, 0.2);
    border: 1px solid rgba(123, 45, 142, 0.3);
    color: var(--accent-gold);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.hero-badge i { font-size: 0.7rem; }

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 15px;
}

.text-accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.hero-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-main);
    color: var(--text-white);
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px var(--shadow-purple);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 35px var(--shadow-purple); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover { background: rgba(212, 175, 55, 0.1); border-color: var(--accent-gold); }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(26, 21, 37, 0.8);
    backdrop-filter: blur(10px);
    padding: 18px 25px;
    border-radius: 16px;
    border: 1px solid rgba(123, 45, 142, 0.15);
}

.stat-item { text-align: center; flex: 1; }
.stat-number { display: block; font-size: 1.5rem; font-weight: 700; color: var(--accent-gold); }
.stat-label { font-size: 0.7rem; color: var(--text-light); letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 35px; background: rgba(123, 45, 142, 0.3); }

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    padding: 50px 20px 30px;
}

.section-symbol {
    font-size: 1.5rem;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--text-gray);
    letter-spacing: 0.02em;
}

.title-underline {
    width: 60px;
    height: 2px;
    background: var(--gradient-main);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ========================================
   SERVICES
   ======================================== */
.services-section {
    padding-bottom: 40px;
}

.service-filters {
    display: flex;
    gap: 8px;
    padding: 0 20px 25px;
    max-width: 600px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.service-filters::-webkit-scrollbar { display: none; }

.filter-btn {
    white-space: nowrap;
    padding: 10px 22px;
    border: 1px solid rgba(123, 45, 142, 0.3);
    background: transparent;
    color: var(--text-gray);
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    color: var(--text-white);
    box-shadow: 0 4px 15px var(--shadow-purple);
}

.services-grid {
    padding: 0 15px;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.service-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(123, 45, 142, 0.1);
    transition: all 0.4s ease;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.05s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.15s; }
.service-card:nth-child(4) { animation-delay: 0.2s; }
.service-card:nth-child(5) { animation-delay: 0.25s; }
.service-card:nth-child(6) { animation-delay: 0.3s; }

.service-card.hidden {
    display: none !important;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(123, 45, 142, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

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

.card-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

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

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

.card-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, var(--bg-card) 0%, transparent 100%);
    pointer-events: none;
}

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(123, 45, 142, 0.85), rgba(168, 85, 199, 0.85));
    color: var(--text-white);
}

.card-badge.sanacion { background: linear-gradient(135deg, rgba(45, 212, 191, 0.85), rgba(80, 230, 210, 0.85)); color: #0a0812; }
.card-badge.espiritual { background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(240, 215, 124, 0.9)); color: #0a0812; }

.card-content { padding: 20px; }

.card-icon {
    width: 42px;
    height: 42px;
    background: rgba(123, 45, 142, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 12px;
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.card-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-duration {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-action {
    background: var(--gradient-main);
    color: var(--text-white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.03em;
}

.card-action:hover { transform: translateY(-1px); box-shadow: 0 4px 15px var(--shadow-purple); }

/* ========================================
   PLANS
   ======================================== */
.plans-section {
    padding-bottom: 50px;
}

.plans-grid {
    padding: 0 15px;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plan-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 30px 25px;
    border: 1px solid rgba(123, 45, 142, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.plan-card.featured {
    border-color: var(--accent-gold);
    box-shadow: 0 0 40px var(--shadow-gold);
}

.plan-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--bg-deep);
    padding: 6px 20px;
    border-radius: 0 0 12px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.plan-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(123, 45, 142, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.plan-card.featured .plan-glow {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
}

.plan-header { text-align: center; margin-bottom: 20px; }

.plan-icon {
    width: 60px;
    height: 60px;
    background: rgba(123, 45, 142, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.3rem;
    color: var(--accent-gold);
}

.plan-card.featured .plan-icon { background: rgba(212, 175, 55, 0.15); }

.plan-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.plan-type {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.plan-price {
    text-align: center;
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 1px solid rgba(123, 45, 142, 0.1);
    border-bottom: 1px solid rgba(123, 45, 142, 0.1);
}

.price-currency { font-size: 1.2rem; font-weight: 500; color: var(--accent-gold); vertical-align: top; }
.price-amount { font-size: 2.5rem; font-weight: 700; color: var(--text-white); }
.price-period { font-size: 0.8rem; color: var(--text-light); }

.plan-features { list-style: none; margin-bottom: 25px; }

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--text-gray);
}

.plan-features li i {
    width: 20px;
    text-align: center;
    color: var(--accent-teal);
    font-size: 0.8rem;
}

.plan-features li.disabled { opacity: 0.4; }
.plan-features li.disabled i { color: var(--text-light); }

.plan-btn {
    width: 100%;
    background: var(--gradient-main);
    color: var(--text-white);
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 25px var(--shadow-purple);
}

.plan-card.featured .plan-btn { background: var(--gradient-gold); color: var(--bg-deep); box-shadow: 0 5px 25px var(--shadow-gold); }

.plan-btn:hover { transform: translateY(-2px); }

/* ========================================
   BOOKING FORM
   ======================================== */
.booking-section { padding-bottom: 50px; }

.booking-container {
    padding: 0 15px;
    max-width: 600px;
    margin: 0 auto;
}

.booking-form {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 30px 20px;
    border: 1px solid rgba(123, 45, 142, 0.1);
}

.form-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 30px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(123, 45, 142, 0.15);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.step.active .step-num {
    background: var(--gradient-main);
    color: var(--text-white);
    box-shadow: 0 4px 15px var(--shadow-purple);
}

.step.completed .step-num {
    background: var(--accent-teal);
    color: var(--bg-deep);
}

.step-label { font-size: 0.7rem; color: var(--text-light); letter-spacing: 0.05em; }
.step.active .step-label { color: var(--text-white); }

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(123, 45, 142, 0.15);
    margin: 0 10px;
    margin-bottom: 20px;
}

.form-panel { display: none; }
.form-panel.active { display: block; animation: fadeInUp 0.3s ease; }

.form-panel-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-gold);
}

.form-group { margin-bottom: 18px; }

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.form-group label i { color: var(--accent-gold); font-size: 0.75rem; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(123, 45, 142, 0.2);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 0.95rem;
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 20px var(--shadow-purple);
}

.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-card); color: var(--text-white); }

.form-nav-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.form-back-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(123, 45, 142, 0.2);
    color: var(--text-gray);
    padding: 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-back-btn:hover { border-color: var(--primary-purple); color: var(--text-white); }

.form-next-btn, .form-submit-btn {
    flex: 2;
    background: var(--gradient-main);
    color: var(--text-white);
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 5px 20px var(--shadow-purple);
    letter-spacing: 0.05em;
}

.form-submit-btn {
    background: linear-gradient(135deg, #25d366, #128c46);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    width: 100%;
}

.form-next-btn:hover, .form-submit-btn:hover { transform: translateY(-2px); }

.booking-summary {
    background: rgba(123, 45, 142, 0.08);
    border: 1px solid rgba(123, 45, 142, 0.15);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 15px;
}

.booking-summary h4 {
    font-size: 0.9rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-details { display: flex; flex-direction: column; gap: 8px; }

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.summary-row .label { color: var(--text-light); }
.summary-row .value { color: var(--text-white); font-weight: 500; }
.summary-row.total { border-top: 1px solid rgba(123, 45, 142, 0.2); padding-top: 10px; margin-top: 5px; }
.summary-row.total .value { color: var(--accent-gold); font-weight: 700; font-size: 1.1rem; }

/* ========================================
   ABOUT
   ======================================== */
.about-section { padding: 0 0 50px; }

.about-content {
    padding: 0 15px;
    max-width: 600px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    height: 250px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, var(--bg-deep) 100%);
}

.about-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.about-text p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.value-item {
    background: rgba(123, 45, 142, 0.08);
    border: 1px solid rgba(123, 45, 142, 0.1);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover { border-color: var(--primary-purple); transform: translateY(-2px); }

.value-item i {
    font-size: 1.2rem;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 8px;
}

.value-item span { font-size: 0.8rem; color: var(--text-gray); }

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section { padding-bottom: 50px; }

.testimonials-slider {
    padding: 0 15px;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(123, 45, 142, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover { border-color: rgba(212, 175, 55, 0.2); }

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
    width: 42px;
    height: 42px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.author-info strong { display: block; font-size: 0.9rem; }
.author-info span { font-size: 0.75rem; color: var(--accent-gold); }

/* ========================================
   CONTACT
   ======================================== */
.contact-section { padding-bottom: 40px; }

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 15px;
    max-width: 600px;
    margin: 0 auto 20px;
}

.contact-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    text-decoration: none;
    color: var(--text-white);
    border: 1px solid rgba(123, 45, 142, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover { border-color: var(--primary-purple); transform: translateY(-3px); }
.contact-card.whatsapp:hover { border-color: var(--success-green); box-shadow: 0 5px 20px rgba(37, 211, 102, 0.2); }

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.contact-card.whatsapp .contact-icon { color: var(--success-green); }

.contact-card h4 { font-size: 0.85rem; margin-bottom: 5px; font-weight: 600; }
.contact-card p { font-size: 0.75rem; color: var(--text-gray); }

.contact-schedule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    font-size: 0.8rem;
    color: var(--text-gray);
    text-align: center;
}

.contact-schedule i { color: var(--accent-gold); }

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-card);
    padding: 40px 20px;
    border-top: 1px solid rgba(123, 45, 142, 0.15);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.footer-symbol { font-size: 1.5rem; color: var(--accent-gold); }

.footer-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.footer-tagline { font-size: 0.8rem; color: var(--accent-gold); margin-bottom: 20px; }

.footer-social { display: flex; gap: 15px; justify-content: center; margin-bottom: 20px; }

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(123, 45, 142, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover { background: var(--primary-purple); color: var(--text-white); border-color: var(--primary-purple); }

.footer-links { margin-bottom: 20px; }

.admin-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.admin-link:hover { color: var(--primary-purple); }

.footer-copy { font-size: 0.75rem; color: var(--text-light); margin-bottom: 8px; }

.footer-mantra {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-style: italic;
}

/* ========================================
   MODAL
   ======================================== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 8000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal.active { opacity: 1; visibility: visible; }

.success-modal {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px 30px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    border: 1px solid rgba(123, 45, 142, 0.2);
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.modal.active .success-modal { transform: scale(1); }

.success-icon { margin-bottom: 20px; }

.success-circle {
    font-size: 3rem;
    color: var(--accent-gold);
    animation: pulseGlow 2s ease-in-out infinite;
}

.success-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.success-message { font-size: 1rem; margin-bottom: 8px; }
.success-submessage { font-size: 0.85rem; color: var(--text-gray); line-height: 1.5; margin-bottom: 15px; }

.success-order {
    background: rgba(123, 45, 142, 0.1);
    border: 1px solid rgba(123, 45, 142, 0.2);
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    color: var(--primary-purple-light);
    font-size: 1rem;
    margin-bottom: 15px;
}

.success-thanks {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.success-btn {
    width: 100%;
    background: var(--gradient-main);
    color: var(--text-white);
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px var(--shadow-purple);
}

.success-btn:hover { transform: translateY(-2px); }

/* ========================================
   SCROLLBAR
   ======================================== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--primary-purple); border-radius: 3px; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 380px) {
    .welcome-title { font-size: 2.8rem; }
    .hero-title { font-size: 2rem; }
    .hero-stats { flex-direction: column; gap: 12px; }
    .stat-divider { width: 60px; height: 1px; }
    .contact-cards { grid-template-columns: 1fr; }
}

@media (min-width: 768px) {
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .plans-grid {
        flex-direction: row;
    }
    .plan-card { flex: 1; }
    .contact-cards { grid-template-columns: repeat(4, 1fr); }
}
