/* ==========================================================================
   LANDING PAGE ZOOM GOOGLE MAPS FOR SPA - LUXURY LIGHT THEME (SPA & BEAUTY)
   ========================================================================== */

:root {
    /* Brand Colors - Luxury Rose Gold, Champagne & Warm Cream */
    --primary-rose-gold: #c87d6b;
    --rose-gold-glow: #e8a598;
    --rose-gold-dark: #a25847;
    --rose-gold-gradient: linear-gradient(135deg, #e59d8c 0%, #c87d6b 50%, #aa5f4e 100%);
    --rose-gold-gradient-hover: linear-gradient(135deg, #f0b2a3 0%, #d88f7d 50%, #b86c5b 100%);
    
    --primary-gold: #c59838;
    --gold-gradient: linear-gradient(135deg, #e4ba61 0%, #c59838 50%, #a4761a 100%);
    --gold-gradient-hover: linear-gradient(135deg, #f3cf7e 0%, #d9ac49 50%, #b88624 100%);
    
    /* Light Theme Backgrounds */
    --bg-main: #fdfbf9;
    --bg-secondary: #f7f1ec;
    --bg-card: #ffffff;
    --bg-card-soft: #fff9f6;
    --bg-card-hover: #ffffff;
    
    --border-subtle: rgba(200, 125, 107, 0.14);
    --border-light: #eddcd5;
    --border-gold: rgba(200, 125, 107, 0.35);
    --border-gold-glow: rgba(200, 125, 107, 0.65);
    
    /* Text Colors for Crisp Readability on Light BG */
    --text-primary: #221c1a;
    --text-heading: #1f1614;
    --text-secondary: #524744;
    --text-muted: #7c6f6b;
    
    --accent-emerald: #059669;
    --accent-red: #e11d48;
    --zalo-blue: #0068ff;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    /* Shadows & Glows for Light Aesthetic */
    --shadow-soft: 0 8px 30px rgba(180, 120, 105, 0.08);
    --shadow-card: 0 15px 35px -5px rgba(160, 100, 85, 0.12);
    --shadow-rose: 0 10px 25px -3px rgba(200, 125, 107, 0.35);
    --shadow-glass: 0 8px 32px 0 rgba(190, 140, 125, 0.12);
    
    /* Transitions & Radius */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* Base Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-secondary);
    line-height: 1.68;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Helpers */
h1, h2, h3, h4 {
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.3;
}

.text-center { text-align: center; }
.text-gold { color: var(--primary-rose-gold); }
.highlight-gold {
    background: var(--rose-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Section Shared Styles */
.section {
    padding: 95px 0;
    position: relative;
}

.section-header {
    margin-bottom: 55px;
}

.sub-heading {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--primary-rose-gold);
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 6px 16px;
    background: rgba(200, 125, 107, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
}

.section-title {
    font-size: 2.35rem;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
    color: var(--text-heading);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--rose-gold-gradient);
    color: #ffffff;
    box-shadow: var(--shadow-rose);
}

.btn-primary:hover {
    background: var(--rose-gold-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(200, 125, 107, 0.45);
    color: #ffffff;
}

.btn-glow {
    animation: breathingGlow 3s infinite alternate;
}

@keyframes breathingGlow {
    0% { box-shadow: 0 0 12px rgba(200, 125, 107, 0.3); }
    100% { box-shadow: 0 0 28px rgba(200, 125, 107, 0.6); }
}

.btn-outline {
    background: #ffffff;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
}

.btn-outline:hover {
    background: var(--bg-card-soft);
    border-color: var(--primary-rose-gold);
    color: var(--primary-rose-gold);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--rose-gold-gradient);
    color: #ffffff;
    box-shadow: var(--shadow-rose);
}

.btn-gold:hover {
    background: var(--rose-gold-gradient-hover);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-zalo {
    background: linear-gradient(135deg, #0084ff 0%, #0056cc 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 104, 255, 0.35);
}

.btn-zalo:hover {
    background: linear-gradient(135deg, #1a94ff 0%, #0068ff 100%);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 9px 20px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

.btn-link {
    background: none;
    color: var(--text-muted);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 8px;
}

.btn-link:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

/* ==========================================================================
   TOP BAR & NAVIGATION
   ========================================================================== */

.top-bar {
    background: linear-gradient(90deg, #fcedea 0%, #f7ded7 50%, #fcedea 100%);
    border-bottom: 1px solid rgba(200, 125, 107, 0.2);
    padding: 9px 0;
    font-size: 0.88rem;
    color: var(--text-heading);
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.badge-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e11d48;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

.top-bar-link {
    color: var(--primary-rose-gold);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.top-bar-link:hover {
    text-decoration: underline;
}

/* Main Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 253, 250, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 25px rgba(180, 130, 115, 0.08);
    border-bottom-color: var(--border-gold);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
}

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

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--rose-gold-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(200, 125, 107, 0.35);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    color: var(--text-heading);
}

.logo-sub {
    font-size: 0.72rem;
    color: var(--primary-rose-gold);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-list a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.nav-list a:hover {
    color: var(--primary-rose-gold);
}

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

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    z-index: 200;
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 35px rgba(180, 120, 100, 0.2);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border-light);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

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

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: auto;
}

.drawer-links a {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-heading);
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.drawer-links a:hover {
    color: var(--primary-rose-gold);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    padding: 75px 0 95px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top left, #fff1ec 0%, #fdfbf9 50%, #f7f1ec 100%);
}

.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    opacity: 0.5;
    z-index: 0;
}

.glow-1 {
    width: 480px;
    height: 480px;
    background: #fed7cc;
    top: -100px;
    left: -120px;
}

.glow-2 {
    width: 420px;
    height: 420px;
    background: #fde8d7;
    bottom: -60px;
    right: -80px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 125, 107, 0.12);
    border: 1px solid var(--border-gold);
    color: var(--primary-rose-gold);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.85rem;
    line-height: 1.22;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
    color: var(--text-heading);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Event Meta Box */
.event-meta-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    box-shadow: var(--shadow-soft);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.meta-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(200, 125, 107, 0.12);
    color: var(--primary-rose-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.meta-info {
    display: flex;
    flex-direction: column;
}

.meta-info .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.meta-info strong {
    font-size: 0.92rem;
    color: var(--text-heading);
}

.price-free {
    color: var(--accent-emerald) !important;
}

.old-price {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: normal;
    margin-left: 4px;
}

/* Countdown Card */
.countdown-card {
    background: #ffffff;
    border: 1px solid var(--border-gold);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(200, 125, 107, 0.12);
}

.countdown-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-rose-gold);
    font-weight: 700;
    font-size: 0.95rem;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff4f0;
    border: 1px solid var(--border-gold);
    min-width: 52px;
    padding: 6px 4px;
    border-radius: var(--radius-sm);
}

.time-block .num {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.time-block .unit {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 3px;
    font-weight: 700;
}

.colon {
    font-weight: 800;
    color: var(--primary-rose-gold);
    font-size: 1.2rem;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

/* Trust Stats */
.trust-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid var(--border-light);
}

.trust-avatars {
    display: flex;
}

.avatar-sm {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    object-fit: cover;
    margin-left: -12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.avatar-sm:first-child {
    margin-left: 0;
}

.trust-text .stars {
    color: #f59e0b;
    letter-spacing: 2px;
    font-size: 0.95rem;
}

.trust-text p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.trust-text strong {
    color: var(--text-heading);
}

/* Hero Visual Showcase */
.hero-visual {
    position: relative;
}

.glass-card-mockup {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 20px 45px rgba(180, 120, 100, 0.15), 0 0 25px rgba(200, 125, 107, 0.08);
    position: relative;
}

.float-badge {
    position: absolute;
    background: #ffffff;
    border: 1px solid var(--border-gold);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(180, 120, 100, 0.18);
    z-index: 2;
    animation: floatAnimation 4s ease-in-out infinite;
}

.float-badge-1 {
    top: -20px;
    right: -15px;
}

.float-badge-2 {
    bottom: 25px;
    left: -20px;
    animation-delay: 2s;
}

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

.float-badge i {
    font-size: 1.4rem;
    color: var(--primary-rose-gold);
}

.float-badge small {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.float-badge strong {
    font-size: 0.95rem;
    color: var(--text-heading);
}

.map-preview-card {
    background: #fbf8f5;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.map-top-bar {
    background: #f3eae4;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
}

.map-search-input {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.map-search-input i {
    color: var(--primary-rose-gold);
}

.map-featured-result {
    padding: 20px;
}

.badge-top1 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--rose-gold-gradient);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
    box-shadow: 0 4px 10px rgba(200, 125, 107, 0.3);
}

.spa-card-header {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}

.spa-thumb {
    width: 88px;
    height: 88px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.spa-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spa-details h3 {
    font-size: 1.15rem;
    margin-bottom: 5px;
    color: var(--text-heading);
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.rating-num {
    font-weight: 800;
    color: var(--text-heading);
    font-size: 0.95rem;
}

.stars-gold {
    color: #f59e0b;
    font-size: 0.85rem;
}

.review-count {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.verified-check {
    color: #0284c7;
    font-size: 0.95rem;
}

.spa-details .category {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.spa-details .category i {
    color: var(--primary-rose-gold);
}

.status-open {
    font-size: 0.82rem;
    color: var(--accent-emerald);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot-green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-emerald);
}

.action-buttons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.act-btn {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 8px 4px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: var(--transition-smooth);
}

.act-btn.active {
    background: #fff0eb;
    border-color: var(--primary-rose-gold);
    color: var(--primary-rose-gold);
    font-weight: 700;
}

.growth-stats-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 12px 8px;
    text-align: center;
}

.g-item .g-num {
    display: block;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary-rose-gold);
}

.g-item .g-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
}

.social-proof-pill {
    margin-top: 15px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #047857;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

/* ==========================================================================
   PAIN POINTS SECTION
   ========================================================================== */

.pain-section {
    background: #f7f1ec;
    border-top: 1px solid var(--border-light);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 45px;
}

.pain-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: var(--shadow-soft);
}

.pain-card:hover {
    transform: translateY(-5px);
    border-color: #fda4af;
    box-shadow: 0 15px 30px rgba(225, 29, 72, 0.1);
}

.pain-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #ffe4e6;
    color: #e11d48;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.pain-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-heading);
}

.pain-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.solution-callout {
    background: #ffffff;
    border: 2px solid var(--primary-rose-gold);
    border-radius: var(--radius-lg);
    padding: 34px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 15px 40px rgba(200, 125, 107, 0.15);
}

.callout-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--rose-gold-gradient);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-rose);
}

.callout-content {
    flex: 1;
}

.callout-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--primary-rose-gold);
}

.callout-content p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   CURRICULUM / MODULES SECTION
   ========================================================================== */

.curriculum-section {
    background: var(--bg-main);
}

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

.module-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 38px;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.module-card:hover {
    border-color: var(--primary-rose-gold);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.module-card.featured {
    border: 2px solid var(--primary-rose-gold);
    background: #fffbf9;
    box-shadow: 0 15px 35px rgba(200, 125, 107, 0.15);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--rose-gold-gradient);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(200, 125, 107, 0.3);
}

.module-number {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-rose-gold);
    margin-bottom: 12px;
}

.module-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(200, 125, 107, 0.12);
    color: var(--primary-rose-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.module-title {
    font-size: 1.35rem;
    margin-bottom: 18px;
    color: var(--text-heading);
}

.module-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.module-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.55;
}

.module-list li i {
    color: var(--accent-emerald);
    font-size: 0.95rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ==========================================================================
   SPEAKER SECTION
   ========================================================================== */

.speaker-section {
    background: #f7f1ec;
}

.speaker-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 50px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
    align-items: center;
    box-shadow: var(--shadow-card);
}

.speaker-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid #ffffff;
    box-shadow: 0 15px 35px rgba(180, 120, 100, 0.2);
}

.speaker-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.speaker-exp-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.speaker-exp-badge strong {
    font-size: 1.25rem;
    color: var(--primary-rose-gold);
}

.speaker-exp-badge span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.speaker-name {
    font-size: 2.2rem;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    color: var(--text-heading);
}

.speaker-title {
    font-size: 1rem;
    color: var(--primary-rose-gold);
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.speaker-bio {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.speaker-achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.achieve-item {
    background: #fff8f5;
    border: 1px solid var(--border-light);
    padding: 14px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
}

.achieve-item i {
    font-size: 1.5rem;
    color: var(--primary-rose-gold);
}

.achieve-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-heading);
}

.achieve-item span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.speaker-quote {
    background: #fff3ee;
    border-left: 4px solid var(--primary-rose-gold);
    padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    display: flex;
    gap: 14px;
}

.speaker-quote i {
    font-size: 1.3rem;
    color: var(--primary-rose-gold);
}

.speaker-quote p {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-heading);
}

/* ==========================================================================
   TESTIMONIALS & BONUSES
   ========================================================================== */

.case-studies-section {
    background: var(--bg-main);
}

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

.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.testimonial-card:hover {
    border-color: var(--primary-rose-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.testi-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-rose-gold);
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.testi-header h4 {
    font-size: 1.05rem;
    color: var(--text-heading);
}

.testi-header p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.testi-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.68;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-tag {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Bonus Gifts */
.bonus-section {
    background: #f7f1ec;
}

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

.bonus-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.bonus-card:hover {
    border-color: var(--primary-rose-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.bonus-card.featured {
    border: 2px solid var(--primary-rose-gold);
    background: #fffdfc;
    box-shadow: 0 15px 35px rgba(200, 125, 107, 0.15);
}

.bonus-badge {
    align-self: flex-start;
    background: #fceedc;
    color: var(--primary-rose-gold);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.bonus-badge.highlight {
    background: var(--rose-gold-gradient);
    color: #ffffff;
}

.bonus-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(200, 125, 107, 0.12);
    color: var(--primary-rose-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.bonus-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-heading);
}

.bonus-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    flex: 1;
}

.bonus-value {
    background: #fff5f2;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

.bonus-value strong {
    color: var(--accent-red);
    text-decoration: line-through;
}

/* ==========================================================================
   REGISTRATION FORM SECTION
   ========================================================================== */

.register-section {
    background: linear-gradient(180deg, #fdfbf9 0%, #faede8 100%);
    position: relative;
    padding: 100px 0;
}

.register-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.register-info .badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--rose-gold-gradient);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    box-shadow: var(--shadow-rose);
}

.register-info h2 {
    font-size: 2.3rem;
    font-family: var(--font-heading);
    margin-bottom: 16px;
    line-height: 1.25;
    color: var(--text-heading);
}

.reg-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.reg-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 35px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    color: var(--text-heading);
}

.benefit-item i {
    color: var(--accent-emerald);
    font-size: 1.1rem;
}

.reg-urgency {
    background: #ffffff;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    box-shadow: var(--shadow-soft);
}

.reg-urgency p {
    font-size: 0.95rem;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.progress-bar-wrap {
    width: 100%;
    height: 10px;
    background: #f0e2dc;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar-fill {
    height: 100%;
    background: var(--rose-gold-gradient);
    border-radius: var(--radius-full);
    transition: width 1s ease-in-out;
}

/* Form Card */
.register-form-card {
    background: #ffffff;
    border: 2px solid var(--primary-rose-gold);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(180, 120, 100, 0.25), 0 0 35px rgba(200, 125, 107, 0.12);
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header h3 {
    font-size: 1.5rem;
    color: var(--primary-rose-gold);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.form-header p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--primary-rose-gold);
    margin-right: 4px;
}

.required {
    color: var(--accent-red);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    background: #fffcfb;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-heading);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--primary-rose-gold);
    box-shadow: 0 0 0 3px rgba(200, 125, 107, 0.15);
}

.form-group select option {
    background: #ffffff;
    color: var(--text-heading);
}

.error-msg {
    display: none;
    font-size: 0.78rem;
    color: #e11d48;
    margin-top: 5px;
    font-weight: 600;
}

.form-group.has-error input,
.form-group.has-error select {
    border-color: #e11d48;
    background: #fff1f2;
}

.form-group.has-error .error-msg {
    display: block;
}

.privacy-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 14px;
}

.privacy-note i {
    color: var(--accent-emerald);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-section {
    background: var(--bg-main);
}

.faq-accordion {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.faq-item.active {
    border-color: var(--primary-rose-gold);
    box-shadow: 0 10px 25px rgba(200, 125, 107, 0.12);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-heading);
    cursor: pointer;
    text-align: left;
    gap: 15px;
    font-family: var(--font-body);
}

.faq-question i {
    color: var(--primary-rose-gold);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 22px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    border-top: 1px solid var(--border-light);
    padding-top: 15px;
}

/* Final CTA Section */
.final-cta-section {
    padding: 50px 0 95px;
    background: var(--bg-main);
}

.final-cta-card {
    background: linear-gradient(135deg, #fff0eb 0%, #fceedc 50%, #fff7f2 100%);
    border: 2px solid var(--primary-rose-gold);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(200, 125, 107, 0.15);
}

.cta-badge {
    display: inline-block;
    color: var(--accent-red);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.final-cta-card h2 {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    max-width: 800px;
    margin: 0 auto 16px;
    color: var(--text-heading);
}

.final-cta-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    background: #251c19;
    color: #ded1cb;
    border-top: 1px solid #3d2f2a;
    padding: 70px 0 30px;
}

.site-footer h4,
.site-footer .logo-title {
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-desc {
    font-size: 0.9rem;
    color: #bfaea6;
    margin: 18px 0 22px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f7ede8;
}

.social-links a:hover {
    background: var(--rose-gold-gradient);
    color: #ffffff;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: #bfaea6;
}

.footer-links a:hover {
    color: #f5b0a3;
    padding-left: 5px;
}

.contact-info p {
    font-size: 0.88rem;
    color: #ded1cb;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #f5b0a3;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    font-size: 0.82rem;
    color: #9c8a82;
}

/* ==========================================================================
   MODAL & POPUP DIALOGS
   ========================================================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 20, 18, 0.65);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

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

.modal-card {
    background: #ffffff;
    border: 2px solid var(--primary-rose-gold);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25), 0 0 40px rgba(200, 125, 107, 0.2);
    animation: scaleUp 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleUp {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-confetti {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ecfdf5;
    color: var(--accent-emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 18px;
    border: 2px solid #a7f3d0;
}

.modal-title {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: var(--text-heading);
    margin-bottom: 10px;
}

.modal-welcome {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 22px;
}

.modal-ticket-box {
    background: #fff8f5;
    border: 1px dashed var(--primary-rose-gold);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 24px;
    text-align: left;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.ticket-row:last-child {
    margin-bottom: 0;
}

.ticket-row span {
    color: var(--text-muted);
}

.ticket-code {
    color: var(--primary-rose-gold);
    font-family: monospace;
    font-size: 1.05rem;
    letter-spacing: 1px;
}

.modal-next-steps {
    background: #fff2ed;
    border-radius: var(--radius-sm);
    padding: 14px;
    margin-bottom: 24px;
    text-align: left;
}

.modal-next-steps h4 {
    font-size: 0.85rem;
    color: var(--primary-rose-gold);
    margin-bottom: 6px;
}

.modal-next-steps p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Live Toast (FOMO) */
.live-toast {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #ffffff;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(180, 120, 100, 0.2);
    z-index: 90;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 360px;
}

.live-toast.show {
    transform: translateY(0);
}

.toast-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--rose-gold-gradient);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.toast-text {
    font-size: 0.84rem;
    color: var(--text-heading);
    line-height: 1.35;
    margin-bottom: 2px;
}

.toast-time {
    font-size: 0.72rem;
    color: var(--accent-emerald);
    font-weight: 700;
}

/* Floating Mobile Sticky CTA Bar */
.floating-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--border-light);
    padding: 10px 18px;
    z-index: 95;
    backdrop-filter: blur(12px);
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(180, 120, 100, 0.12);
}

.bar-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bar-info small {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.bar-info strong {
    font-size: 0.85rem;
    color: var(--primary-rose-gold);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .event-meta-box {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .countdown-card {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .trust-stats {
        justify-content: center;
    }

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

    .speaker-card {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 35px;
    }

    .speaker-img {
        height: 380px;
    }

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

    .register-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .main-nav, .header-actions {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .floating-mobile-bar {
        display: flex;
    }

    .live-toast {
        bottom: 80px;
        left: 15px;
        right: 15px;
        max-width: none;
    }

    body {
        padding-bottom: 70px;
    }

    .section {
        padding: 60px 0;
    }

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

    .hero-title {
        font-size: 2.1rem;
    }

    .event-meta-box {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .countdown-card {
        flex-direction: column;
        gap: 12px;
    }

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

    .solution-callout {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

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

    .testimonials-grid,
    .bonuses-grid {
        grid-template-columns: 1fr;
    }

    .speaker-achievements {
        grid-template-columns: 1fr;
    }

    .register-form-card {
        padding: 25px 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}
