:root {
    --primary: #9c2076; /* Pink */
    --accent: #dd3253;  /* Red */
    --black: #000000;
    --white: #ffffff;
    --gray-light: #f9fafb;
    --gray-medium: #4b5563;
    --text-main: #000000;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.2s ease-in-out;
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { 
    scroll-behavior: smooth; 
    scroll-padding-top: 80px;
}

section[id], [id] {
    scroll-margin-top: 80px;
}
body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -0.05em;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

a {
    text-decoration: none;
    color: var(--black);
    transition: var(--transition);
}
ul { list-style: none; }
p { margin-bottom: 1rem; }

/* Utilities */
.mb-2 { margin-bottom: 0.5rem; }
.text-\[10px\] { font-size: 10px; }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.text-gray-400 { color: #9ca3af; }
.tracking-tighter { letter-spacing: -0.05em; }

/* Reusable Components */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(4rem, 10vw, 6rem) clamp(1.25rem, 5vw, 2rem);
}

.section-title {
    font-size: clamp(1.85rem, 8vw, 3.5rem);
    text-align: left;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.section-subtitle {
    text-align: left;
    color: var(--gray-medium);
    max-width: 700px;
    margin-bottom: 4rem;
    font-size: 1.15rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.8rem 2rem;
    font-weight: 800;
    border-radius: 0; /* Sharp corners */
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    background-color: transparent;
    color: var(--black);
    white-space: nowrap;
    text-decoration: none;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    margin-top: -2px;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Specific adjustment for Register Online button */
.btn-white:hover .btn-icon {
    transform: translateX(4px);
}

.icon-phone {
    stroke-width: 2.2;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 0.95rem;
    min-width: 220px;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-outline:hover {
    background-color: var(--black);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-white:hover {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-outline-white {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--black);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    border-bottom: none;
    height: 80px;
}

.navbar.scrolled {
    background-color: var(--white);
    border-bottom: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.nav-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* stretch to fill height */
    height: 100%;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 2rem;
    border-right: none;
    transition: border-color 0.3s ease;
}

.navbar.scrolled .brand-wrapper {
    border-right: none;
}

.brand-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-height: 70px;
}

.brand-logo {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.brand-icon {
    width: auto;
    padding: 0 1rem;
    height: 40px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--black);
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0 clamp(0.75rem, 1.2vw, 1.5rem);
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: var(--black);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-btn {
    height: 100%;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-top: none;
    border-right: none;
    border-bottom: none;
    padding: 0 clamp(1rem, 1.5vw, 2rem);
    white-space: nowrap;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.navbar.scrolled .nav-btn {
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    padding: 0 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    align-items: flex-end; /* Align right to emphasize the asymmetric kinetic look */
    justify-content: center;
    transition: border-color 0.3s ease;
}

.navbar.scrolled .mobile-toggle {
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-toggle span {
    display: block;
    height: 2px;
    background-color: var(--white);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, width 0.3s ease;
    border-radius: 1px;
}

.mobile-toggle span:nth-child(1) {
    width: 28px;
}

.mobile-toggle span:nth-child(2) {
    width: 18px;
}

.mobile-toggle span:nth-child(3) {
    width: 24px;
}

/* Hover effect: Kinetic expansion, mimicking a dancer extending posture */
.mobile-toggle:hover span:nth-child(2) {
    width: 28px;
}
.mobile-toggle:hover span:nth-child(3) {
    width: 28px;
}

.navbar.scrolled .mobile-toggle span {
    background-color: var(--black);
}

.mobile-toggle.active span {
    width: 28px !important;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    padding-top: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    border-bottom: none;
    background-color: var(--black);
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    z-index: 0;
}

.hero-bg-panel {
    background-size: cover;
    background-position: center;
    filter: saturate(0.8) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.75) 45%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 5rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-label {
    display: inline-block;
    color: var(--white);
    padding-bottom: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    position: relative;
}

.mobile-break {
    display: none;
}

.hero-label::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #e11d48; /* Red brand color */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-label.animate-draw::after {
    transform: scaleX(1);
}

.hero-title {
    font-size: clamp(2.4rem, 5.2vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    max-width: 100%;
    word-break: normal !important;
    overflow-wrap: normal !important;
    word-wrap: normal !important;
    hyphens: manual !important;
    animation: cinematicEnter 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-subhead {
    color: #f3f4f6;
    font-size: clamp(1.1rem, 1.4vw, 1.4rem);
    margin-bottom: 2.25rem;
    max-width: 600px;
    line-height: 1.65;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    opacity: 0;
    animation: cinematicEnter 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-value-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--white);
    opacity: 0;
    animation: cinematicEnter 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero-value-pill .pill-dot {
    color: var(--accent);
    font-weight: 900;
}

@media (max-width: 1024px) {
    .hero-title {
        max-width: 100%;
    }
    .hero-subhead {
        max-width: 100%;
    }
    .hero-value-pill {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 0.75rem;
        border-radius: 12px;
        width: 100%;
        box-sizing: border-box;
    }
}

/* Legacy Cinematic Headings - Removed */

.c-word-wrapper {
    display: inline-block;
    /* scroll affects this via JS inline styles, so no CSS transition needed here since we update via JS animation frame, but a slight transition smooths wheel events */
    transition: transform 0.15s ease-out, opacity 0.15s ease-out;
}

@keyframes cinematicEnter {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.c-word-inner {
    display: inline-block;
    opacity: 0;
    animation: cinematicEnter 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.c-word-1 .c-word-inner { animation-delay: 0.1s; }
.c-word-2 .c-word-inner { animation-delay: 0.3s; }
.c-word-3 .c-word-inner { animation-delay: 0.5s; }

.hero h1.cinematic-heading .accent-word {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

/* Removed legacy .hero p override to allow .hero-subhead to fully control styling and width */

.cta-group {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.cta-group .btn {
    width: auto;
    min-width: 240px;
    padding: 1.35rem 2.7rem !important; /* Generous 2x visual padding to prevent cramped text */
    font-size: 1rem !important;
    line-height: 1.5 !important;
    font-weight: 800;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

.hero .btn-outline {
    color: var(--white);
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero .btn-outline:hover {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.hero .btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.hero .btn-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item .number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--white);
}

.stat-item .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 800;
    color: #d1d5db;
    letter-spacing: 0.1em;
}

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


/* Trustbar Section */
.trustbar {
    background-color: var(--black);
    padding: 3rem 3rem;
    border-bottom: none;
    overflow: hidden;
}

.trustbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.trustbar-header {
    flex-shrink: 0;
    z-index: 2;
    background-color: var(--black);
    padding-right: 1.5rem;
}

.trustbar-eyebrow {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.trustbar-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    white-space: nowrap;
}

.trustbar-marquee {
    overflow: hidden;
    flex-grow: 1;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.trustbar-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: trustbarMarquee 22s linear infinite;
}

.trustbar-track:hover {
    animation-play-state: paused;
}

@keyframes trustbarMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 2rem));
    }
}

.trust-item {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.trust-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
    white-space: nowrap;
}

.trust-meta {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .trustbar-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.75rem;
    }
    
    .trustbar-marquee {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .trustbar {
        padding: 2.5rem 1.5rem;
    }
}


/* Features Section */
.features {
    background-color: var(--white);
    padding: 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
    margin: 0;
    max-width: 100%;
}

.feature-card {
    padding: 5rem 4rem;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    box-sizing: border-box;
}

.feature-card:nth-child(1) {
    background-color: var(--white);
    color: var(--black);
}

.feature-card:nth-child(2) {
    background-color: var(--primary);
    color: var(--white);
}

.feature-card:nth-child(3) {
    background-color: var(--accent);
    color: var(--white);
}

.feature-card .icon {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.feature-card:nth-child(1) .icon {
    color: var(--primary);
}

.feature-card:nth-child(2) .icon,
.feature-card:nth-child(3) .icon {
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.feature-card:nth-child(1) h3 {
    color: var(--black);
}

.feature-card:nth-child(2) h3,
.feature-card:nth-child(3) h3 {
    color: var(--white);
}

.feature-card p {
    line-height: 1.6;
    font-size: 1rem;
}

.feature-card:nth-child(1) p {
    color: var(--gray-medium);
}

.feature-card:nth-child(2) p,
.feature-card:nth-child(3) p {
    color: rgba(255, 255, 255, 0.9);
}

/* Programs Section Accordion */
.programs-section {
    background-color: var(--white);
}

.programs-layout-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
}

@media (min-width: 992px) {
    .programs-layout-wrapper {
        grid-template-columns: 450px 1fr;
    }
}

.classes-header {
    padding: 4rem 3rem;
    background-color: var(--white);
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
}

.classes-header .section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    word-break: break-word;
    hyphens: auto;
    margin-bottom: 0.75rem;
}

.classes-header p {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .classes-header {
        position: sticky;
        top: 80px;
        align-self: stretch;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        border-bottom: none;
        border-right: none;
        padding: 4rem 4rem;
        background-image: linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)), url('../hero.webp');
        background-size: cover;
        background-position: center;
        height: calc(100vh - 80px);
        transition: background-image 0.6s ease-in-out;
    }
    .accordion-container {
        border-left: 1px solid rgba(0, 0, 0, 0.05);
    }
}

/* Height-based media queries to optimize vertical layout on shorter desktop views */
@media (min-width: 992px) and (max-height: 850px) {
    .classes-header {
        padding: 3.5rem 3rem 1.5rem 3rem;
    }
    .classes-header .section-title {
        font-size: 2.6rem;
    }
    .programs-nav {
        margin-top: 1.25rem;
    }
    .prog-nav-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.95rem;
    }
}

@media (min-width: 992px) and (max-height: 700px) {
    .classes-header {
        padding: 2rem 3rem 1.2rem 3rem;
    }
    .classes-header .section-title {
        font-size: 2.1rem;
        margin-bottom: 0.5rem;
    }
    .classes-header p {
        font-size: 0.9rem;
        line-height: 1.45;
    }
    .programs-nav {
        margin-top: 1rem;
        gap: 0.3rem;
    }
    .prog-nav-btn {
        padding: 0.4rem 1rem;
        font-size: 0.88rem;
    }
}

.programs-nav-outer {
    position: relative;
    width: 100%;
}

.nav-scroll-btn {
    display: none;
}

.programs-nav {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-title {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-medium);
    margin-bottom: 0.5rem;
    display: block;
}

.prog-nav-btn {
    background: none;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-medium);
    padding: 0.65rem 1.5rem;
    cursor: pointer;
    transition: color 0.4s ease, padding-left 0.4s ease, background-color 0.4s ease, border-color 0.4s ease;
    display: flex;
    align-items: center;
    position: relative;
    border-left: 2px solid transparent;
}

.prog-nav-btn::after {
    content: '›';
    position: absolute;
    right: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-weight: 300;
    font-size: 1.2rem;
    color: var(--primary);
}

.prog-nav-btn:hover::after {
    opacity: 1;
    transform: translateX(5px);
}

.prog-nav-btn .btn-num {
    font-weight: 800;
    color: var(--primary);
    margin-right: 0.75rem;
    transition: color 0.4s ease;
}

.prog-nav-btn:hover {
    color: var(--black);
    background-color: rgba(0, 0, 0, 0.02);
}

.prog-nav-btn.active {
    color: var(--white);
    background-color: var(--black);
    border-left: 4px solid var(--primary);
    padding-left: 1.75rem;
}

.prog-nav-btn.active .btn-num {
    color: var(--white);
}

@media (max-width: 991px) {
    .classes-header {
        padding: 2.5rem 1.5rem 1.75rem 1.5rem;
    }
    .classes-header .section-title {
        font-size: clamp(2rem, 6.5vw, 2.75rem);
    }
    .programs-nav-outer {
        position: relative;
        width: calc(100% + 3rem);
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        margin-top: 1.25rem;
    }
    .programs-nav-outer::before,
    .programs-nav-outer::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 30px;
        z-index: 5;
        pointer-events: none;
        transition: opacity 0.3s ease;
        opacity: 0;
    }
    .programs-nav-outer::before {
        left: 0;
        background: linear-gradient(to right, rgba(255, 255, 255, 0.9), transparent);
    }
    .programs-nav-outer::after {
        right: 0;
        background: linear-gradient(to left, rgba(255, 255, 255, 0.9), transparent);
    }
    .programs-nav-outer.can-scroll-left::before { opacity: 1; }
    .programs-nav-outer.can-scroll-right::after { opacity: 1; }

    .nav-scroll-btn {
        display: none !important;
    }
    .programs-nav {
        margin-top: 0 !important;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.6rem;
        overflow-x: auto;
        scrollbar-width: none;
        padding: 0.35rem 1.5rem;
        -webkit-overflow-scrolling: touch;
    }
    .programs-nav::-webkit-scrollbar {
        display: none;
    }
    .nav-title {
        display: none;
    }
    .prog-nav-btn {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        font-size: 0.88rem;
        font-weight: 600;
        padding: 0.55rem 1.2rem;
        border: 1px solid #e5e7eb;
        border-radius: 50px;
        background-color: #ffffff;
        color: #374151;
        white-space: nowrap;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
        transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .prog-nav-btn .btn-num {
        color: var(--primary);
        font-weight: 800;
        margin-right: 0.35rem;
        font-size: 0.8rem;
        transition: color 0.2s ease;
    }
    .prog-nav-btn:active {
        transform: scale(0.96);
    }
    .prog-nav-btn.active {
        border-color: rgba(0, 0, 0, 0.1);
        background-color: var(--black);
        color: var(--white);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
        padding-left: 1.2rem;
    }
    .prog-nav-btn.active .btn-num {
        color: #f472b6;
    }
}

.accordion-container {
    background: var(--white);
    min-width: 0;
}

.accordion-item {
    border-bottom: none;
    background-color: var(--white);
    transition: background-color 0.4s ease;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: var(--white);
    border: none;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.4s ease, color 0.4s ease;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.accordion-register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid var(--primary);
    transition: all 0.3s ease;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(5px);
}

.accordion-item.active .accordion-register-btn {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.accordion-register-btn:hover {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.accordion-header h3 {
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    transition: color 0.4s ease;
}

.accordion-header .text-primary {
    color: var(--primary);
    margin-right: 1.5rem;
    font-size: 0.8em;
    font-weight: 800;
    transition: color 0.4s ease;
}

.accordion-item:not(.active) .accordion-header h3 {
    color: #888888;
}

.accordion-item:not(.active):hover .accordion-header h3 {
    color: var(--black);
}

.accordion-item.active {
    background-color: var(--white);
}

.accordion-item:not(.active):hover {
    background-color: var(--white);
}

.accordion-item.active .accordion-header,
.accordion-item.active .accordion-header h3 {
    background-color: var(--black);
    color: var(--white);
}

.accordion-item.active .accordion-header .text-primary {
    color: var(--white);
}

.accordion-item.active .accordion-header .icon::before,
.accordion-item.active .accordion-header .icon::after {
    background-color: var(--white);
}

.accordion-item:hover:not(.active) .accordion-header {
    background-color: #f5f5f5;
}

.accordion-content {
    max-height: none;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
    background-color: var(--white);
}

.program-details {
    padding: 3rem 4rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    min-width: 0;
    max-width: 100%;
}

.program-next-nav {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.15);
}

.next-program-btn, .prev-program-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    background-color: var(--gray-light);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    flex: 1;
    max-width: 320px;
}

.prev-program-btn {
    text-align: left;
    align-items: flex-start;
}

.next-program-btn {
    text-align: right;
    align-items: flex-end;
    margin-left: auto;
}

.next-program-btn.register-cta-btn {
    background-color: var(--black);
    color: var(--white);
    text-decoration: none;
}

.next-program-btn.register-cta-btn span {
    color: rgba(255, 255, 255, 0.6);
}

.next-program-btn.register-cta-btn strong {
    color: var(--white);
}

.next-program-btn:hover, .prev-program-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.next-program-btn.register-cta-btn:hover {
    background-color: #222;
    color: var(--white);
}

.next-program-btn span, .prev-program-btn span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-medium);
    margin-bottom: 0.25rem;
}

.next-program-btn strong, .prev-program-btn strong {
    font-size: 1.1rem;
    color: var(--black);
    font-weight: 800;
}

@media (max-width: 768px) {
    .program-next-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    .next-program-btn, .prev-program-btn {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }
    .next-program-btn {
        margin-left: 0;
    }
}

@media (max-width: 992px) {
    .program-details {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.25rem;
    }
    
    .accordion-header {
        padding: 1.5rem 1.5rem;
    }

    .accordion-register-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .classes-header {
        padding: 2rem 1.25rem 1.5rem 1.25rem;
    }
    .programs-nav-outer {
        width: calc(100% + 2.5rem);
        margin-left: -1.25rem;
        margin-right: -1.25rem;
    }
    .programs-nav {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .accordion-header {
        padding: 1.25rem 1rem;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .accordion-header h3 {
        font-size: 1.15rem;
        line-height: 1.2;
    }
    .accordion-register-btn {
        padding: 0.45rem 0.85rem !important;
        font-size: 0.75rem !important;
        min-height: 38px;
    }
    .program-details {
        padding: 1.25rem 1rem;
        gap: 1.5rem;
    }
    .dress-code {
        padding: 1.25rem 1rem;
    }
    .sub-class-item {
        padding: 1.25rem 1rem;
    }
}

.program-subtitle {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.program-overview p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.dress-code {
    margin-top: 2.5rem;
    background-color: #f8fafc;
    padding: 1.75rem;
    border: none;
    border-left: 4px solid var(--primary);
    border-radius: 12px;
}

.dress-code h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    color: var(--black);
}

.purchase-note {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 1rem !important;
    font-weight: 600;
}

.dress-code ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dress-code li {
    margin-bottom: 0.65rem;
    font-size: 0.925rem;
    color: #4b5563;
    line-height: 1.5;
}

.dress-code li strong {
    color: var(--black);
    margin-right: 0.4rem;
}

.program-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.program-badge {
    background-color: rgba(163, 0, 81, 0.08);
    color: var(--primary);
    font-size: 0.725rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.8rem;
    border: 1px solid rgba(163, 0, 81, 0.18);
    border-radius: 20px;
}

.sub-class-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (max-width: 850px) {
    .sub-class-grid {
        grid-template-columns: 1fr;
    }
}

.sub-class-item {
    background-color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

.sub-class-item:hover {
    transform: translateY(-3px);
}

.sub-class-tag {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    background-color: rgba(163, 0, 81, 0.07);
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    display: inline-block;
    align-self: flex-start;
}

.sub-class-item h5 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.sub-class-item p {
    color: #4b5563;
    font-size: 0.925rem;
    line-height: 1.6;
    margin: 0;
}

/* In-Card Conversion Bar */
.program-enroll-bar {
    grid-column: 1 / -1;
    margin-top: 2.5rem;
    padding: 2.25rem 2.5rem;
    background-color: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border: none;
    border-radius: 12px;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.program-enroll-bar .enroll-info strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.25rem;
    font-family: var(--font-display);
    color: var(--white);
    letter-spacing: 0.02em;
}

.program-enroll-bar .enroll-info span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.program-enroll-bar .btn-enroll {
    padding: 0.9rem 1.75rem;
    font-size: 0.85rem;
    white-space: nowrap;
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--white);
    max-width: 100%;
}

.program-enroll-bar .btn-enroll:hover {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

@media (max-width: 992px) {
    .program-enroll-bar {
        flex-direction: column;
        text-align: center;
        padding: 1.75rem 1.25rem;
        gap: 1.25rem;
    }
    .program-enroll-bar .btn-enroll {
        width: 100%;
        white-space: normal;
        text-align: center;
        justify-content: center;
    }
}


/* Banner CTA */
.banner-cta {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../hero%202.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: clamp(4rem, 10vw, 6rem) clamp(1.25rem, 5vw, 4rem);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.banner-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
}

.banner-cta h2 {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.banner-cta p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.banner-cta .cta-group {
    justify-content: flex-start;
}

/* Footer */
.footer {
    background-color: var(--white);
    color: var(--black);
}

.footer-top {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-top > div {
    padding: 4rem;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    flex: 1;
}

.footer-top > div:last-child {
    border-right: none;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer p {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.studio-sub {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    display: block;
    margin-bottom: 0.35rem;
}

.studio-hours {
    margin-top: 1.25rem;
}

.hours-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-medium);
    display: block;
    margin-bottom: 0.4rem;
}

.studio-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.studio-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--gray-medium);
    padding: 0.3rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
}

.studio-hours li:last-child {
    border-bottom: none;
}

.studio-hours li span:last-child {
    font-weight: 600;
    color: var(--black);
}

.footer a {
    color: var(--gray-medium);
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
}

.social-links a:hover {
    background-color: var(--black);
    color: var(--white);
}

/* Accent Bar */
.accent-bar {
    display: flex;
    height: 16px;
    width: 100%;
}
.accent-bar div:nth-child(1) { background-color: var(--primary); flex: 1; }
.accent-bar div:nth-child(2) { background-color: var(--accent); flex: 1; }
.accent-bar div:nth-child(3) { background-color: var(--black); flex: 1; }


/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        height: auto;
        min-height: calc(100vh - 70px);
        padding-top: 70px;
        display: flex;
        align-items: center;
    }
    .hero-container {
        padding: 2.25rem 1.5rem;
    }
    .hero-bg-grid {
        opacity: 0.75;
    }
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.92) 100%);
    }
    .hero-label {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
    .hero-title {
        font-size: clamp(1.5rem, 5.8vw, 2.5rem);
        line-height: 1.12;
        margin-bottom: 1rem;
        word-break: normal !important;
        overflow-wrap: normal !important;
        word-wrap: normal !important;
        hyphens: manual !important;
    }
    .hero-subhead {
        font-size: clamp(0.95rem, 2.4vw, 1.15rem);
        margin-bottom: 1.5rem;
        line-height: 1.5;
        max-width: 650px;
    }
    .cta-group {
        width: 100%;
        gap: 0.75rem;
    }
    .cta-group .btn {
        width: 100%;
        padding: 1rem 1.75rem !important;
        font-size: 0.92rem !important;
    }
    .hero-value-pill {
        width: 100%;
        box-sizing: border-box;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .feature-card {
        border: none;
    }
    .feature-card:last-child {
        border-bottom: none;
    }
    .footer-top {
        flex-direction: column;
    }
    .footer-top > div {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    .footer-top > div:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 95px;
        min-height: calc(100vh - 95px);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-container {
        padding: 1.5rem 1rem 1.5rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    .hero-label {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
        letter-spacing: 0.12em;
    }
    .hero-label .mobile-break {
        display: inline;
    }
    .hero-title {
        font-size: clamp(2.35rem, 11vw, 3.1rem);
        line-height: 1.08;
        margin-bottom: 0.75rem;
        word-break: normal !important;
        overflow-wrap: normal !important;
        word-wrap: normal !important;
        hyphens: manual !important;
    }
    .hero-subhead {
        font-size: 0.94rem;
        margin-bottom: 1.25rem;
        line-height: 1.45;
        max-width: 100%;
    }
    .cta-group {
        gap: 0.65rem;
        width: 100%;
    }
    .cta-group .btn {
        padding: 0.95rem 1.5rem !important;
        font-size: 0.92rem !important;
        min-height: 46px;
        width: 100%;
    }
    .hero-value-pill {
        margin-top: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 992px) {
    .navbar.mobile-active {
        background-color: var(--white);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    .navbar.mobile-active .mobile-toggle span {
        background-color: var(--black);
    }
    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: none;
        align-items: stretch;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu li {
        height: auto;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    .nav-menu li:last-child {
        border-bottom: none;
    }
    .nav-link {
        color: var(--black);
        padding: 1.5rem;
        width: 100%;
        justify-content: center;
        border-bottom: none;
    }
    .nav-btn {
        width: 100%;
        border: none !important;
        padding: 1.5rem;
        border-radius: 0;
        color: var(--white);
        background-color: var(--primary);
    }
    .navbar.scrolled .nav-btn, .navbar .nav-btn {
        border: none !important;
    }
    .mobile-toggle {
        display: flex;
        border-left: none !important;
    }
    .brand-wrapper {
        border-right: none !important;
        padding: 0 1.25rem;
    }
    
    /* Removed legacy .hero h1 font-size override that was breaking mobile responsive scaling */
    .class-grid {
        grid-template-columns: 1fr;
    }
    .class-card {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    }
    .class-card:last-child {
        border-bottom: none !important;
    }
    .banner-cta h2 { font-size: 2.5rem; }
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .cta-group {
        flex-direction: column;
        width: 100%;
    }
    .cta-group .btn {
        width: 100%;
        max-width: 100%;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--gray-light);
    padding: 5rem 0;
    overflow: hidden;
}

.testimonials-header {
    margin-bottom: 3.5rem;
    padding: 0 1.5rem;
}

.testimonials-header .section-title {
    font-size: clamp(2.2rem, 7vw, 3.5rem);
    word-break: break-word;
}

.testimonials-eyebrow {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    display: block;
    margin-bottom: 0.75rem;
}

.testimonials-marquee-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    scrollbar-width: none;
    padding: 1.5rem 0;
    position: relative;
    touch-action: pan-x pan-y;
}

.testimonials-marquee-wrapper::-webkit-scrollbar {
    display: none;
}

.testimonials-marquee-wrapper.is-dragging {
    cursor: grabbing;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    padding: 0 2rem;
    align-items: flex-start;
}

.testimonial-card {
    flex: 0 0 380px;
    width: 380px;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-radius: 0;
    padding: 2rem 1.75rem;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 230px;
    transition: var(--transition, transform 0.3s ease, box-shadow 0.3s ease);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-star {
    color: #FFD700;
}

.testimonial-text {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonial-card.is-expanded .testimonial-text {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}


.see-more-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    cursor: pointer;
    padding: 0.25rem 0;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    transition: color 0.2s ease;
    align-self: flex-start;
}

.see-more-btn:hover {
    color: var(--black);
}

.testimonial-author {
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 0.85rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--black);
}

/* Tuition & Fees Section */
.tuition-section {
    background-color: var(--white);
    padding: 5rem 3rem;
}

.tuition-header {
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
    text-align: center;
}

.tuition-eyebrow {
    display: inline-block;
    background-color: var(--black);
    color: var(--white);
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.tuition-header .section-title {
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    margin-bottom: 1rem;
    text-align: center;
}

.tuition-header .section-desc {
    color: var(--gray-medium);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Tuition Highlights Grid */
.tuition-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
}

.tuition-card {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-radius: 0;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.tuition-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.tuition-card.featured {
    border: 2px solid var(--primary);
    background-color: #fdf5f9;
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--black);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    white-space: nowrap;
}

.badge-primary {
    background-color: var(--primary);
}

.badge-accent {
    background-color: var(--accent);
}

.tuition-card h3 {
    font-size: clamp(2.5rem, 3.5vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.tuition-card h3 .period {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-medium);
}

.card-title {
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.card-sub {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ & Policies Accordion Section */
.faq-section {
    padding: 5rem 2rem;
    background-color: #fcfcfc; /* Very subtle difference from white */
}

.faq-container {
    max-width: 860px;
    margin: 0 auto;
}

.faq-header {
    margin-bottom: 3.5rem;
    text-align: center;
}

.faq-eyebrow {
    display: inline-block;
    background-color: var(--black);
    color: var(--white);
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.faq-header .section-title {
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    margin-bottom: 1rem;
    word-break: break-word;
    text-align: center;
}

.faq-header .section-desc {
    color: var(--gray-medium);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 680px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.06);
    background-color: var(--white);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    margin-bottom: 0.75rem;
}

.faq-item:hover {
    border-color: rgba(163, 0, 81, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.35rem 1.75rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--black);
    cursor: pointer;
    font-family: inherit;
    gap: 1.25rem;
}

.faq-q-text {
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1;
    color: var(--primary);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.active {
    background-color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
    border-left: 3px solid var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.35s ease;
    padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    transition: max-height 0.4s ease-in-out, padding 0.35s ease;
    padding: 0 1.75rem 1.75rem 1.75rem;
}

.faq-answer-inner {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1.25rem;
    font-size: 0.96rem;
    line-height: 1.65;
    color: var(--black);
}

.faq-list {
    margin: 0.75rem 0;
    padding-left: 1.25rem;
}

.faq-list li {
    margin-bottom: 0.5rem;
}

.faq-note {
    font-size: 0.88rem;
    color: var(--gray-medium);
    margin-top: 0.75rem;
}

/* Responsive Tuition & FAQ Styling */
@media (max-width: 992px) {
    .tuition-section {
        padding: 4rem 1.5rem;
    }
    .tuition-highlights-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .testimonials-section {
        padding: 4rem 0;
    }
    .testimonial-card {
        flex: 0 0 310px;
        width: 310px;
        padding: 1.75rem 1.25rem;
    }
    .banner-cta {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .banner-cta {
        padding: 3rem 1.25rem;
    }
}

/* Slide-Over Drawer Styling */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(2px);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 900px;
    height: 100%;
    background-color: var(--white);
    z-index: 10001;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.drawer.active {
    right: 0;
}

.drawer-header {
    padding: 1.15rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
}

.drawer-header h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--black);
}

.drawer-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.drawer-icon-btn,
.drawer-close {
    background: none;
    border: none;
    color: var(--black);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.drawer-icon-btn:hover,
.drawer-close:hover {
    background-color: #f3f4f6;
    color: var(--primary);
}

.drawer-icon-btn:active,
.drawer-close:active {
    transform: scale(0.92);
}

.drawer-content {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    background-color: #ffffff;
}

.iframe-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.schedule-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 600px) {
    .drawer {
        max-width: 100%;
    }
    .drawer-header {
        padding: 1rem 1.25rem;
    }
}

/* Registration Section Styling */
.registration-section {
    padding: clamp(3.5rem, 8vw, 5rem) clamp(1.25rem, 5vw, 2rem);
    background-color: #f9fafb;
}

.registration-container {
    max-width: 1100px;
    margin: 0 auto;
}

.registration-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
    padding: 0 1rem;
}

.registration-header .section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.registration-header .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.registration-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: rgba(156, 32, 118, 0.1);
    color: var(--primary);
    font-size: 0.825rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.registration-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.registration-card {
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-radius: 0;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.registration-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07);
    border-color: var(--primary);
}

.reg-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.registration-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.registration-card p {
    font-size: 0.95rem;
    color: var(--gray-medium);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.reg-note {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 0.75rem;
    display: block;
}

.forgot-pwd-link {
    font-size: 0.85rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.forgot-pwd-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .section-title {
        letter-spacing: -1px;
    }
    .registration-section {
        padding: 3.5rem 1.25rem;
    }
    .registration-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .registration-card {
        padding: 2rem 1.5rem;
    }
}
