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

: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 Color Palette */
    --primary-color: #CA69E2;
    --secondary-color: #A052E0;
    --accent-color: #8b5cf6;
    --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;
    
    /* User's Custom Color Palette */
    --mountbatten-pink: #896B7F;
    --garnet: #853130;
    --lion: #9B834D;
    --burgundy: #710D1F;
    --caribbean-current: #3D6F72;
    
    /* Updated Hero-Inspired Colors */
    --hero-pink: var(--mountbatten-pink);
    --hero-coral: var(--garnet);
    --hero-warm-red: var(--burgundy);
    --hero-deep-pink: var(--burgundy);
    --hero-rose: var(--mountbatten-pink);
    
    /* Updated Luxury Colors */
    --luxury-gold: var(--lion);
    --luxury-teal: var(--caribbean-current);
    
    /* Additional Palette Variations */
    --luxury-cream: #FEF7ED;
    --luxury-charcoal: #1E293B;
    --luxury-slate: #334155;
    --luxury-ink: #0F172A;
    --luxury-bone: #FEFEFE;
    --luxury-pearl: #F8FAFC;
}

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;
}

/* 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;
}

/* Navigation */
.navbar {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.hero-nav {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
}

.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;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.7) 0%,
        rgba(15, 23, 42, 0.4) 30%,
        rgba(15, 23, 42, 0.6) 70%,
        rgba(15, 23, 42, 0.8) 100%
    );
    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;
}

.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: white;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.8), 0 2px 15px rgba(0, 0, 0, 0.6), 0 1px 5px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    color: black;
    margin: 0 0 40px 0;
    font-weight: 400;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.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(200, 90, 90, 0.4);
}

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

/* Hero Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 24px;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 7vw, 3.5rem);
        font-weight: 400;
        text-shadow: 0 3px 20px rgba(0, 0, 0, 0.8), 0 2px 12px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.4);
    }
    
    .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;
    }
}

/* 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(202, 105, 226, 0.15) 1px, transparent 0);
    background-size: 20px 20px;
    opacity: 0.3;
    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: var(--border-radius);
    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);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.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 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

@media (max-width: 768px) {
    .events-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.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;
}

.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: var(--border-radius);
    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%);
}

/* Simplified Event Card Styles */
.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: 100%;
    transition: all 0.3s ease;
}

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

.event-card .event-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.event-card .event-image .event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    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;
}

.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: var(--hero-warm-red);
    background: rgba(232, 165, 165, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    align-self: flex-start;
    border: 1px solid rgba(232, 165, 165, 0.3);
}

.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.1) 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: var(--border-radius);
    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: var(--hero-warm-red);
    padding: 24px;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 4px 16px rgba(200, 90, 90, 0.2);
    position: relative;
    overflow: hidden;
    margin-top: auto;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--hero-warm-red);
}

.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-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;
}

.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: var(--hero-coral);
    font-weight: 500;
}

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

.detail-card {
    background: var(--luxury-bone);
    border-radius: 0;
    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: var(--hero-pink);
}

.detail-icon {
    width: 40px;
    height: 40px;
    background: var(--hero-coral);
    border-radius: 0;
    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: 1rem;
    font-weight: 400;
    color: var(--luxury-ink);
    font-family: 'Inter', sans-serif;
}

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

/* 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: 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);
    display: flex;
    flex-direction: column;
    height: 400px;
}

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

.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-portfolio-card:hover .portfolio-img {
    transform: scale(1.02);
}

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

.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: var(--garnet);
    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-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: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 24px;
    right: 24px;
    transform: translateY(-50%) translateY(20px);
}

.event-portfolio-card:hover .event-content h3 {
    opacity: 0;
    transform: translateY(-20px);
}

.event-portfolio-card:hover .event-location {
    opacity: 0;
    transform: translateY(-20px);
}

.event-portfolio-card:hover .event-description {
    opacity: 1;
    transform: translateY(-50%) translateY(0);
}

.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: var(--hero-coral);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 32px rgba(214, 123, 123, 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: 0;
    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: 0;
    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: var(--hero-coral);
    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%;
}

.service-card.featured {
    transform: scale(1.02);
    border-color: var(--garnet);
    box-shadow: 0 8px 24px rgba(133, 49, 48, 0.2);
}

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

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

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

.icon-placeholder {
    width: 80px;
    height: 80px;
    background: var(--garnet);
    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: var(--garnet);
    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(133, 49, 48, 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(133, 49, 48, 0.4);
}

.heart-icon {
    width: 80px;
    height: 80px;
    background: var(--garnet);
    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: var(--garnet);
    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;
}

.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: var(--garnet);
    font-weight: 700;
    font-size: 0.9rem;
}

.service-button {
    background: var(--garnet);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 0;
    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: var(--burgundy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(133, 49, 48, 0.3);
}

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

.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(--garnet);
    font-weight: 700;
    font-size: 1rem;
}

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

.pricing-card .cta-button {
    width: 100%;
    background: var(--garnet);
    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(--burgundy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(133, 49, 48, 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;
}

/* 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: var(--garnet);
    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(133, 49, 48, 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-credentials {
    color: var(--garnet);
    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: var(--luxury-slate);
    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;
}

/* 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(--garnet);
    letter-spacing: 2px;
    display: block;
    font-family: 'Playfair Display', 'Times New Roman', serif;
}

.tml-button {
    background: var(--garnet);
    color: white;
    border-radius: 0;
    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;
}

.tml-button:hover {
    background: var(--burgundy);
    box-shadow: 0 6px 20px rgba(133, 49, 48, 0.3);
    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(--garnet);
    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(--burgundy);
}

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

/* Footer */
.footer {
    background: var(--luxury-pearl);
    color: var(--luxury-ink);
    padding: 80px 0 40px 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(202, 105, 226, 0.1) 0%, rgba(255, 105, 180, 0.1) 100%);
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-left p {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-text {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

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

.social-button {
    background: rgba(202, 105, 226, 0.9);
    color: white;
    border: 2px solid rgba(202, 105, 226, 0.3);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(202, 105, 226, 0.2);
}

.social-button:hover {
    background: rgba(202, 105, 226, 1);
    border-color: rgba(202, 105, 226, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(202, 105, 226, 0.3);
}

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

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

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

/* Footer */
.footer {
    background: var(--luxury-pearl);
    color: var(--luxury-ink);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 500px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.footer-logo-text h3 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 1.5rem;
    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: var(--garnet);
    margin: 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-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    font-family: 'Inter', sans-serif;
    color: var(--luxury-slate);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--garnet);
}

.ambassador-badge {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--garnet);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

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

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

.footer-social {
    display: flex;
    gap: 16px;
}

.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: var(--garnet);
    color: white;
    border-color: var(--garnet);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(133, 49, 48, 0.3);
}

.footer-social-link svg {
    flex-shrink: 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;
    }
    
    .tml-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .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;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .event-portfolio-card {
        height: auto;
        min-height: 350px;
    }
    
    .event-portfolio-card .event-content {
        padding: 32px;
    }
    
    .event-portfolio-card 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;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .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;
    }
    
    .event-contact p {
        font-size: 1rem;
    }
    
    .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;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        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,
    .event-portfolio-card,
    .donation-item {
        width: 100%;
        margin: 0 0 16px 0;
        padding: 20px;
    }
    
    /* 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;
    }
}
