:root {
    --bg-dark: #050505;
    --bg-card: rgba(30, 30, 30, 0.6);
    --bg-card-hover: rgba(40, 40, 40, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-color: #10b981;
    /* Emerald Green */
    --accent-hover: #059669;
    --accent-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --font-main: 'Inter', sans-serif;
    --spacing-container: 1200px;
    --spacing-section: 6rem;
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --shadow-card: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(16, 185, 129, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(16, 185, 129, 0.05), transparent 25%);
    background-attachment: fixed;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.section {
    padding: var(--spacing-section) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Header */
.site-header {
    background-color: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: var(--glass-border);
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    gap: 40px;
}

.main-nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: #e0e0e0;
    position: relative;
}

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

.main-nav a:hover {
    color: #fff;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
}

/* Hero */
.hero {
    height: 90vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.hero-subhead {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: #d0d0d0;
    font-weight: 300;
}

.hero-trust {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.8;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Authority */
.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.authority-content h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.authority-content .role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.authority-content .bio-text {
    font-style: italic;
    border-left: 3px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    color: #d0d0d0;
}

.credentials {
    margin-top: 2rem;
}

.credentials li {
    margin-bottom: 0.8rem;
    padding-left: 25px;
    position: relative;
    color: #e0e0e0;
}

.credentials li::before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.authority-image img {
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
    border-radius: 12px;
    border: 2px solid #333;
}

.authority-image img:hover {
    transform: scale(1.02);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: var(--glass-border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-card);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.service-card p {
    color: var(--text-secondary);
}

/* Community / Testimonials */
.community {
    background-color: #0a0a0a;
    position: relative;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: var(--glass-border);
    position: relative;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.1;
    font-family: serif;
}

.testimonial-card p {
    margin-bottom: 1.5rem;
    color: #d0d0d0;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-card cite {
    font-weight: 700;
    color: var(--accent-color);
    font-style: normal;
    display: block;
    margin-top: 1rem;
}

/* Schedule */
.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 30px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: var(--font-main);
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.tab-btn.active {
    background: var(--accent-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.day-schedule {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    animation: fadeIn 0.5s ease;
}

.day-schedule.active {
    display: grid;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.class-card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.class-card:hover {
    transform: translateX(5px);
    background: var(--bg-card-hover);
    border-color: var(--accent-color);
}

.class-time {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 80px;
}

.class-info h4 {
    color: #fff;
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.class-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* CTA / Zen Planner */
.cta-section {
    background: linear-gradient(to bottom, var(--bg-dark), #000);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

/* Lead Capture Form */
.form-container {
    max-width: 500px;
    margin: 3rem auto 0;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 16px;
    border: var(--glass-border);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2310b981%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
}

.btn-block {
    width: 100%;
}

.form-footer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.form-success {
    text-align: center;
    padding: 2rem 0;
}

.form-success h3 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-success p {
    color: #d0d0d0;
    margin-bottom: 2rem;
}

/* Location */
.location-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location address {
    font-style: normal;
    font-size: 1.2rem;
    line-height: 2;
}

.location address strong {
    font-size: 2rem;
    color: #fff;
    display: block;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.location address a {
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.location address a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: var(--glass-border);
}

/* Footer */
.site-footer {
    background-color: #000;
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 6rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {

    .header-container .main-nav,
    .header-container .btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

    .authority-grid,
    .location-details {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .authority-image {
        order: -1;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}

/* ===================================
   ZEN PLANNER FORM STYLING
   =================================== */

/* Container styling */
.zen-planner-form {
    max-width: 500px;
    margin: 0 auto;
}

/* Override Zen Planner default styles */
#freetrial_4e37aeb4-075b-4b18-be40-c2fa29792e1c {
    background: transparent !important;
}

/* Style the Zen Planner iframe container */
.zen-planner-form iframe {
    border: none !important;
    width: 100% !important;
    min-height: 600px !important;
}

/* Target Zen Planner widget elements */
.zen-planner-form * {
    font-family: 'Inter', sans-serif !important;
}

/* Additional global overrides for Zen Planner widgets */
div[id^="freetrial_"] {
    background: transparent !important;
}

div[id^="freetrial_"] input,
div[id^="freetrial_"] select,
div[id^="freetrial_"] textarea {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    padding: 15px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}

div[id^="freetrial_"] input:focus,
div[id^="freetrial_"] select:focus,
div[id^="freetrial_"] textarea:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: #00ff88 !important;
    outline: none !important;
}

div[id^="freetrial_"] button[type="submit"],
div[id^="freetrial_"] input[type="submit"] {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%) !important;
    color: #000 !important;
    font-weight: 600 !important;
    padding: 16px 32px !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    margin-top: 10px !important;
}

div[id^="freetrial_"] button[type="submit"]:hover,
div[id^="freetrial_"] input[type="submit"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3) !important;
}

div[id^="freetrial_"] label {
    color: #fff !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
    display: block !important;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* Community Showcase */
.community-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .community-showcase {
        grid-template-columns: 1fr;
    }
}

.section-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 5rem auto;
    width: 80%;
}

/* Kids Program Section */
.kids-program {
    background: linear-gradient(to bottom, #0a0a0a, #0f0f0f);
    position: relative;
}

.kids-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.kids-hero-content h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    line-height: 1.2;
}

.kids-intro {
    font-size: 1.2rem;
    color: #d0d0d0;
    line-height: 1.8;
}

.kids-hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
    transition: transform 0.3s ease;
}

.kids-hero-image img:hover {
    transform: scale(1.02);
}

.benefits-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

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

.benefit-card {
    background: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(50, 50, 50, 0.8);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 700;
}

.benefit-card p {
    color: #d0d0d0;
    line-height: 1.7;
}

.kids-instructors {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(40, 40, 40, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.kids-instructors h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.kids-instructors p {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.kids-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

.kids-gallery img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.kids-gallery img:hover {
    transform: scale(1.02);
}

/* Kids Program - Mobile Responsiveness */
@media (max-width: 768px) {
    .kids-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .kids-hero-image {
        order: -1;
    }

    .kids-hero-content h2 {
        font-size: 2.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-title {
        font-size: 2rem;
    }

    .kids-instructors h3 {
        font-size: 1.8rem;
    }

    .kids-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}