/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

:root {
    /* Fluid Typography */
    --step-0: clamp(14px, 1.2vw + 0.4rem, 18px);
    --step-1: clamp(18px, 1.5vw + 0.5rem, 24px);
    --step-2: clamp(24px, 2vw + 0.5rem, 32px);
    --step-3: clamp(32px, 2.5vw + 0.5rem, 48px);
    --step-4: clamp(48px, 3vw + 0.5rem, 64px);
    
    /* Luxury Pink Color Palette */
    --primary-color: #E91E63;
    --secondary-color: #C2185B;
    --accent-color: #F06292;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-light: #64748B;
    --background-white: #FFFFFF;
    --background-light: #FEFEFE;
    --background-blue: #F8FAFC;
    --border-color: #E2E8F0;
    --border-radius: 12px;
    --border-radius-large: 16px;
    --shadow-light: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-medium: 0 4px 6px rgba(15, 23, 42, 0.12);
    --shadow-heavy: 0 10px 15px rgba(15, 23, 42, 0.20);
    --transition: all 0.3s ease;
    
    /* Pink Luxury Color Palette */
    --rose-pink: #E91E63;
    --deep-pink: #C2185B;
    --light-pink: #F8BBD9;
    --dusty-pink: #D4A5A5;
    --blush-pink: #F5C6C6;
    --mauve-pink: #C8A2C8;
    --coral-pink: #FF6B9D;
    --magenta: #E91E63;
    --hot-pink: #FF1493;
    --pale-pink: #FCE4EC;
    
    /* Updated Hero-Inspired Colors */
    --hero-pink: var(--rose-pink);
    --hero-coral: var(--coral-pink);
    --hero-warm-red: var(--deep-pink);
    --hero-deep-pink: var(--deep-pink);
    --hero-rose: var(--dusty-pink);
    
    /* Updated Luxury Colors */
    --luxury-gold: var(--dusty-pink);
    --luxury-teal: var(--mauve-pink);
    
    /* Additional Palette Variations */
    --luxury-cream: #FEF7ED;
    --luxury-charcoal: #1E293B;
    --luxury-slate: #334155;
    --luxury-ink: #0F172A;
    --luxury-bone: #FEFEFE;
    --luxury-pearl: #F8FAFC;
    /* 0 when no TikTok banner; overridden on body.has-promo-banner */
    --site-promo-banner-height: 0px;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: var(--step-0);
    line-height: 1.5;
    color: var(--text-primary);
    background: var(--background-white);
    min-height: 100dvh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: var(--text-primary);
}

h1 {
    font-size: var(--step-4);
    font-weight: 700;
}

h2 {
    font-size: var(--step-3);
    font-weight: 600;
}

h3 {
    font-size: var(--step-2);
    font-weight: 600;
}

h4 {
    font-size: var(--step-1);
    font-weight: 500;
}

p {
    font-family: 'Inter', sans-serif;
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top promo — TikTok (fixed; below nav in stacking so menu stays clickable) */
body.has-promo-banner {
    --site-promo-banner-height: 58px;
}

.site-promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    min-height: var(--site-promo-banner-height);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #0a0a0a 0%, #1a0f18 40%, #241018 100%);
    border-bottom: 1px solid rgba(168, 85, 184, 0.45);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

.site-promo-banner-dismiss {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 1002;
    width: 36px;
    height: 36px;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 50%;
    font-size: 1.35rem;
    line-height: 1;
    font-weight: 400;
    color: #f1f5f9;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-promo-banner-dismiss:hover {
    background: rgba(168, 85, 184, 0.55);
    color: #fff;
}

.site-promo-banner-dismiss:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.site-promo-banner-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 48px 10px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 18px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.8125rem, 2.2vw, 0.9375rem);
    line-height: 1.4;
    color: #f8fafc;
    text-align: center;
}

.site-promo-banner-text strong {
    color: #ca69e2;
    font-weight: 700;
}

.site-promo-banner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.8125rem;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #ca69e2 0%, #a855b8 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    white-space: nowrap;
    pointer-events: auto;
}

.site-promo-banner-cta:hover {
    background: linear-gradient(135deg, #b957d5 0%, #9333b3 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(168, 85, 184, 0.45);
}

body.has-promo-banner .faq-hero {
    padding-top: 156px;
}

@media (max-width: 720px) {
    body.has-promo-banner {
        --site-promo-banner-height: 92px;
    }

    .site-promo-banner-inner {
        flex-direction: column;
        gap: 8px;
        padding: 10px 16px 12px;
    }

    body.has-promo-banner .faq-hero {
        padding-top: 182px;
    }
}

html.promo-banner-dismissed .site-promo-banner {
    display: none !important;
}

html.promo-banner-dismissed body.has-promo-banner {
    --site-promo-banner-height: 0px;
}

html.promo-banner-dismissed body.has-promo-banner .faq-hero {
    padding-top: 120px;
}

/* Navigation — fixed to viewport; direct child of body so no ancestor transform/filter traps it */
.navbar {
    background: transparent;
    position: fixed;
    top: var(--site-promo-banner-height);
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1003;
    padding: 1rem 0;
    margin: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease, background 0.3s ease, box-shadow 0.3s ease, top 0.25s ease;
    will-change: opacity;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-logo h2,
.navbar.scrolled .nav-menu a {
    color: var(--text-primary);
    text-shadow: none;
}

.navbar.scrolled .nav-menu a:hover {
    color: var(--rose-pink);
}

.navbar.scrolled .hamburger span {
    background: var(--text-primary);
}

.navbar.navbar-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.navbar.hero-nav {
    background: rgba(248, 240, 252, 0.4);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(168, 85, 184, 0.12);
    box-shadow: 0 4px 14px rgba(107, 33, 168, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-link:hover .logo-text h2 {
    color: var(--primary-color);
}

.nav-logo h2 {
    color: white;
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7), 0 1px 5px rgba(0, 0, 0, 0.5);
}

.ambassador-badge {
    background: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
    align-self: flex-start;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7), 0 1px 5px rgba(0, 0, 0, 0.5);
}

.nav-menu a:hover {
    color: var(--luxury-gold);
    background: rgba(255, 255, 255, 0.1);
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.8), 0 1px 8px rgba(0, 0, 0, 0.6);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: 0.3s;
}

/* Hero Section - True Luxury Design */
.hero {
    min-height: 100dvh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(135deg, #f6f0fb 0%, #ece1f7 45%, #e8dcf5 100%);
}

.hero-bg-image {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 25%, rgba(202, 105, 226, 0.18) 0%, transparent 42%),
        radial-gradient(circle at 82% 18%, rgba(168, 85, 184, 0.16) 0%, transparent 38%),
        radial-gradient(circle at 50% 85%, rgba(186, 120, 220, 0.12) 0%, transparent 46%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(202, 105, 226, 0.025) 20px,
            rgba(202, 105, 226, 0.025) 40px
        );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    min-height: 100dvh;
    padding-top: 170px;
    padding-bottom: 70px;
}

.hero-text {
    max-width: 600px;
    color: white;
    text-align: center;
}

.hero-title {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0 0 24px 0;
    color: #1f172d;
    text-shadow: 0 2px 8px rgba(60, 35, 92, 0.16);
    background: transparent;
    padding: 20px 30px;
    border-radius: 0;
    backdrop-filter: none;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #332645;
    margin: 0 0 40px 0;
    font-weight: 500;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: none;
    background: transparent;
    padding: 16px 24px;
    border-radius: 0;
    backdrop-filter: none;
}

.hero-action .cta-button.primary {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: min(420px, 100%);
    gap: 20px;
    padding-left: 26px;
    padding-right: 24px;
    font-weight: 700;
    letter-spacing: 0.08em;
    box-shadow: 0 10px 28px rgba(138, 64, 180, 0.26);
}

.hero-button-arrow {
    position: relative;
    flex: 0 0 58px;
    height: 2px;
    background: rgba(255, 255, 255, 0.96);
}

.hero-button-arrow::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid rgba(255, 255, 255, 0.96);
    border-right: 2px solid rgba(255, 255, 255, 0.96);
    transform: translateY(-50%) rotate(45deg);
}

.navbar.hero-nav .nav-logo h2,
.navbar.hero-nav .nav-menu a {
    color: #2f2642;
    text-shadow: none;
}

.navbar.hero-nav .nav-menu a:hover {
    color: #6f2c9d;
    background: rgba(202, 105, 226, 0.14);
    text-shadow: none;
}

.hero-action {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-scroll-arrow {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border: 2px solid var(--luxury-gold);
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    background: var(--luxury-gold);
    color: var(--luxury-ink);
    backdrop-filter: blur(20px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
}

.cta-button.primary {
    background: var(--hero-warm-red);
    color: white;
    border-color: var(--hero-warm-red);
}

.cta-button.primary:hover {
    background: var(--hero-deep-pink);
    border-color: var(--hero-deep-pink);
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(233, 30, 99, 0.4);
}

.button-text {
    font-weight: 400;
}

/* Hero Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 24px;
        text-align: center;
        padding-top: 140px;
        padding-bottom: 56px;
    }
    
    .hero-text {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 7vw, 3.5rem);
        font-weight: 400;
        text-shadow: 0 2px 7px rgba(60, 35, 92, 0.15);
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
        font-weight: 400;
        color: black;
    }
    
    .hero-scroll-arrow {
        margin-top: 30px;
    }
    
    .scroll-arrow {
        width: 45px;
        height: 45px;
    }
    
    .scroll-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 0.85rem;
        border-width: 2px;
    }

    .hero-action .cta-button.primary {
        min-width: 100%;
        gap: 16px;
        padding-left: 22px;
        padding-right: 20px;
    }

    .hero-button-arrow {
        flex-basis: 48px;
    }
}

/* Micro texture options - uncomment one to try */
/* Option 1: Subtle dot pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(168, 85, 184, 0.14) 1px, transparent 0);
    background-size: 20px 20px;
    opacity: 0.18;
    z-index: 1;
}

/* Option 2: Diagonal lines (uncomment to use instead of dots)
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(202, 105, 226, 0.1) 2px,
            rgba(202, 105, 226, 0.1) 4px
        );
    opacity: 0.4;
    z-index: 1;
}
*/

/* Option 3: Crosshatch pattern (uncomment to use instead of dots)
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(202, 105, 226, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(202, 105, 226, 0.1) 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.3;
    z-index: 1;
}
*/

/* Option 4: Noise texture (uncomment to use instead of dots)
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0.2;
    z-index: 1;
}
*/


.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-medium);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    background: var(--secondary-color);
}

.cta-button.secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 4/3;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

/* Upcoming Event Section */
.upcoming-event {
    padding: 120px 0;
    background: var(--luxury-pearl);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.upcoming-event h2 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--luxury-ink);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.upcoming-event .section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--luxury-slate);
    margin-bottom: 0;
    font-weight: 400;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.events-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 100%;
}

@media (max-width: 768px) {
    .events-container {
        gap: 40px;
        padding: 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .event-card .event-info {
        padding: 24px 16px;
    }
}

.event-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: left;
    align-items: stretch;
}

.event-header {
    text-align: left;
}

.event-header h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.2;
}

.event-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.event-date {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.date-label {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.time-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.event-description {
    margin-bottom: 24px;
}

.event-description p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.phone-text {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.registration-box {
    background: var(--luxury-bone);
    padding: 24px;
    border-radius: 0;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

.registration-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.registration-text {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.price-text {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
}

.highlights-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.event-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mahjong-tiles {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 200px;
}

.tile {
    background: var(--background-white);
    color: var(--text-primary);
    padding: 20px;
    border-radius: 0;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.tile-1 {
    background: linear-gradient(135deg, var(--background-white) 0%, rgba(202, 105, 226, 0.05) 100%);
}

.tile-2 {
    background: linear-gradient(135deg, var(--background-white) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.tile-3 {
    background: linear-gradient(135deg, var(--background-white) 0%, rgba(236, 72, 153, 0.05) 100%);
}

/* Upcoming Event Section */
.upcoming-event {
    padding: 120px 0;
    background: var(--luxury-pearl);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.upcoming-event h2 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--luxury-ink);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
    width: 100%;
    text-align: center;
}

.section-header h2 {
    position: relative;
    padding-bottom: 16px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ca69e2, #a855b8);
}

.upcoming-event .section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--luxury-slate);
    margin-bottom: 0;
    font-weight: 400;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.event-card {
    background: var(--luxury-bone);
    border-radius: 0;
    padding: 0;
    box-shadow: 0 8px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .events-container {
        padding: 0 24px;
    }
}

.event-card {
    background: var(--luxury-bone);
    border-radius: 0;
    padding: 0;
    box-shadow: 0 8px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 50px rgba(15, 23, 42, 0.12);
}

.event-card .event-image {
    width: 100%;
    height: auto;
    min-height: 400px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.event-card .event-image .event-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.event-card:hover .event-img {
    transform: scale(1.05);
}

.event-card .event-info {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 100%;
}

.event-badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8a36b2;
    background: rgba(202, 105, 226, 0.14);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
    align-self: flex-start;
    border: 1px solid rgba(202, 105, 226, 0.35);
}

.event-info h3 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--luxury-ink);
    margin-bottom: 16px;
    line-height: 1.3;
}

.event-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(202, 105, 226, 0.12) 0%, transparent 70%);
    pointer-events: none;
}


.event-description {
    color: var(--luxury-slate);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.event-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.detail-item {
    background: var(--background-white);
    padding: 20px;
    border-radius: 0;
    box-shadow: var(--shadow-light);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.detail-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.detail-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}


.event-contact {
    background: white;
    padding: 24px;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 4px 16px rgba(202, 105, 226, 0.14);
    position: relative;
    overflow: hidden;
    margin-top: auto;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    gap: 16px;
    box-sizing: border-box;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.event-status-text {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin: 16px 0;
    padding: 8px 0;
    border-bottom: 2px solid #ca69e2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-note {
    color: #475569;
    font-size: 0.95rem;
    text-align: center;
    margin: 12px 0;
    line-height: 1.5;
}

.event-policies {
    width: 100%;
    margin-bottom: 20px;
    padding: 16px;
    background: #F8FAFC;
    border-radius: 8px;
    border-left: 4px solid #ca69e2;
}

.policies-title {
    color: #0F172A;
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.policies-list {
    color: #0F172A;
    font-size: 0.9rem;
    text-align: left;
    margin: 0;
    padding-left: 20px;
    line-height: 1.6;
    list-style-type: disc;
}

.policies-list li {
    margin-bottom: 8px;
}

.policies-list li:last-child {
    margin-bottom: 0;
}

.event-contact-label {
    color: var(--rose-pink) !important;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    margin: 16px 0 12px 0;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.event-contact-info {
    color: var(--rose-pink) !important;
    font-size: 0.95rem;
    text-align: center;
    margin: 8px 0;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.event-contact-info a {
    color: var(--rose-pink);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
}

.event-contact-info a:hover {
    color: var(--deep-pink);
    text-decoration: underline;
}

.event-recap-info {
    text-align: center;
    color: var(--text-primary);
}

.event-recap-info p {
    margin: 8px 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.share-event-btn {
    background: var(--rose-pink);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
    width: 200px;
    text-align: center;
}

.share-event-btn:hover {
    background: var(--deep-pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
}

.event-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    margin: 16px 0;
    align-items: center;
}

.register-btn,
a.register-btn {
    background: var(--hero-warm-red);
    color: white;
    padding: 14px 32px;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
    border: none;
    cursor: pointer;
    width: 200px;
    text-align: center;
    display: inline-block;
}

.register-btn:hover {
    background: var(--deep-pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
}

.recap-btn {
    background: var(--rose-pink);
    color: white;
    padding: 14px 32px;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
    border: none;
    cursor: pointer;
    width: 200px;
    text-align: center;
}

.recap-btn:hover {
    background: var(--deep-pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
}

.event-message {
    text-align: center;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin: 8px 0 0 0;
    font-style: italic;
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.popup-content {
    background: white;
    border-radius: 0;
    max-width: 520px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
    font-weight: 300;
    line-height: 1;
}

.popup-close:hover {
    color: var(--rose-pink);
}

.popup-header {
    background: white;
    padding: 40px 30px 20px 30px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.popup-badge {
    background: var(--rose-pink);
    color: white;
    padding: 8px 16px;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 20px;
}

.popup-header h3 {
    margin: 0 0 12px 0;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
}

.popup-subtitle {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.popup-body {
    padding: 30px;
}

.popup-highlights {
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--pale-pink);
    border-left: 4px solid var(--rose-pink);
}

.highlight-icon {
    margin-right: 16px;
    margin-top: 2px;
    color: var(--rose-pink);
    flex-shrink: 0;
}

.highlight-content {
    flex: 1;
}

.highlight-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.highlight-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
}

.popup-description {
    margin-bottom: 30px;
    padding: 24px;
    background: var(--pale-pink);
    border-left: 4px solid var(--rose-pink);
}

.popup-description p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.popup-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.popup-register-btn {
    background: var(--hero-warm-red);
    color: white;
    padding: 16px 32px;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(233, 30, 99, 0.3);
    font-family: 'Inter', sans-serif;
}

.popup-register-btn:hover {
    background: var(--deep-pink);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.popup-share-btn {
    background: var(--rose-pink);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
    font-family: 'Inter', sans-serif;
}

.popup-share-btn:hover {
    background: var(--deep-pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
}

/* FAQ-inspired modern rounded purple button style across site */
.cta-button,
.service-button,
.register-btn,
a.register-btn,
.share-event-btn,
.form-submit-btn,
.popup-register-btn,
.popup-share-btn,
.social-button {
    border-radius: 999px;
    border: 1px solid rgba(202, 105, 226, 0.28);
    box-shadow: 0 4px 16px rgba(202, 105, 226, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.cta-button.primary,
.service-button,
.register-btn,
a.register-btn,
.form-submit-btn,
.popup-register-btn {
    background: linear-gradient(135deg, #ca69e2 0%, #a855b8 100%);
    color: #fff;
    border-color: rgba(168, 85, 184, 0.45);
}

.cta-button.primary:hover,
.service-button:hover,
.register-btn:hover,
a.register-btn:hover,
.form-submit-btn:hover,
.popup-register-btn:hover {
    background: linear-gradient(135deg, #b957d5 0%, #9333b3 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(168, 85, 184, 0.32);
}

.cta-button.secondary,
.share-event-btn,
.popup-share-btn,
.social-button {
    background: #fff;
    color: #a855b8;
    border-color: rgba(202, 105, 226, 0.5);
}

.cta-button.secondary:hover,
.share-event-btn:hover,
.popup-share-btn:hover,
.social-button:hover {
    background: #ca69e2;
    color: #fff;
    border-color: #ca69e2;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(168, 85, 184, 0.32);
}

.popup-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.popup-footer p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    font-family: 'Inter', sans-serif;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        margin: 20px;
    }
    
    .popup-header {
        padding: 25px 20px 15px 20px;
    }
    
    .popup-header h3 {
        font-size: 1.3rem;
    }
    
    .popup-body {
        padding: 25px 20px;
    }
    
    .popup-actions {
        gap: 10px;
    }
    
    .popup-register-btn,
    .popup-share-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

.event-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.event-contact p {
    margin: 0;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 2;
}

.event-contact .event-contact-label,
.event-contact .event-contact-info {
    color: #8a36b2 !important;
    text-transform: none;
}

.event-contact .event-contact-info a {
    color: #8a36b2 !important;
}

.event-schedule {
    margin-top: 32px;
    padding: 24px;
    background: var(--luxury-bone);
    border-radius: 0;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.event-schedule h4 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    color: var(--luxury-ink);
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0 0 20px 0;
    letter-spacing: -0.01em;
}

.event-schedule ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tournament-date-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    position: relative;
    z-index: 5;
    pointer-events: auto;
}

.tournament-date-tab {
    border: 1px solid rgba(168, 85, 184, 0.28);
    background: #fff;
    color: #7e22ce;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    z-index: 6;
    pointer-events: auto;
    touch-action: manipulation;
}

.tournament-date-tab.is-active {
    background: linear-gradient(135deg, #ca69e2 0%, #a855b8 100%);
    color: #fff;
    border-color: rgba(168, 85, 184, 0.45);
    box-shadow: 0 4px 12px rgba(168, 85, 184, 0.24);
}

.tournament-panel {
    padding: 10px 0 6px;
    border-top: 1px solid var(--border-color);
}

.tournament-panel.is-active {
    display: block;
}

.schedule-line {
    margin: 10px 0 0;
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.5;
}

.schedule-rounds {
    margin: 10px 0 0 0;
    padding: 0 0 0 18px;
    color: var(--text-secondary);
    font-size: 0.91rem;
    line-height: 1.55;
}

.schedule-rounds li {
    padding: 0;
    border-bottom: none;
    margin: 4px 0;
}

.event-schedule li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--luxury-slate);
    font-size: 0.95rem;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.event-schedule li:last-child {
    border-bottom: none;
}

.event-schedule strong {
    color: #a047c6;
    font-weight: 500;
    display: block;
    margin-top: 2px;
    margin-bottom: 2px;
}

.event-schedule li span {
    display: block;
    margin-left: 20px;
    margin-top: 4px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.special-guest-indicator {
    display: inline-flex;
    align-items: center;
    margin: 0 0 10px 0;
    padding: 7px 12px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(90deg, #a855b8, #ca69e2);
    box-shadow: 0 4px 12px rgba(168, 85, 184, 0.28);
}

.tournament-signup-note {
    color: #8a36b2;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    margin: 20px 0 0 0;
    font-style: italic;
    letter-spacing: 0.02em;
}

.tournament-guest-highlight {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.55;
    margin: 18px 0 0 0;
    padding: 14px 16px;
    border-left: 4px solid #a855b8;
    background: rgba(202, 105, 226, 0.12);
}

.tournament-guest-highlight a {
    color: #6b21a8;
    font-weight: 700;
    text-decoration-thickness: 2px;
}

.tournament-countdown {
    margin: 10px 0 0 20px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    max-width: calc(100% - 20px);
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.4;
    color: #7e22ce;
    background: rgba(202, 105, 226, 0.12);
    border: 1px solid rgba(168, 85, 184, 0.28);
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .tournament-date-tabs {
        gap: 8px;
    }

    .tournament-date-tab {
        flex: 1;
        text-align: center;
        padding: 9px 10px;
        font-size: 0.8rem;
    }

    .tournament-panel {
        padding-top: 12px;
    }

    .schedule-line {
        font-size: 0.9rem;
    }

    .schedule-rounds {
        font-size: 0.88rem;
        line-height: 1.5;
        padding-left: 16px;
    }

    .special-guest-indicator {
        font-size: 0.68rem;
        letter-spacing: 0.04em;
        padding: 6px 10px;
        margin-bottom: 8px;
    }

    .tournament-countdown {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        width: 100%;
        justify-content: center;
        font-size: 0.82rem;
    }

    .tournament-guest-highlight {
        font-size: 0.95rem;
        line-height: 1.45;
        padding: 12px 14px;
    }
}

.event-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.detail-card {
    background: var(--luxury-bone);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 16px;
}

.detail-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.1);
    border-color: #a855b8;
}

.detail-icon {
    width: 40px;
    height: 40px;
    background: #a855b8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.detail-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.detail-content {
    flex: 1;
}

.detail-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--luxury-slate);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}

.detail-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 8px;
}

.detail-content {
    flex: 1;
}

.location-directions-wrapper {
    margin-top: 16px;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.location-map-btn {
    display: inline-block;
    padding: 8px 16px;
    background: var(--rose-pink);
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    box-sizing: border-box;
}

.location-map-btn:hover {
    background: var(--deep-pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(233, 30, 99, 0.3);
}

.direction-arrow {
    text-align: center;
    color: var(--rose-pink);
    font-size: 0.75rem;
    margin-top: 4px;
    font-weight: 600;
    line-height: 1;
}

/* Past Events Portfolio Section */
.past-events {
    padding: 120px 0;
    background: var(--luxury-pearl);
}

.past-events h2 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--luxury-ink);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.past-events .section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--luxury-slate);
    margin-bottom: 0;
    font-weight: 400;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.event-portfolio-card {
    background: transparent;
    border-radius: 16px;
    overflow: visible;
    perspective: 1200px;
    box-shadow: none;
    border: none;
    display: block;
    height: 400px;
    cursor: pointer;
    outline: none;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.event-portfolio-card:focus-visible {
    outline: 3px solid rgba(168, 85, 184, 0.55);
    outline-offset: 4px;
}

.event-portfolio-card:hover:not(.is-flipped) {
    transform: translateY(-4px);
}

.event-portfolio-card.is-flipped:hover {
    transform: translateY(-4px);
}

.event-flip {
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(168, 85, 184, 0.22);
    box-shadow: 0 8px 24px rgba(107, 33, 168, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.92)),
        linear-gradient(135deg, #f6f0fb 0%, #ece1f7 48%, #e8dcf5 100%);
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.event-portfolio-card:hover .event-flip,
.event-portfolio-card:focus-visible .event-flip {
    border-color: rgba(168, 85, 184, 0.4);
    box-shadow: 0 12px 28px rgba(138, 64, 180, 0.18);
}

.event-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.7s cubic-bezier(0.2, 0.85, 0.25, 1);
}

.event-portfolio-card.is-flipped .event-flip-inner {
    transform: rotateY(180deg);
}

.event-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
}

.event-face-front {
    display: flex;
    flex-direction: column;
}

.event-front-text {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    flex-grow: 1;
    padding: 20px 20px 18px;
    background: rgba(255, 255, 255, 0.78);
}

.event-face-back {
    transform: rotateY(180deg);
    padding: 18px 18px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 10px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855b8 45%, #6b21a8 100%);
    color: rgba(255, 255, 255, 0.95);
}

.event-img-back {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.event-back-title {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #fff;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.event-location-back {
    color: rgba(255, 255, 255, 0.92) !important;
    opacity: 0.95 !important;
    margin-bottom: 0 !important;
}

.event-portfolio-card.portfolio-card-hint:not(.is-flipped) .event-front-text {
    animation: portfolioCardIntroShake 3s ease-in-out 2 forwards;
    transform-origin: center bottom;
}

.event-portfolio-card.portfolio-card-hint.is-flipped .event-front-text {
    animation: none;
}

@keyframes portfolioCardIntroShake {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    8% {
        transform: translate3d(-4px, -3px, 0) rotate(-1.4deg);
    }
    16% {
        transform: translate3d(4px, 2px, 0) rotate(1.4deg);
    }
    24% {
        transform: translate3d(-3px, 2px, 0) rotate(-1.1deg);
    }
    32% {
        transform: translate3d(3px, -3px, 0) rotate(1deg);
    }
    40% {
        transform: translate3d(-4px, 1px, 0) rotate(-0.95deg);
    }
    48% {
        transform: translate3d(3px, 2px, 0) rotate(0.85deg);
    }
    56% {
        transform: translate3d(-2px, -2px, 0) rotate(-0.7deg);
    }
    64% {
        transform: translate3d(2px, -1px, 0) rotate(0.65deg);
    }
    72% {
        transform: translate3d(-3px, 1px, 0) rotate(-0.5deg);
    }
    80% {
        transform: translate3d(2px, 1px, 0) rotate(0.45deg);
    }
    88% {
        transform: translate3d(-1px, -1px, 0) rotate(-0.25deg);
    }
    96% {
        transform: translate3d(1px, 0, 0) rotate(0.15deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .event-portfolio-card.portfolio-card-hint:not(.is-flipped) .event-front-text {
        animation: none;
    }

    .event-flip-inner {
        transition-duration: 0.01ms;
    }
}

.event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--background-light);
    flex-shrink: 0;
}

.event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.event-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.event-front-text h3,
.event-content h3 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 1.3rem;
    color: var(--luxury-ink);
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.4;
    height: 3.6rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: all 0.3s ease;
}

.event-location {
    font-family: 'Inter', sans-serif;
    color: #8a36b2;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: block;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.event-face-back .event-description {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.65;
    font-size: 0.95rem;
    flex-grow: 1;
    margin-top: 0;
    opacity: 1;
    transform: none;
    transition: none;
    position: static;
}

.event-front-text .event-description,
.event-content .event-description {
    font-family: 'Inter', sans-serif;
    color: var(--luxury-slate);
    line-height: 1.6;
    font-size: 0.9rem;
    flex-grow: 1;
    margin-top: 8px;
    opacity: 1;
    transform: none;
    transition: none;
    position: static;
}

.event-portfolio-card.is-flipped .event-face-front .event-front-text h3,
.event-portfolio-card.is-flipped .event-face-front .event-location {
    transform: none;
    opacity: 1;
}

.event-front-text h3,
.event-front-text .event-location {
    transform: none;
    opacity: 1;
}

.event-front-text .event-location {
    margin-bottom: 6px !important;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--background-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    gap: 12px;
}

.image-placeholder svg {
    color: var(--primary-color);
    opacity: 0.6;
}

.image-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Community Impact Section */
.community-impact {
    padding: 120px 0;
    background: var(--luxury-pearl);
}

.community-impact h2 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--luxury-ink);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.community-impact .section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--luxury-slate);
    margin-bottom: 0;
    font-weight: 400;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.impact-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.impact-icon {
    width: 100px;
    height: 100px;
    background: #a855b8;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 32px rgba(168, 85, 184, 0.3);
}

.impact-icon svg {
    width: 50px;
    height: 50px;
    stroke: currentColor;
}

.impact-details h3 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 1.8rem;
    color: var(--luxury-ink);
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
    letter-spacing: -0.01em;
}

.impact-description {
    color: var(--luxury-slate);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
}

.donation-list {
    margin-bottom: 40px;
}

.donation-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--luxury-bone);
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.donation-item:hover {
    transform: translateY(-2px);
    border-color: var(--hero-pink);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.donation-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.donation-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.donation-content h4 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 1.2rem;
    color: var(--luxury-ink);
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.donation-content p {
    color: var(--luxury-slate);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 32px;
    background: var(--luxury-bone);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.stat-item:hover {
    transform: translateY(-2px);
    border-color: var(--hero-pink);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.stat-number {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #8a36b2;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--luxury-slate);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--luxury-pearl);
}

.services h2 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--luxury-ink);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-align: center;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--luxury-slate);
    margin-bottom: 0;
    font-weight: 400;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin: 0 auto 60px auto;
    align-items: stretch;
    max-width: 1200px;
}

.service-card {
    background: var(--luxury-bone);
    border-radius: 0;
    padding: 40px 32px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 600px;
}

.services-grid .service-card:first-child,
.services-grid .service-card:last-child {
    border-radius: 16px;
}

.service-card.featured {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(168, 85, 184, 0.2);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    border-color: var(--dusty-pink);
}

.service-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.service-icon {
    margin-bottom: 24px;
}

.icon-placeholder {
    width: 80px;
    height: 80px;
    background: #a855b8;
    color: white;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto;
}

.icon-text {
    width: 70px;
    height: 70px;
    background: #a855b8;
    color: white;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(168, 85, 184, 0.3);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.icon-text:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(168, 85, 184, 0.4);
}

.heart-icon {
    width: 80px;
    height: 80px;
    background: var(--rose-pink);
    color: white;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(133, 49, 48, 0.3);
    transition: all 0.3s ease;
    padding: 20px;
}

.heart-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(133, 49, 48, 0.4);
}

.fes-logo {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(202, 105, 226, 0.3);
    transition: all 0.3s ease;
    padding: 8px;
    object-fit: contain;
}

.fes-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(202, 105, 226, 0.4);
}

.lms-logo {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(202, 105, 226, 0.3);
    transition: all 0.3s ease;
    padding: 8px;
    object-fit: contain;
}

.lms-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(202, 105, 226, 0.4);
}

.orange-logo {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(202, 105, 226, 0.3);
    transition: all 0.3s ease;
    padding: 8px;
    object-fit: contain;
}

.orange-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(202, 105, 226, 0.4);
}

.donation-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.service-card h3 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 1.5rem;
    color: var(--luxury-ink);
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.service-price {
    margin-bottom: 20px;
    text-align: center;
}

.service-price .price {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #8a36b2;
    display: block;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
    line-height: 1;
}

.service-price .price-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--luxury-slate);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-card p {
    color: var(--luxury-slate);
    margin-bottom: 24px;
    line-height: 1.6;
    flex-grow: 1;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
    padding: 0;
    min-height: 200px;
}

.service-features li {
    color: var(--luxury-slate);
    padding: 6px 0;
    position: relative;
    padding-left: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.4;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8a36b2;
    font-weight: 700;
    font-size: 0.9rem;
}

.service-button {
    background: linear-gradient(135deg, #ca69e2 0%, #a855b8 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: 100%;
    margin-top: auto;
}

.service-button:hover {
    background: linear-gradient(135deg, #b957d5 0%, #9333b3 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 184, 0.32);
}

.travel-banner {
    background: linear-gradient(45deg, #ca69e2, #a855b8, #ca69e2);
    background-size: 200% 200%;
    animation: travelGradient 3s ease-in-out infinite;
    padding: 8px 16px;
    border-radius: 0;
    text-align: center;
    position: absolute;
    top: -12px;
    right: 20px;
    z-index: 10;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

/* Ensure services card accents stay purple across all breakpoints/cascade order */
.services .icon-text,
.services .icon-placeholder {
    background: #a855b8 !important;
    box-shadow: 0 4px 12px rgba(168, 85, 184, 0.3) !important;
}

.services .service-price .price {
    color: #8a36b2 !important;
}

.services .service-features li::before {
    color: #8a36b2 !important;
}

.services .service-button {
    background: linear-gradient(135deg, #ca69e2 0%, #a855b8 100%) !important;
    border-color: rgba(168, 85, 184, 0.45) !important;
}

.services .service-button:hover {
    background: linear-gradient(135deg, #b957d5 0%, #9333b3 100%) !important;
    box-shadow: 0 6px 20px rgba(168, 85, 184, 0.32) !important;
}

.services .travel-banner {
    background: linear-gradient(45deg, #ca69e2, #a855b8, #ca69e2) !important;
    border-radius: 12px;
}

.services-grid .service-card:last-child .icon-text {
    width: 84px;
    height: 84px;
    border-radius: 14px;
    font-size: 1rem;
    line-height: 1.1;
    padding: 6px;
}

.services-grid .service-card:nth-child(1) .icon-text,
.services-grid .service-card:nth-child(2) .icon-text {
    border-radius: 16px !important;
}

.travel-text {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: travelPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

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

@keyframes travelPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.travel-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: travelShimmer 2s ease-in-out infinite;
}

@keyframes travelShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: var(--luxury-pearl);
    position: relative;
}

.pricing h2 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--luxury-ink);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.pricing-card {
    background: var(--luxury-bone);
    border-radius: 0;
    padding: 40px 32px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.02);
    border-color: var(--hero-coral);
    box-shadow: 0 8px 24px rgba(214, 123, 123, 0.2);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    border-color: var(--hero-pink);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.pricing-header {
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    color: var(--luxury-ink);
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.price {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--hero-coral);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.price-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-features li {
    color: var(--luxury-slate);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 24px;
    font-family: 'Inter', sans-serif;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--rose-pink);
    font-weight: 700;
    font-size: 1rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .cta-button {
    width: 100%;
    background: var(--rose-pink);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 0;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card .cta-button:hover {
    background: var(--deep-pink);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
}

.pricing-note {
    text-align: center;
    color: var(--luxury-slate);
    font-style: italic;
    margin-top: 32px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.service-fit-quiz {
    margin: 52px auto 0;
    max-width: 880px;
    padding: 28px 28px 24px;
    border-radius: 18px;
    border: 1px solid rgba(168, 85, 184, 0.22);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.92)),
        linear-gradient(135deg, rgba(246, 240, 251, 0.95), rgba(236, 225, 247, 0.95));
    box-shadow: 0 10px 30px rgba(107, 33, 168, 0.1);
}

.service-fit-quiz-heading {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 1.65rem;
    color: var(--luxury-ink);
    margin: 0 0 10px 0;
    font-weight: 400;
    text-align: center;
    letter-spacing: -0.01em;
}

.service-fit-quiz-intro {
    margin: 0 0 18px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--luxury-slate);
    text-align: center;
}

.service-fit-quiz-steps {
    position: relative;
}

.service-fit-step {
    border: 0;
    margin: 0;
    padding: 0;
    display: none;
}

.service-fit-step.is-active {
    display: block;
}

.service-fit-step legend {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--luxury-ink);
    margin: 0 0 14px;
    padding: 0;
    width: 100%;
}

.service-fit-option {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 14px;
    margin: 10px 0;
    border-radius: 14px;
    border: 1px solid rgba(168, 85, 184, 0.18);
    background: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-fit-option:hover {
    transform: translateY(-1px);
    border-color: rgba(168, 85, 184, 0.35);
    box-shadow: 0 10px 24px rgba(138, 64, 180, 0.12);
}

.service-fit-option input {
    margin-top: 3px;
    accent-color: #a855b8;
    flex-shrink: 0;
}

.service-fit-option:has(input:checked) {
    border-color: rgba(168, 85, 184, 0.55);
    box-shadow: 0 12px 28px rgba(138, 64, 180, 0.14);
}

.service-fit-quiz-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.service-fit-progress {
    justify-self: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--luxury-slate);
    font-weight: 600;
}

.service-fit-btn {
    appearance: none;
    border-radius: 999px;
    border: 1px solid rgba(202, 105, 226, 0.28);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 18px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.service-fit-btn.primary {
    justify-self: end;
    border-color: rgba(168, 85, 184, 0.45);
    background: linear-gradient(135deg, #ca69e2 0%, #a855b8 100%);
    color: #fff;
    box-shadow: 0 6px 18px rgba(168, 85, 184, 0.26);
}

.service-fit-btn.primary:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(168, 85, 184, 0.32);
    background: linear-gradient(135deg, #b957d5 0%, #9333b3 100%);
}

.service-fit-btn.secondary {
    justify-self: start;
    background: #fff;
    color: #7e22ce;
    border-color: rgba(202, 105, 226, 0.45);
}

.service-fit-btn.secondary:hover:not(:disabled) {
    transform: translateY(-1px);
}

.service-fit-btn.tertiary {
    display: inline-flex;
    margin: 12px auto 0;
    background: transparent;
    border-color: rgba(168, 85, 184, 0.35);
    color: #6b21a8;
}

.service-fit-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.service-fit-result {
    margin-top: 18px;
    padding: 16px 16px;
    border-radius: 14px;
    border: 1px solid rgba(168, 85, 184, 0.22);
    background: rgba(255, 255, 255, 0.78);
}

.service-fit-result h4 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 1.35rem;
    margin: 0 0 8px;
    color: var(--luxury-ink);
}

.service-fit-result p {
    margin: 0 0 12px;
    font-family: 'Inter', sans-serif;
    line-height: 1.65;
    color: var(--luxury-slate);
}

.service-fit-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-fit-mini {
    margin-top: 10px;
    font-size: 0.92rem;
    color: var(--luxury-slate);
}

.service-fit-mini strong {
    color: #8a36b2;
}

.is-hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .service-fit-quiz {
        padding: 22px 18px;
        margin-top: 40px;
    }

    .service-fit-quiz-nav {
        grid-template-columns: 1fr;
        row-gap: 10px;
    }

    .service-fit-btn.secondary,
    .service-fit-btn.primary {
        justify-self: stretch;
        width: 100%;
    }

    .service-fit-progress {
        order: -1;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: var(--luxury-pearl);
}

.testimonials h2 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--luxury-ink);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-align: center;
}

.testimonials .section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--luxury-slate);
    margin-bottom: 0;
    font-weight: 400;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.testimonial-position {
    position: relative;
    min-height: 300px;
}

.testimonial-card {
    background: var(--luxury-bone);
    border-radius: 0;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    border-color: var(--hero-pink);
}

.testimonial-card.active {
    opacity: 1;
    position: relative;
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-quote {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--luxury-slate);
    line-height: 1.6;
    font-style: italic;
    font-weight: 400;
    margin: 0;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #a855b8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(168, 85, 184, 0.3);
}

.author-info h4 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    color: var(--luxury-ink);
    font-weight: 400;
    margin-bottom: 4px;
    font-size: 1.2rem;
    letter-spacing: -0.01em;
}

.author-info p {
    font-family: 'Inter', sans-serif;
    color: var(--luxury-slate);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}


/* About Section */
.about {
    padding: 120px 0;
    background: var(--luxury-pearl);
}

.about h2 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--luxury-ink);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-align: center;
}

.about .section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--luxury-slate);
    margin-bottom: 0;
    font-weight: 400;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
}

.instructors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 0 auto 60px auto;
    max-width: 1200px;
}

.instructor-card {
    background: var(--luxury-bone);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.instructor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    border-color: var(--hero-pink);
}

.instructor-image {
    width: 100%;
    height: 300px;
    background: var(--luxury-bone);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0;
    position: relative;
}

.instructor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: 0;
}

.instructor-content {
    padding: 32px;
}

.instructor-content h3 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--luxury-ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.instructor-real-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--luxury-slate);
    margin-bottom: 8px;
    font-style: italic;
}

.instructor-content .instructor-credentials {
    color: #8a36b2;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.instructor-content p {
    color: var(--luxury-slate);
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.instructor-summary {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--luxury-bone);
    border-radius: 0;
    font-size: 1.1rem;
    color: #8a36b2;
    line-height: 1.6;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--border-color);
    font-family: 'Inter', sans-serif;
    font-style: italic;
}

/* More Info Link */
.more-info-link {
    margin: 8px 0 16px 0;
}

.more-info-link a {
    color: var(--rose-pink);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.more-info-link a:hover {
    color: var(--deep-pink);
    text-decoration: underline;
}

/* Event Contact Link */
.event-contact-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-contact-link:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

/* TML Section */
.tml-section {
    padding: 120px 0;
    background: var(--luxury-pearl);
    position: relative;
}

.tml-section h2 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--luxury-ink);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-align: center;
}

.tml-section .section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--luxury-slate);
    margin-bottom: 0;
    font-weight: 400;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
}

.tml-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.tml-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--luxury-slate);
    margin-bottom: 32px;
    line-height: 1.6;
}

.tml-contact-text {
    font-family: 'Inter', sans-serif;
    color: var(--luxury-slate);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 500;
    font-style: italic;
}

.referral-code {
    background: var(--luxury-bone);
    padding: 32px;
    border-radius: 0;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.referral-code:hover {
    border-color: var(--hero-pink);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.code-label {
    font-size: 0.9rem;
    color: var(--luxury-slate);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    display: block;
    font-family: 'Inter', sans-serif;
}

.code-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--rose-pink);
    letter-spacing: 2px;
    display: block;
    font-family: 'Playfair Display', 'Times New Roman', serif;
}

.tml-button {
    background: linear-gradient(135deg, #ca69e2 0%, #a855b8 100%);
    color: white;
    border-radius: 999px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 16px 32px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    pointer-events: auto;
}

.tml-button-arrow {
    position: relative;
    flex: 0 0 46px;
    height: 2px;
    background: rgba(255, 255, 255, 0.96);
}

.tml-button-arrow::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-top: 2px solid rgba(255, 255, 255, 0.96);
    border-right: 2px solid rgba(255, 255, 255, 0.96);
    transform: translateY(-50%) rotate(45deg);
}

.tml-button:hover {
    background: linear-gradient(135deg, #b957d5 0%, #9333b3 100%);
    box-shadow: 0 6px 20px rgba(168, 85, 184, 0.32);
    transform: translateY(-2px);
}

.tml-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tml-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background: var(--luxury-bone);
    border-radius: 0;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.tml-logo-container:hover {
    border-color: var(--hero-pink);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.tml-logo {
    max-width: 300px;
    height: auto;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

.tml-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--luxury-pearl);
    text-align: center;
}

.contact h2 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--luxury-ink);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-align: center;
}

.contact .section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--luxury-slate);
    margin-bottom: 0;
    font-weight: 400;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--luxury-slate);
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-email {
    font-size: 1.5rem;
    color: var(--rose-pink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 32px;
    font-family: 'Inter', sans-serif;
}

.contact-email:hover {
    color: var(--deep-pink);
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-buttons .cta-button {
    justify-content: center;
    text-align: center;
}

/* Contact Form Styles */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 0;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    margin-top: 32px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--background-white);
    transition: var(--transition);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rose-pink);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-primary);
    padding: 8px;
    border-radius: 0;
    transition: var(--transition);
}

.checkbox-label:hover {
    background: var(--luxury-bone);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--rose-pink);
    flex-shrink: 0;
}

.checkbox-label span {
    flex: 1;
}

.form-submit-btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-status {
    margin-top: 20px;
    padding: 16px;
    border-radius: 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    display: none;
}

.form-status.success {
    display: block;
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #86efac;
}

.form-status.error {
    display: block;
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.form-status.loading {
    display: block;
    background: #fefce8;
    color: #854d0e;
    border: 1px solid #fde047;
}

/* Tournament Modal Styles */
.tournament-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10050;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.tournament-modal-content {
    background: white;
    border-radius: 0;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
}

.tournament-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.tournament-modal-close:hover {
    color: #8a36b2;
}

.tournament-modal-header {
    padding: 40px 40px 20px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--blush-pink) 100%);
}

.tournament-modal-header h2 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    color: var(--luxury-ink);
    font-size: 1.8rem;
    margin: 0 0 8px 0;
    font-weight: 400;
}

.tournament-modal-header p {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.tournament-modal-content .contact-form {
    margin-top: 0;
    padding: 40px;
    box-shadow: none;
    border: none;
}

/* Desktop form layout - two columns */
@media (min-width: 768px) {
    .tournament-modal-content .contact-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .tournament-modal-content .form-group {
        margin-bottom: 0;
    }
    
    /* Full width fields */
    .tournament-modal-content .form-group-full {
        grid-column: 1 / -1;
    }
    
    .tournament-modal-content .form-group-full.form-status {
        margin-top: 0;
    }
}

/* Old footer styles removed - using new pink gradient footer below */

/* Image Placeholders */
.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--blush-pink) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--luxury-slate);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
}

.image-placeholder.small {
    width: 50px;
    height: 50px;
    border-radius: 0;
    font-size: 1.2rem;
    color: white;
    background: var(--rose-pink);
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(238, 227, 248, 0.95) 0%, rgba(228, 212, 243, 0.96) 50%, rgba(243, 236, 250, 0.97) 100%);
    color: var(--luxury-ink);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 40px;
}

.footer-brand {
    flex: 1;
}

.footer-brand h3 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 1.8rem;
    color: var(--luxury-ink);
    margin: 0 0 8px 0;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #8a36b2;
    margin: 0 0 12px 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--luxury-slate);
    line-height: 1.6;
    margin: 0;
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--luxury-slate);
    margin: 0 0 16px 0;
}

.footer-contact a {
    color: var(--luxury-slate);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #8a36b2;
}

.footer-social {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--luxury-bone);
    border: 1px solid var(--border-color);
    border-radius: 0;
    color: var(--luxury-slate);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: #a855b8;
    color: white;
    border-color: #a855b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(168, 85, 184, 0.3);
}

.footer-social-link svg {
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--luxury-slate);
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-scroll-arrow {
        display: none;
    }
    
    .navbar {
        padding: 16px 0;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .tml-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tml-visual {
        text-align: center;
    }
    
    .tml-logo-container {
        margin: 0 auto;
    }
    
    .instructors-grid {
        grid-template-columns: 1fr;
    }
    
    .event-details {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .event-header h2 {
        font-size: 2.5rem;
    }
    
    .event-header h3 {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .mahjong-tiles {
        max-width: 180px;
        margin: 0 auto;
    }
    
    .registration-box {
        padding: 24px;
    }
    
    .price-text {
        font-size: 1.6rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-content {
        text-align: center;
    }
    
    .contact-email {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 24px 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
    
    .form-submit-btn {
        padding: 14px 24px;
    }
    
    .tournament-modal-content {
        max-width: 100%;
        max-height: 100vh;
        margin: 0;
    }
    
    .tournament-modal-header {
        padding: 30px 20px 15px;
    }
    
    .tournament-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .tournament-modal-content .contact-form {
        padding: 24px 20px;
        display: block !important;
        grid-template-columns: 1fr !important;
    }
    
    .tournament-modal-content .form-group {
        margin-bottom: 20px !important;
    }
    
    .tournament-modal-content .form-group-full {
        grid-column: 1 !important;
    }
    
    .tournament-modal-close {
        top: 15px;
        right: 15px;
        font-size: 28px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .events-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .event-card {
        flex-direction: column;
        margin-bottom: 24px;
    }
    
    .event-card .event-image {
        width: 100%;
        height: 280px;
    }
    
    .event-card .event-info {
        padding: 24px 16px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .event-card .event-info h3 {
        font-size: 1.5rem;
    }
    
    .event-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .event-details-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .detail-card {
        padding: 16px;
    }
    
    .event-policies {
        padding: 12px;
    }
    
    .policies-title {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .policies-list {
        font-size: 0.85rem;
        padding-left: 16px;
    }
    
    .event-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .register-btn,
    .share-event-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .event-details-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .event-portfolio-card {
        height: auto;
        min-height: 350px;
    }
    
    .event-portfolio-card .event-front-text {
        padding: 32px;
    }
    
    .event-portfolio-card .event-front-text h3 {
        font-family: 'Playfair Display', 'Times New Roman', serif;
        font-size: 1.4rem;
        color: var(--luxury-ink);
        margin-bottom: 12px;
        font-weight: 400;
        line-height: 1.3;
        height: auto;
    }
    
    .community-impact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .donation-item {
        padding: 20px;
    }
    
    .donation-logo {
        width: 60px;
        height: 60px;
    }
    
    .donation-icon {
        width: 80px;
        height: 80px;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    
    .stat-item {
        padding: 24px;
    }
    
    .impact-content {
        padding: 0 16px;
    }
    
    .impact-details {
        padding: 0;
    }
    
    .donation-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        margin: 0 16px 20px 16px;
        max-width: calc(100% - 32px);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
        min-height: auto;
    }
    
    .service-features {
        min-height: auto;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .instructor-card {
        margin-bottom: 24px;
    }
    
    .instructor-image {
        height: 250px;
        align-items: center;
    }
    
    .instructor-img {
        object-position: center center;
        border-radius: 0;
    }
    
    .instructor-content h3 {
        font-size: 1.5rem;
    }
    
    .instructor-real-name {
        font-size: 1.1rem;
    }
    
    .logo-text h2 {
        font-size: 1.2rem;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .hero-img {
        height: 300px;
    }
    
    .event-img {
        height: 200px;
    }
    
    .tml-logo {
        max-width: 200px;
    }
    
    .travel-banner {
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .event-contact {
        min-height: 60px;
        padding: 16px 12px;
        gap: 12px;
    }
    
    .event-contact-label {
        font-size: 0.9rem;
        margin: 12px 0 8px 0;
    }
    
    .event-contact-info {
        font-size: 0.85rem;
        margin: 6px 0;
    }
    
    .event-contact-info a {
        font-size: 0.85rem;
        display: block;
        word-break: break-word;
    }
    
    .event-contact p {
        font-size: 0.9rem;
        padding: 0 4px;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-buttons .cta-button {
        width: 100%;
        margin-bottom: 12px;
    }
    
    .contact-buttons .cta-button {
        width: 100%;
        margin-bottom: 12px;
    }
    
    .service-button {
        width: 100%;
        padding: 16px;
        font-size: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .social-buttons {
        margin-top: 20px;
        justify-content: center;
    }
    
    .social-button {
        margin: 0 8px;
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screens - maximize space usage */
    .container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
    }
    
    .nav-container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
    }
    
    /* Reduce padding on very small screens */
    .hero,
    .services,
    .pricing,
    .testimonials,
    .about,
    .past-events,
    .community-impact,
    .upcoming-event,
    .tml-section,
    .contact {
        padding: 40px 0;
    }
    
    /* Full-width grids on small screens */
    .testimonials-container,
    .instructors-grid,
    .service-grid,
    .pricing-grid,
    .events-grid,
    .community-impact-grid {
        padding: 0 16px;
        width: 100%;
    }
    
    /* Ensure cards use full width */
    .service-card,
    .pricing-card,
    .testimonial-card,
    .instructor-card,
    .donation-item {
        width: 100%;
        margin: 0 0 16px 0;
        padding: 20px;
    }
    
    .event-portfolio-card {
        width: 100%;
        margin: 0 0 16px 0;
        padding: 0;
    }
    
    /* Full-width hero */
    .hero-content {
        padding: 0 16px;
        width: 100%;
    }
    
    .hero-text {
        width: 100%;
        padding: 0;
    }
    
    .hero-img {
        width: 100%;
        max-width: 100%;
    }
    
    /* Full-width buttons */
    .cta-button,
    .service-button {
        width: 100%;
        margin: 0 0 10px 0;
    }
    
    .hero-buttons,
    .contact-buttons {
        width: 100%;
        padding: 0;
    }
    
    /* Full-width footer */
    .footer-content {
        padding: 0 16px;
        width: 100%;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .instructor-content {
        padding: 24px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .pricing-card h3 {
        font-size: 1.3rem;
    }
    
    .pricing-card .price {
        font-size: 2rem;
    }
    
    .testimonial-quote {
        font-size: 1rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info p {
        font-size: 0.8rem;
    }
    
    .instructor-content h3 {
        font-size: 1.3rem;
    }
    
    .instructor-real-name {
        font-size: 1rem;
    }
    
    .instructor-story {
        font-size: 0.9rem;
    }
    
    .event-portfolio-card h3 {
        font-size: 1.2rem;
    }
    
    .event-description {
        font-size: 0.9rem;
    }
    
    .donation-content h4 {
        font-size: 1.1rem;
    }
    
    .donation-content p {
        font-size: 0.9rem;
    }
    
    .logo-text h2 {
        font-size: 1rem;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .hero-img {
        height: 250px;
    }
    
    .event-img {
        height: 180px;
    }
    
    .travel-banner {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
    
    .event-contact {
        min-height: 50px;
        padding: 12px;
    }
    
    .event-contact p {
        font-size: 0.9rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .service-button {
        padding: 14px;
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .social-button {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .navbar {
        padding: 12px 0;
        background: transparent;
        backdrop-filter: none;
    }
    
    .nav-container {
        padding: 0 12px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .testimonials {
        padding: 60px 0;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .pricing {
        padding: 60px 0;
    }
    
    .past-events {
        padding: 80px 0;
    }
    
    .community-impact {
        padding: 60px 0;
    }
    
    .upcoming-event {
        padding: 80px 0;
    }
    
    .tml-section {
        padding: 60px 0;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .footer {
        padding: 40px 0;
    }
}

/* Large screens (1200px and above) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .hero-text h1 {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    h2 {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .events-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .testimonials-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .instructors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Extra small screens (320px and below) */
@media (max-width: 320px) {
    .container {
        padding: 0 8px;
    }
    
    .nav-container {
        padding: 0 8px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .service-card {
        padding: 16px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .event-card {
        padding: 16px;
    }
    
    .testimonial-card {
        padding: 16px;
    }
    
    .instructor-card {
        padding: 16px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .footer-social-link {
        width: 35px;
        height: 35px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .cta-button,
    .service-button,
    .footer-social-link {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-menu a {
        padding: 12px 16px;
    }
    
    .event-contact-link,
    .more-info-link a {
        padding: 8px 12px;
        display: inline-block;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-img,
    .event-img,
    .instructor-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}
