        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
            overflow-x: hidden;
        }

        .hero {
            height: 100vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ff6b6b 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.3);
            z-index: 1;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .hero-content {
            z-index: 2;
            max-width: 900px;
            padding: 0 20px;
            position: relative;
        }

        .hero-badge {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.3);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            display: inline-block;
            animation: pulse 2s infinite;
        }

        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 1rem;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            animation: slideInUp 1s ease-out;
        }

        .hero .offer {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: #feca57;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            animation: slideInUp 1s ease-out 0.2s both;
        }

        .hero .tagline {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            animation: slideInUp 1s ease-out 0.4s both;
        }

        .cta-container {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: slideInUp 1s ease-out 0.6s both;
        }

        .cta-primary {
            display: inline-block;
            padding: 18px 40px;
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 15px 35px rgba(255,107,107,0.4);
            border: 2px solid transparent;
        }

        .cta-primary:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 20px 45px rgba(255,107,107,0.6);
        }

        .cta-secondary {
            display: inline-block;
            padding: 18px 40px;
            background: rgba(255,255,255,0.1);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            transition: all 0.3s ease;
            border: 2px solid rgba(255,255,255,0.3);
            backdrop-filter: blur(10px);
        }

        .cta-secondary:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px) scale(1.03);
        }

        .urgency-bar {
            position: fixed;
            top: 0;
            width: 100%;
            background: linear-gradient(90deg, #ff6b6b, #feca57);
            color: white;
            text-align: center;
            padding: 8px;
            font-weight: bold;
            font-size: 0.9rem;
            z-index: 1001;
            animation: slideInDown 0.5s ease-out;
        }

        .nav {
            position: fixed;
            top: 40px;
            width: 100%;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(15px);
            z-index: 1000;
            padding: 1rem 2rem;
            transition: all 0.3s ease;
        }

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

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: white;
            font-weight: 600;
            transition: color 0.3s ease;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .welcome-msg {
            color: #fff;
            font-weight: 600;
        }

        .nav-links a:hover {
            color: #feca57;
        }

        .booking-widget {
            background: white;
            padding: 3rem 2rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            border-radius: 20px;
            max-width: 1000px;
            margin: -100px auto 0;
            position: relative;
            z-index: 3;
        }

        .booking-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .booking-header h2 {
            font-size: 2.2rem;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .spots-left {
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
            display: inline-block;
            animation: pulse 2s infinite;
        }

        .class-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .class-card {
            border: 2px solid #f0f0f0;
            border-radius: 15px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .class-card:hover {
            border-color: #667eea;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(102,126,234,0.2);
        }

        .class-card.popular {
            border-color: #ff6b6b;
            background: linear-gradient(135deg, rgba(255,107,107,0.05), rgba(254,202,87,0.05));
        }

        .class-card.popular::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: -1px;
            right: -1px;
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            color: white;
            padding: 4px 12px;
            font-size: 0.8rem;
            font-weight: bold;
            border-radius: 0 15px 0 15px;
        }

        .class-time {
            font-weight: bold;
            color: #667eea;
            margin-bottom: 0.5rem;
        }

        .class-title {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .class-spots {
            color: #ff6b6b;
            font-size: 0.9rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .book-btn {
            width: 100%;
            padding: 12px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .book-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102,126,234,0.4);
        }

        .book-btn.popular {
            background: linear-gradient(45deg, #ff6b6b, #feca57);
        }

        .section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section h2 {
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 3rem;
            color: #333;
            font-weight: 800;
        }

        .social-proof {
            background: #f8f9fa;
            padding: 4rem 2rem;
        }

        .social-proof-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .community-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #667eea;
            display: block;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #666;
            font-weight: 600;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .testimonial {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            border-left: 4px solid #667eea;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .testimonial-author {
            font-weight: bold;
            color: #667eea;
        }

        .instagram-feed {
            text-align: center;
            margin-top: 2rem;
        }

        .instagram-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .instagram-post {
            aspect-ratio: 1;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        .instagram-post:hover {
            transform: scale(1.05);
        }

        .pearla-section {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 5rem 2rem;
            text-align: center;
        }

        .pearla-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .pearla-video {
            width: 100%;
            max-width: 600px;
            border-radius: 20px;
            margin-bottom: 2rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .pricing-section {
            background: #1a1a1a;
            color: white;
            padding: 5rem 2rem;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .pricing-card {
            background: rgba(255,255,255,0.05);
            border: 2px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            backdrop-filter: blur(10px);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            border-color: #667eea;
        }

        .pricing-card.featured {
            border-color: #feca57;
            background: rgba(254,202,87,0.1);
            transform: scale(1.05);
        }

        .pricing-card.featured::before {
            content: 'BEST VALUE';
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            color: white;
            padding: 8px 20px;
            font-size: 0.8rem;
            font-weight: bold;
            border-radius: 0 0 15px 15px;
        }

        .price {
            font-size: 3rem;
            font-weight: bold;
            color: #feca57;
            margin-bottom: 0.5rem;
        }

        .price-period {
            color: #999;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .features-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .features-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .features-list li:before {
            content: '✓';
            color: #4CAF50;
            font-weight: bold;
            margin-right: 0.5rem;
        }

        .discount-badge {
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .faq-section {
            background: #f8f9fa;
            padding: 5rem 2rem;
        }

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

        .faq-item {
            background: white;
            border-radius: 10px;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .faq-question {
            padding: 1.5rem;
            background: #667eea;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: #5a6fd8;
        }

        .faq-answer {
            padding: 1.5rem;
            display: none;
        }

        .faq-answer.active {
            display: block;
        }

        .footer {
            background: #1a1a1a;
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #feca57;
        }

        .footer-section p, .footer-section a {
            color: #ccc;
            text-decoration: none;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: #667eea;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            background: #667eea;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #feca57;
            transform: translateY(-2px);
        }

        .email-signup {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            padding: 3rem 2rem;
            text-align: center;
            margin: 3rem 0;
        }

        .email-form {
            display: flex;
            max-width: 500px;
            margin: 2rem auto 0;
            gap: 1rem;
        }

        .email-input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
        }

        .email-btn {
            padding: 15px 30px;
            background: #feca57;
            color: #1a1a1a;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .email-btn:hover {
            background: #ff6b6b;
            color: white;
        }

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

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero .offer {
                font-size: 1.5rem;
            }
            
            .cta-container {
                flex-direction: column;
                align-items: center;
            }
            
            .nav-links {
                display: none;
            }
            
            .community-stats {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .email-form {
                flex-direction: column;
            }
            
            .booking-widget {
                margin-top: -50px;
            }
        }

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

        .popup-content {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
        }

        .popup-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
        }

        .popup h3 {
            color: #333;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }

        .popup p {
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .instagram-reels {
            background: linear-gradient(135deg, #8C1D40, #FFB300);
            color: #F5F5DC;
            padding: 3rem 1rem;
            text-align: center;
        }

        .reels-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .reel-video {
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
        }

        .follow-btn {
            display: inline-block;
            margin-top: 1.5rem;
            background: #FFB300;
            color: #8C1D40;
            padding: 0.75rem 1.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
        }

        .reels-error {
            margin-top: 1rem;
            color: #F5F5DC;
            font-style: italic;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .gallery-item iframe {
            width: 100%;
            border-radius: 15px;
            border: none;
        }

        @media (max-width: 768px) {
            .gallery-grid {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
            }

            .gallery-item {
                flex: 0 0 80%;
                scroll-snap-align: center;
            }
        }

/* ----- Auth Forms & Dashboard ----- */
.auth-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 1rem;
}

.auth-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 100%;
}

.auth-form h2 {
    margin-bottom: 1rem;
    text-align: center;
}

.auth-form label {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
}

.auth-form input {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.25rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
}

.auth-btn {
    display: block;
    margin-top: 1.5rem;
    width: 100%;
    padding: 0.75rem 2rem;
    background: #feca57;
    color: #1a1a1a;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.auth-btn:hover {
    background: #ff6b6b;
    color: white;
}

.form-switch {
    margin-top: 1rem;
    text-align: center;
}

.dashboard {
    padding: 6rem 1rem;
}

.dashboard-inner {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.class-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.logout-btn {
    margin-top: 1rem;
    background: #ddd;
    border: none;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

.logout-btn:hover {
    background: #ccc;
}

/* Toast notifications */
#toast-container {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2000;
}

.toast {
    background: #333;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.toast.success { background: #28a745; }
.toast.error { background: #dc3545; }
.toast.visible {
    opacity: 1;
    transform: translateY(0);
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --maroon: #8C1D40;
            --gold: #FFC627;
            --charcoal: #2C2C2C;
            --white: #FFFFFF;
            --light-gray: #F8F8F8;
            --shadow: rgba(140, 29, 64, 0.15);
            --gradient: linear-gradient(135deg, var(--maroon) 0%, var(--charcoal) 100%);
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--charcoal);
            overflow-x: hidden;
        }

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

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(44, 44, 44, 0.95);
            backdrop-filter: blur(15px);
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 198, 39, 0.2);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--gold);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: var(--gold);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: var(--gradient);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="dance-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23FFC627" opacity="0.1"/><path d="M10 20 Q20 10 30 20 Q20 30 10 20" stroke="%23FFC627" stroke-width="1" fill="none" opacity="0.05"/></pattern></defs><rect width="200" height="200" fill="url(%23dance-pattern)"/></svg>');
            animation: pulse 8s ease-in-out infinite;
        }

        .hero-video-placeholder {
            position: absolute;
            top: 50%;
            right: 10%;
            width: 300px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1.2rem;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 198, 39, 0.3);
            animation: float 6s ease-in-out infinite;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: var(--white);
            max-width: 600px;
            padding: 0 2rem;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 900;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            line-height: 1.1;
        }

        .hero-tagline {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--gold);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-description {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            display: inline-block;
            cursor: pointer;
            border: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

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

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

        .btn-primary {
            background: var(--gold);
            color: var(--charcoal);
            box-shadow: 0 10px 30px rgba(255, 198, 39, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 198, 39, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--maroon);
            transform: translateY(-3px);
        }

        /* About Section */
        .about {
            padding: 6rem 0;
            background: var(--light-gray);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            color: var(--maroon);
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        .about-text p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            line-height: 1.8;
            color: #555;
        }

        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px var(--shadow);
            height: 400px;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
        }

        /* Services Section */
        .services {
            padding: 6rem 0;
            background: var(--white);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--maroon);
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 15px 50px var(--shadow);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border-top: 5px solid var(--gold);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px var(--shadow);
        }

        .service-card h3 {
            font-size: 1.5rem;
            color: var(--maroon);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .service-card p {
            margin-bottom: 1.5rem;
            line-height: 1.6;
            color: #555;
        }

        .service-price {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }

        .service-details {
            list-style: none;
            margin-bottom: 2rem;
        }

        .service-details li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
            color: #666;
        }

        .service-details li:last-child {
            border-bottom: none;
        }

        /* Schedule Section */
        .schedule {
            padding: 6rem 0;
            background: var(--light-gray);
        }

        .schedule-placeholder {
            background: var(--white);
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            box-shadow: 0 15px 50px var(--shadow);
            max-width: 800px;
            margin: 0 auto;
        }

        .schedule-placeholder h3 {
            color: var(--maroon);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .calendly-inline-widget {
            width: 100%;
            border: 2px solid var(--maroon);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px var(--shadow);
        }

        #calendly-fallback {
            margin-top: 1rem;
        }

        /* Community Section */
        .community {
            padding: 6rem 0;
            background: var(--gradient);
            color: var(--white);
        }

        .community-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .community-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: transform 0.3s ease;
            border: 1px solid rgba(255, 198, 39, 0.3);
        }

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

        .community-card h3 {
            color: var(--gold);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        /* Footer */
        footer {
            background: var(--charcoal);
            color: var(--white);
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: var(--gold);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .footer-section a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 0.5rem;
        }

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

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
        }

        .contact-info {
            color: #ccc;
            margin-bottom: 0.5rem;
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 1; }
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--charcoal);
                flex-direction: column;
                padding: 1rem;
                gap: 1rem;
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu {
                display: flex;
            }

            .hero-video-placeholder {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-tagline {
                font-size: 1.1rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

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

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

            nav {
                padding: 1rem;
            }

            .container {
                padding: 0 15px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 2rem 0;
            }

            .service-card {
                padding: 2rem;
            }

            .btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
        }

.payment-note {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.5rem;
}
