/* Echo Creative Studio - Matrix CSS */
/* Custom color variables with unique naming */
:root {
    --ocean-blue: #7209b7;
    --lavender-mist: #f3e5f9;
    --deep-purple: #4c0677;
    --forest-green: #28a745;
    --forest-light: #d4edda;
    --sunset-orange: #fd7e14;
    --sunset-light: #fff3cd;
    --crimson-red: #dc3545;
    --crimson-light: #f8d7da;
    --midnight-gray: #6c757d;
    --silver-gray: #f8f9fa;
    --info-blue: #17a2b8;
    --warning-amber: #ffc107;
    --success-emerald: #28a745;
    --text-primary: #212529;
    --text-secondary: #666;
}

/* Base reset and typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    font-size: 16px;
    background: #ffffff
}

/* Container system with unique classes */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 21px;
}

.navigation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 13px;
}

/* Navigation styles with organic design */
.primary-navigation {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 8px 0;
    box-shadow: 0 3px 21px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(114, 9, 183, 0.1);
}

.navigation-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    position: relative;
}

.brand-identity img {
    height: 42px;
    width: auto
}

.menu-toggle-input {
    display: none;
}

.menu-toggle-control {
    display: none;
}

.hamburger-element {
    width: 28px;
    height: 3px;
    background: var(--deep-purple);
    position: relative;
    transition: all 0.34s ease;
    border-radius: 2px;
}

.hamburger-element:before,
.hamburger-element:after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--deep-purple);
    transition: all 0.34s ease;
    border-radius: 2px;
}

.hamburger-element:before {
    top: -9px;
}

.hamburger-element:after {
    top: 9px;
}

.menu-items-list {
    display: flex;
    list-style: none;
    gap: 34px;
    margin: 0;
    padding: 0;
}

.menu-item {
    list-style: none;
}

.menu-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 13px;
    border-radius: 21px;
    transition: all 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.menu-link:hover {
    color: var(--ocean-blue);
    background: var(--lavender-mist);
    transform: translateY(-1px);
}

/* Hero section with organic curves */
.hero-showcase {
    position: relative;
    margin-top: 78px;
}

.hero-background-overlay {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-background-overlay:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(114, 9, 183, 0.75) 0%, rgba(76, 6, 119, 0.85) 100%);
}

.hero-content-grid {
    position: relative;
    z-index: 2;
    padding: 55px 0;
}

.hero-text-column {
    max-width: 520px;
}

.hero-information-card {
    background: rgba(255, 255, 255, 0.96);
    padding: 42px;
    border-radius: 21px;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(13px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-information-card h1 {
    font-family: 'Times New Roman', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 34px;
    line-height: 1.3;
}

.feature-details-list {
    list-style: none;
    margin: 34px 0;
}

.feature-details-list li {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(114, 9, 183, 0.1);
    margin: 0;
}

.feature-details-list li:last-child {
    border-bottom: none;
}

.detail-value {
    font-weight: 600;
    color: var(--ocean-blue);
}

.hero-action-section {
    display: flex;
    align-items: center;
    background: var(--lavender-mist);
    padding: 21px;
    border-radius: 13px;
    margin-top: 21px;
}

.pricing-display {
    font-weight: 600;
    color: var(--deep-purple);
    font-size: 1.1rem;
}

.primary-action-button {
    margin-left: auto;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--deep-purple) 100%);
    color: white;
    padding: 13px 28px;
    border-radius: 21px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.28s ease;
    border: none;
    box-shadow: 0 5px 13px rgba(114, 9, 183, 0.3);
}

.primary-action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 21px rgba(114, 9, 183, 0.4);
}

/* Features section with shadowed elements */
.capabilities-showcase {
    padding: 89px 0;
    background: var(--silver-gray);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.capability-card {
    background: white;
    padding: 42px;
    border-radius: 13px;
    transition: all 0.34s ease;
    box-shadow: 0 5px 21px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(114, 9, 183, 0.05);
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.15);
}

.capability-card h4 {
    color: var(--deep-purple);
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 21px;
}

.capability-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.secondary-action-link {
    color: var(--deep-purple);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.28s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.secondary-action-link:hover {
    color: var(--ocean-blue);
    transform: translateX(3px);
}

.link-arrow {
    width: 13px;
    height: 2px;
    background: currentColor;
    position: relative;
}

.link-arrow:after {
    content: '';
    position: absolute;
    right: -2px;
    top: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
}

/* Stats section with dense layout */
.achievements-display {
    padding: 89px 0;
    background: white;
}

.achievements-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.content-header h3 {
    font-family: 'Times New Roman', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.content-header h3 span {
    font-weight: 300;
    color: var(--ocean-blue);
}

.content-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 42px;
}

.gradient-action-button {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--sunset-orange) 100%);
    color: white;
    padding: 18px 42px;
    border-radius: 34px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.34s ease;
    box-shadow: 0 8px 21px rgba(114, 9, 183, 0.25);
}

.gradient-action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 13px 34px rgba(114, 9, 183, 0.35);
}

.statistics-display {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
}

.stat-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 28px;
}

.stat-card {
    background: white;
    padding: 34px;
    border-radius: 21px;
    text-align: center;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.08);
    transition: all 0.28s ease;
    border: 1px solid rgba(114, 9, 183, 0.1);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.stat-content h3 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.stat-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* About section */
.studio-introduction {
    padding: 89px 0;
    background: var(--silver-gray);
}

.introduction-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
}

.intro-header h2 {
    font-family: 'Times New Roman', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 34px;
}

.intro-main-content {
    grid-column: 1 / -1;
}

.intro-main-content p {
    margin-bottom: 21px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.signature-section {
    margin-top: 34px;
}

.signature-image {
    max-width: 180px;
    height: auto;
}

.sidebar-content {
    background: white;
    padding: 34px;
    border-radius: 13px;
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--deep-purple);
    margin-bottom: 28px;
    letter-spacing: 1px;
}

.events-listing {
    list-style: none;
}

.event-item {
    margin-bottom: 28px;
}

.event-item h3 {
    font-family: 'Times New Roman', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.event-details {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Content showcase section */
.content-showcase {
    padding: 89px 0;
    background: white;
}

.showcase-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.image-background-effect {
    position: relative;
    margin: 0;
}

.image-background-effect:after {
    width: 280px;
    height: 280px;
    content: "";
    z-index: -1;
    border-radius: 50%;
    position: absolute;
    bottom: -89px;
    right: -89px;
    background: var(--lavender-mist);
}

.responsive-image {
    width: 100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.1);
}

.text-block {
    margin-bottom: 28px;
}

.section-heading {
    font-family: 'Times New Roman', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 21px;
}

.benefits-list {
    margin-bottom: 34px;
}

.checklist-items {
    list-style: none;
}

.checklist-items li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 13px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.checklist-items li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--forest-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* FAQ Section */
.questions-section {
    padding: 89px 0;
    background: var(--silver-gray);
}

.questions-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: var(--ocean-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 13px;
}

.questions-header h2 {
    font-family: 'Times New Roman', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.question-card {
    background: white;
    margin-bottom: 21px;
    border-radius: 8px;
    box-shadow: 0 5px 21px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.question-header {
    background: #fcfcfc;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.question-button {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 21px 28px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 13px;
    transition: all 0.28s ease;
    position: relative;
}

.question-button:hover {
    color: var(--ocean-blue);
}

.question-button:after {
    content: "+";
    position: absolute;
    right: 28px;
    font-size: 1.5rem;
    transition: all 0.28s ease;
}

.question-button.expanded:after {
    content: "−";
}

.question-icon {
    width: 18px;
    height: 18px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
}

.answer-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.34s ease;
}

.answer-content.expanded {
    max-height: 200px;
}

.answer-text {
    padding: 28px;
    background: #fcfcfc;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Footer styles */
.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 89px 0 0;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 42px;
    margin-bottom: 34px;
}

.footer-brand p {
    color: #b2b7c2;
    margin: 34px 0;
    line-height: 1.7;
}

.social-connections h6 {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 21px;
    font-size: 0.9rem;
}

.social-connections {
    display: flex;
    flex-direction: column;
}

.social-connections a {
    color: white;
    margin-right: 28px;
    margin-bottom: 8px;
    transition: all 0.28s ease;
}

.social-connections a:hover {
    color: var(--ocean-blue);
}

.social-icon {
    width: 21px;
    height: 21px;
    filter: invert(100%);
    transition: all 0.28s ease;
}

.social-connections a:hover .social-icon {
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
}

.footer-widget h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    margin-bottom: 34px;
    letter-spacing: 1px;
}

.blog-entries .blog-entry {
    display: block;
    margin-bottom: 21px;
    text-decoration: none;
    color: inherit;
    transition: all 0.28s ease;
}

.blog-entry:hover h6 {
    color: var(--ocean-blue);
}

.blog-entry h6 {
    color: white;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.28s ease;
}

.entry-time {
    font-size: 0.85rem;
    color: #b2b7c2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.time-icon {
    width: 13px;
    height: 13px;
    filter: invert(70%);
}

.navigation-links,
.policy-links {
    list-style: none;
    margin-bottom: 21px;
}

.navigation-links li,
.policy-links li {
    margin-bottom: 13px;
}

.navigation-links a,
.policy-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.28s ease;
}

.navigation-links a:hover,
.policy-links a:hover {
    color: var(--ocean-blue);
    padding-left: 5px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    margin-bottom: 21px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    color: #b2b7c2;
    line-height: 1.6;
}

.contact-icon {
    width: 18px;
    height: 18px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
    margin-top: 3px;
}

.contact-details span {
    color: white;
    font-weight: 600;
    display: block;
    margin-right: 8px;
}

.copyright-section {
    background: #0a0a0a;
    border-top: 1px solid #2a2a2a;
    padding: 28px 0;
    margin-top: 34px;
}

.copyright-text {
    text-align: center;
    color: #b2b7c2;
    font-size: 0.9rem;
}

/* Mobile responsive design with unconventional breakpoints */
@media screen and (max-width: 890px) {
    .menu-toggle-control {
        display: block;
        cursor: pointer;
        padding: 13px;
        z-index: 2;
    }

    .navigation-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(13px);
        transition: all 0.34s ease;
        padding-top: 89px;
        z-index: 1;
    }

    .menu-items-list {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .menu-item {
        width: 100%;
        text-align: center;
        margin: 21px 0;
    }

    .menu-link {
        display: inline-block;
        padding: 13px 28px;
        font-size: 1.1rem;
        width: 100%;
    }

    .menu-toggle-input:checked ~ .navigation-menu {
        left: 0;
    }

    .menu-toggle-input:checked ~ .menu-toggle-control .hamburger-element {
        background: transparent;
    }

    .menu-toggle-input:checked ~ .menu-toggle-control .hamburger-element:before {
        transform: rotate(45deg);
        top: 0;
    }

    .menu-toggle-input:checked ~ .menu-toggle-control .hamburger-element:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .hero-information-card {
        padding: 28px;
    }

    .hero-information-card h1 {
        font-size: 1.8rem;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .achievements-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .content-header h3 {
        font-size: 2.2rem;
    }

    .showcase-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .image-background-effect:after {
        display: none;
    }

    .introduction-layout {
        grid-template-columns: 1fr;
    }

    .footer-content-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

@media screen and (max-width: 640px) {
    .content-container {
        padding: 0 13px;
    }

    .hero-information-card {
        padding: 21px;
    }

    .hero-information-card h1 {
        font-size: 1.5rem;
    }

    .capability-card {
        padding: 28px;
    }

    .content-header h3 {
        font-size: 1.8rem;
    }

    .stat-cards-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (min-width: 1280px) {
    .content-container {
        max-width: 1400px;
    }

    .navigation-container {
        max-width: 1400px;
    }
}

.brand-logo img{
    height: 110px;
    filter: brightness(0) invert(1);
}

/* About page specific styles */
.about-hero-showcase {
    position: relative;
    margin-top: 78px;
    padding: 89px 0;
    background: var(--lavender-mist);
}

.about-hero-content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.about-hero-content h1 {
    font-family: 'Times New Roman', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 28px;
    line-height: 1.2;
}

.about-hero-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About main content section */
.about-main-content {
    padding: 89px 0;
    background: white;
    position: relative;
    z-index: 1;
}

.about-main-content:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    content: '';
    background: var(--ocean-blue);
    z-index: -2;
    width: 55%;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.about-main-image {
    width: 100%;
    border-radius: 13px;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.15);
}

.about-text-column {
    background: var(--ocean-blue);
    padding: 55px;
    border-radius: 13px;
    color: white;
}

.section-accent {
    font-size: 13px;
    font-weight: 600;
    color: var(--lavender-mist);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 13px;
}

.about-text-column h2 {
    font-family: 'Times New Roman', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 28px;
}

.about-text-column p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 21px;
}

.accent-action-button {
    background: white;
    color: var(--ocean-blue);
    padding: 13px 28px;
    border-radius: 21px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.28s ease;
    margin-top: 21px;
}

.accent-action-button:hover {
    background: var(--lavender-mist);
    transform: translateY(-2px);
}

/* Mission section */
.mission-showcase {
    padding: 89px 0;
    background: var(--silver-gray);
}

.mission-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.mission-image-wrapper img {
    width: 100%;
    border-radius: 13px;
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.1);
}

.mission-content-wrapper h2 {
    font-family: 'Times New Roman', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.mission-content-wrapper p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 21px;
    font-size: 1.1rem;
}

.accent-cta-button {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--sunset-orange) 100%);
    color: white;
    padding: 18px 42px;
    border-radius: 34px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.34s ease;
    box-shadow: 0 8px 21px rgba(114, 9, 183, 0.25);
    margin-top: 21px;
}

.accent-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 13px 34px rgba(114, 9, 183, 0.35);
}

/* Instructor section */
.instructor-showcase {
    padding: 89px 0;
    background: white;
}

.instructor-header {
    text-align: center;
    margin-bottom: 68px;
}

.instructor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.instructor-card {
    background: white;
    padding: 42px 28px;
    border-radius: 13px;
    text-align: center;
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.08);
    transition: all 0.28s ease;
    border: 1px solid rgba(114, 9, 183, 0.1);
}

.instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.12);
}

.instructor-icon {
    margin-bottom: 21px;
}

.instructor-placeholder {
    width: 80px;
    height: 80px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
}

.instructor-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-purple);
    margin-bottom: 8px;
}

.instructor-role {
    color: var(--ocean-blue);
    font-weight: 500;
    display: block;
    margin-bottom: 18px;
    font-size: 0.9rem;
}

.instructor-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 21px;
    font-size: 0.95rem;
}

.expertise-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: var(--lavender-mist);
    color: var(--deep-purple);
    padding: 5px 13px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Statistics section */
.studio-achievements {
    padding: 89px 0;
    background: var(--deep-purple);
    color: white;
}

.achievements-title-section {
    text-align: center;
    margin-bottom: 68px;
}

.achievements-title-section h3 {
    font-family: 'Times New Roman', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 28px;
}

.achievements-title-section h3 span {
    font-weight: 300;
    color: var(--lavender-mist);
}

.achievements-title-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 34px;
}

.achievement-stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 34px 21px;
    border-radius: 13px;
    text-align: center;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.28s ease;
}

.achievement-stat-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-visual {
    margin-bottom: 18px;
}

.stat-icon {
    width: 42px;
    height: 42px;
    filter: invert(100%);
}

.stat-info h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.stat-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

.menu-link.active {
    color: var(--ocean-blue);
    background: var(--lavender-mist);
}

/* Mobile responsive adjustments */
@media screen and (max-width: 890px) {
    .about-content-grid,
    .mission-content-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-main-content:after {
        width: 100%;
        height: 60%;
        top: auto;
        bottom: 0;
    }

    .about-text-column {
        order: -1;
    }

    .instructor-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .stats-container {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 21px;
    }
}

@media screen and (max-width: 640px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }

    .about-text-column {
        padding: 34px 21px;
    }

    .achievements-title-section h3 {
        font-size: 2rem;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Courses page specific styles */
.courses-hero-banner {
    position: relative;
    margin-top: 78px;
    padding: 89px 0;
}

.hero-background-gradient {
    background: linear-gradient(135deg, rgba(114, 9, 183, 0.8) 0%, rgba(76, 6, 119, 0.9) 100%), url('../monastery/courses-hero.png');
    background-size: cover;
    background-position: center;
    padding: 89px 0;
    border-radius: 0 0 34px 34px;
}

.courses-hero-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    color: white;
}

.courses-hero-content h1 {
    font-family: 'Times New Roman', serif;
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.2;
}

.courses-hero-content p {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Course categories section */
.course-categories-showcase {
    background: #161616;
    position: relative;
}

.course-header-background {
    padding: 89px 0;
    background-size: cover;
    background-position: center;
}

.section-header h2 {
    color: #ffffff;
    font-family: 'Times New Roman', serif;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 21px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.section-header p {
    color: #ffffff;
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.courses-container-fluid {
    padding: 0;
}

.course-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.category-course-card {
    height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: all 0.34s ease;
    border-radius: 0;
}

.category-course-card:hover {
    transform: translateY(-8px);
}

.category-course-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(114, 9, 183, 0.7) 0%, rgba(76, 6, 119, 0.8) 100%);
    transition: all 0.34s ease;
}

.category-course-card:hover:before {
    background: linear-gradient(135deg, rgba(114, 9, 183, 0.85) 0%, rgba(76, 6, 119, 0.9) 100%);
}

.course-overlay-content {
    position: relative;
    z-index: 2;
    padding: 55px 34px;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.course-overlay-content h4 {
    font-weight: 600;
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 18px;
    line-height: 1.3;
}

.course-overlay-content p {
    margin-bottom: 28px;
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0.95;
}

.course-primary-button {
    background: linear-gradient(135deg, #e26623 0%, #e5391d 100%);
    color: white;
    padding: 13px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.28s ease;
    display: inline-block;
    width: auto;
    text-align: center;
    border: 2px solid transparent;
}

.course-primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 21px rgba(229, 57, 29, 0.4);
    background: linear-gradient(135deg, #e5391d 0%, #e26623 100%);
}

/* Course details sections */
.course-details-section {
    padding: 89px 0;
    background: white;
}

.course-details-section.advanced-section {
    background: var(--silver-gray);
}

.course-details-section.specialist-section {
    background: var(--lavender-mist);
}

.course-section-header {
    text-align: center;
    margin-bottom: 68px;
}

.course-section-header h3 {
    font-family: 'Times New Roman', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 21px;
}

.course-section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
}

.course-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 34px;
}

.course-pricing-card {
    background: white;
    border-radius: 13px;
    padding: 42px;
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(114, 9, 183, 0.1);
    transition: all 0.28s ease;
    position: relative;
}

.course-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.premium-card {
    border: 2px solid var(--ocean-blue);
    transform: scale(1.02);
}

.premium-card:hover {
    transform: scale(1.02) translateY(-5px);
}

.premium-badge {
    position: absolute;
    top: -1px;
    right: 28px;
    background: var(--ocean-blue);
    color: white;
    padding: 8px 21px;
    border-radius: 0 0 13px 13px;
    font-size: 0.85rem;
    font-weight: 600;
}

.course-header-info {
    margin-bottom: 34px;
}

.course-icon-wrapper {
    margin-bottom: 21px;
}

.course-type-icon {
    width: 42px;
    height: 42px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
}

.course-header-info h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--deep-purple);
    margin-bottom: 8px;
}

.course-duration {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.course-price-display {
    text-align: center;
    margin-bottom: 34px;
    padding: 21px;
    background: var(--lavender-mist);
    border-radius: 8px;
}

.price-amount {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 5px;
}

.price-period {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.course-feature-list {
    list-style: none;
    margin-bottom: 34px;
}

.course-feature-list li {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.check-icon {
    width: 16px;
    height: 16px;
    filter: invert(60%) sepia(86%) saturate(2017%) hue-rotate(89deg) brightness(105%) contrast(92%);
    flex-shrink: 0;
}

.course-action-area {
    text-align: center;
}

.course-enrollment-button {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--deep-purple) 100%);
    color: white;
    padding: 18px 42px;
    border-radius: 34px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.28s ease;
    margin-bottom: 13px;
    box-shadow: 0 8px 21px rgba(114, 9, 183, 0.25);
}

.course-enrollment-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 13px 34px rgba(114, 9, 183, 0.35);
}

.monthly-option {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 8px;
}

/* Course benefits section */
.course-benefits-showcase {
    padding: 89px 0;
    background: var(--deep-purple);
    color: white;
}

.benefits-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
    margin-bottom: 68px;
}

.benefits-content-wrapper h2 {
    font-family: 'Times New Roman', serif;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.3;
}

.benefits-content-wrapper p {
    line-height: 1.8;
    margin-bottom: 21px;
    opacity: 0.95;
    font-size: 1.05rem;
}

.benefits-cta-button {
    background: white;
    color: var(--deep-purple);
    padding: 18px 34px;
    border-radius: 34px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.28s ease;
    margin-top: 21px;
}

.benefits-cta-button:hover {
    background: var(--lavender-mist);
    transform: translateY(-2px);
}

.benefits-image-area img {
    width: 100%;
    border-radius: 13px;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.2);
}

.benefits-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 34px;
}

.benefit-feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 34px 28px;
    border-radius: 13px;
    text-align: center;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.28s ease;
}

.benefit-feature-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
    margin-bottom: 21px;
}

.feature-icon {
    width: 42px;
    height: 42px;
    filter: invert(100%);
}

.benefit-feature-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 13px;
}

.benefit-feature-card p {
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Mobile responsive */
@media screen and (max-width: 890px) {
    .course-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .course-pricing-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .benefits-content-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .benefits-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 21px;
    }

    .premium-card {
        transform: none;
    }

    .premium-card:hover {
        transform: translateY(-5px);
    }
}

@media screen and (max-width: 640px) {
    .courses-hero-content h1 {
        font-size: 2.4rem;
    }

    .course-category-grid {
        grid-template-columns: 1fr;
    }

    .category-course-card {
        height: 320px;
    }

    .course-overlay-content {
        padding: 34px 21px;
    }

    .course-pricing-card {
        padding: 28px 21px;
    }

    .course-section-header h3 {
        font-size: 2rem;
    }

    .benefits-features-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ page specific styles */
.faq-hero-section {
    padding: 158px 0 89px;
    background: linear-gradient(135deg, var(--lavender-mist) 0%, var(--silver-gray) 100%);
    margin-top: 78px;
    text-align: center;
}

.faq-hero-content {
    max-width: 680px;
    margin: 0 auto;
}

.faq-hero-icon {
    margin-bottom: 34px;
}

.hero-question-icon {
    width: 68px;
    height: 68px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
}

.faq-hero-content h1 {
    font-family: 'Times New Roman', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 28px;
    line-height: 1.2;
}

.faq-hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* FAQ Categories Navigation */
.faq-categories-nav {
    padding: 68px 0;
    background: white;
}

.categories-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.category-nav-card {
    background: white;
    padding: 34px 28px;
    border-radius: 13px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(114, 9, 183, 0.1);
    transition: all 0.28s ease;
    color: inherit;
}

.category-nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 13px 28px rgba(0, 0, 0, 0.12);
    color: inherit;
    text-decoration: none;
}

.nav-category-icon {
    width: 42px;
    height: 42px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
    margin-bottom: 21px;
}

.category-nav-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-purple);
    margin-bottom: 8px;
}

.category-nav-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ Content Sections */
.faq-content-section {
    padding: 89px 0;
    background: white;
}

.faq-content-section.faq-alternate-bg {
    background: var(--silver-gray);
}

.faq-section-header {
    text-align: center;
    margin-bottom: 68px;
}

.section-icon-wrapper {
    margin-bottom: 21px;
}

.section-header-icon {
    width: 55px;
    height: 55px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
}

.faq-section-header h2 {
    font-family: 'Times New Roman', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 21px;
}

.faq-section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
}

/* FAQ Accordion */
.faq-accordion-container {
    max-width: 820px;
    margin: 0 auto;
}

.faq-question-card {
    background: white;
    margin-bottom: 21px;
    border-radius: 13px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(114, 9, 183, 0.08);
}

.faq-question-header {
    background: #fcfcfc;
    border-bottom: 1px solid rgba(114, 9, 183, 0.05);
}

.faq-question-button {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 28px 34px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.28s ease;
    position: relative;
    font-size: 1.05rem;
}

.faq-question-button:hover {
    color: var(--ocean-blue);
    background: var(--lavender-mist);
}

.faq-question-button:after {
    content: "+";
    position: absolute;
    right: 34px;
    font-size: 1.8rem;
    transition: all 0.28s ease;
    font-weight: 300;
}

.faq-question-button.expanded:after {
    content: "−";
    transform: rotate(180deg);
}

.question-icon-small {
    width: 21px;
    height: 21px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
    flex-shrink: 0;
}

.faq-answer-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer-content.expanded {
    max-height: 280px;
}

.faq-answer-text {
    padding: 34px;
    background: #fcfcfc;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    border-top: 1px solid rgba(114, 9, 183, 0.08);
}

/* Contact CTA Section */
.faq-contact-cta {
    padding: 89px 0;
    background: var(--deep-purple);
    color: white;
    text-align: center;
}

.contact-cta-content {
    max-width: 680px;
    margin: 0 auto;
}

.cta-icon-wrapper {
    margin-bottom: 34px;
}

.cta-main-icon {
    width: 68px;
    height: 68px;
    filter: invert(100%);
}

.contact-cta-content h3 {
    font-family: 'Times New Roman', serif;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.3;
}

.contact-cta-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 42px;
    opacity: 0.95;
}

.cta-buttons-group {
    display: flex;
    gap: 21px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-cta-button {
    background: white;
    color: var(--deep-purple);
    padding: 18px 42px;
    border-radius: 34px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.28s ease;
    display: inline-block;
}

.primary-cta-button:hover {
    background: var(--lavender-mist);
    transform: translateY(-2px);
    color: var(--deep-purple);
    text-decoration: none;
}

.secondary-cta-button {
    background: transparent;
    color: white;
    padding: 18px 42px;
    border-radius: 34px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.28s ease;
    border: 2px solid white;
    display: inline-block;
}

.secondary-cta-button:hover {
    background: white;
    color: var(--deep-purple);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Smooth scrolling enhancement */
html {
    scroll-behavior: smooth;
}

/* Category navigation active states */
.category-nav-card:target,
.category-nav-card:focus {
    background: var(--lavender-mist);
    border-color: var(--ocean-blue);
}

/* Enhanced mobile responsiveness */
@media screen and (max-width: 890px) {
    .categories-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 21px;
    }

    .faq-question-button {
        padding: 21px 28px;
        font-size: 1rem;
    }

    .faq-answer-text {
        padding: 28px;
    }

    .cta-buttons-group {
        flex-direction: column;
        align-items: center;
    }

    .primary-cta-button,
    .secondary-cta-button {
        width: 100%;
        max-width: 280px;
    }
}

@media screen and (max-width: 640px) {
    .faq-hero-content h1 {
        font-size: 2.4rem;
    }

    .categories-nav-grid {
        grid-template-columns: 1fr;
    }

    .category-nav-card {
        padding: 28px 21px;
    }

    .faq-section-header h2 {
        font-size: 2rem;
    }

    .faq-question-button {
        padding: 18px 21px;
        gap: 13px;
    }

    .faq-question-button:after {
        right: 21px;
        font-size: 1.5rem;
    }

    .faq-answer-text {
        padding: 21px;
    }

    .contact-cta-content h3 {
        font-size: 1.8rem;
    }
}

/* Additional enhancements for better UX */
.faq-question-card:target {
    box-shadow: 0 8px 28px rgba(114, 9, 183, 0.2);
    border-color: var(--ocean-blue);
}

.faq-question-card:target .faq-question-button {
    background: var(--lavender-mist);
    color: var(--ocean-blue);
}

/* Focus states for accessibility */
.faq-question-button:focus {
    outline: 2px solid var(--ocean-blue);
    outline-offset: 2px;
}

.category-nav-card:focus {
    outline: 2px solid var(--ocean-blue);
    outline-offset: 2px;
}

/* Reviews page specific styles */
.reviews-hero-showcase {
    position: relative;
    margin-top: 78px;
    padding: 89px 0;
}

.reviews-hero-background {
    background: linear-gradient(135deg, rgba(114, 9, 183, 0.85) 0%, rgba(76, 6, 119, 0.9) 100%), url('../monastery/reviews-hero.png');
    background-size: cover;
    background-position: center;
    padding: 89px 0;
    border-radius: 0 0 34px 34px;
    color: white;
    text-align: center;
}

.reviews-hero-content {
    max-width: 720px;
    margin: 0 auto;
}

.hero-icon-group {
    display: flex;
    justify-content: center;
    gap: 21px;
    margin-bottom: 34px;
}

.hero-review-icon,
.hero-star-icon {
    width: 55px;
    height: 55px;
    filter: invert(100%);
}

.reviews-hero-content h1 {
    font-family: 'Times New Roman', serif;
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.2;
}

.reviews-hero-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 42px;
    opacity: 0.95;
}

.hero-stats-mini {
    display: flex;
    justify-content: center;
    gap: 55px;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Review Filter Section */
.review-filter-section {
    padding: 55px 0;
    background: white;
    border-bottom: 1px solid rgba(114, 9, 183, 0.1);
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 21px;
    flex-wrap: wrap;
}

.filter-button {
    background: white;
    border: 2px solid rgba(114, 9, 183, 0.2);
    padding: 13px 28px;
    border-radius: 34px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.28s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.filter-button:hover,
.filter-button.active {
    background: var(--ocean-blue);
    color: white;
    border-color: var(--ocean-blue);
    transform: translateY(-2px);
}

.filter-icon {
    width: 18px;
    height: 18px;
    filter: invert(70%);
    transition: all 0.28s ease;
}

.filter-button:hover .filter-icon,
.filter-button.active .filter-icon {
    filter: invert(100%);
}

/* Featured Reviews Section */
.featured-reviews-showcase {
    padding: 89px 0;
    background: var(--silver-gray);
}

.featured-section-header {
    text-align: center;
    margin-bottom: 68px;
}

.featured-section-header h2 {
    font-family: 'Times New Roman', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 21px;
}

.featured-section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
}

.featured-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 34px;
}

.featured-review-card {
    background: white;
    padding: 42px;
    border-radius: 21px;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(114, 9, 183, 0.08);
    transition: all 0.34s ease;
    position: relative;
}

.featured-review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.12);
}

.review-card-header {
    display: flex;
    align-items: flex-start;
    gap: 21px;
    margin-bottom: 28px;
}

.reviewer-avatar {
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 68px;
    height: 68px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
}

.reviewer-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-purple);
    margin-bottom: 5px;
}

.reviewer-course {
    display: block;
    color: var(--ocean-blue);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.reviewer-outcome {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.review-rating {
    margin-left: auto;
}

.star-rating {
    display: flex;
    gap: 3px;
}

.star-icon {
    width: 21px;
    height: 21px;
    filter: invert(85%);
}

.star-icon.filled {
    filter: invert(65%) sepia(86%) saturate(2017%) hue-rotate(45deg) brightness(105%) contrast(92%);
}

.review-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 28px;
    font-style: italic;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}

.review-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.review-tag {
    background: var(--lavender-mist);
    color: var(--deep-purple);
    padding: 5px 13px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.review-date {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.date-icon {
    width: 16px;
    height: 16px;
    filter: invert(70%);
}

/* Reviews Grid Section */
.reviews-grid-section {
    padding: 89px 0;
    background: white;
}

.reviews-masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 55px;
}

.review-testimonial-card {
    background: white;
    padding: 34px;
    border-radius: 13px;
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(114, 9, 183, 0.08);
    transition: all 0.28s ease;
}

.review-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 13px 28px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 21px;
}

.testimonial-avatar {
    flex-shrink: 0;
}

.testimonial-icon {
    width: 55px;
    height: 55px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
}

.testimonial-meta h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-purple);
    margin-bottom: 3px;
}

.testimonial-role {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.rating-mini {
    display: flex;
    gap: 2px;
}

.mini-star {
    width: 16px;
    height: 16px;
    filter: invert(85%);
}

.mini-star.filled {
    filter: invert(65%) sepia(86%) saturate(2017%) hue-rotate(45deg) brightness(105%) contrast(92%);
}

.testimonial-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 21px;
}

.testimonial-footer {
    text-align: center;
}

.course-badge {
    background: var(--lavender-mist);
    color: var(--deep-purple);
    padding: 8px 18px;
    border-radius: 18px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

/* Load More Section */
.load-more-section {
    text-align: center;
}

.load-more-button {
    background: var(--ocean-blue);
    color: white;
    padding: 18px 42px;
    border-radius: 34px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.28s ease;
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.load-more-button:hover {
    background: var(--deep-purple);
    transform: translateY(-2px);
}

.load-icon {
    width: 21px;
    height: 21px;
    filter: invert(100%);
}

/* Success Statistics Section */
.success-stats-showcase {
    padding: 89px 0;
    background: var(--deep-purple);
    color: white;
}

.stats-content-header {
    text-align: center;
    margin-bottom: 68px;
}

.stats-content-header h3 {
    font-family: 'Times New Roman', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 21px;
}

.stats-content-header p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 580px;
    margin: 0 auto;
}

.success-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 34px;
}

.metric-display-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 42px 28px;
    border-radius: 21px;
    text-align: center;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.28s ease;
}

.metric-display-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.metric-icon {
    margin-bottom: 21px;
}

.metric-icon-image {
    width: 55px;
    height: 55px;
    filter: invert(100%);
}

.metric-number {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.metric-detail {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* CTA Section */
.reviews-cta-section {
    padding: 89px 0;
    background: var(--lavender-mist);
    text-align: center;
}

.cta-content-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.cta-icon-display {
    margin-bottom: 34px;
}

.cta-heart-icon {
    width: 68px;
    height: 68px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
}

.cta-content-wrapper h3 {
    font-family: 'Times New Roman', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 28px;
}

.cta-content-wrapper p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 42px;
}

.cta-action-buttons {
    display: flex;
    gap: 21px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-cta-action {
    background: var(--ocean-blue);
    color: white;
    padding: 18px 42px;
    border-radius: 34px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.28s ease;
}

.primary-cta-action:hover {
    background: var(--deep-purple);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.secondary-cta-action {
    background: transparent;
    color: var(--deep-purple);
    padding: 18px 42px;
    border-radius: 34px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--deep-purple);
    transition: all 0.28s ease;
}

.secondary-cta-action:hover {
    background: var(--deep-purple);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Mobile responsive */
@media screen and (max-width: 890px) {
    .featured-reviews-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .reviews-masonry-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .success-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 21px;
    }

    .hero-stats-mini {
        gap: 34px;
    }

    .filter-controls {
        gap: 13px;
    }

    .filter-button {
        padding: 10px 21px;
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 640px) {
    .reviews-hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-stats-mini {
        flex-direction: column;
        gap: 21px;
    }

    .featured-review-card,
    .review-testimonial-card {
        padding: 28px 21px;
    }

    .review-card-header {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }

    .reviews-masonry-grid {
        grid-template-columns: 1fr;
    }

    .success-metrics-grid {
        grid-template-columns: 1fr;
    }

    .cta-action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-cta-action,
    .secondary-cta-action {
        width: 100%;
        max-width: 280px;
    }
}

/* Filter animation effects */
.review-testimonial-card.hidden {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.34s ease;
}

.review-testimonial-card.visible {
    opacity: 1;
    transform: scale(1);
    transition: all 0.34s ease;
}

/* Schedule page specific styles */
.schedule-hero-display {
    margin-top: 78px;
    padding: 89px 0;
    background: linear-gradient(135deg, var(--lavender-mist) 0%, var(--silver-gray) 100%);
    text-align: center;
}

.schedule-hero-content {
    max-width: 680px;
    margin: 0 auto;
}

.hero-calendar-icon {
    margin-bottom: 34px;
}

.calendar-main-icon {
    width: 68px;
    height: 68px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
}

.schedule-hero-content h1 {
    font-family: 'Times New Roman', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 28px;
    line-height: 1.2;
}

.schedule-hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 34px;
}

.current-date-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    background: white;
    padding: 18px 34px;
    border-radius: 21px;
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.08);
    display: inline-flex;
}

.clock-icon {
    width: 21px;
    height: 21px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
}

/* Course Filter Section */
.schedule-filter-area {
    padding: 68px 0;
    background: white;
}

.filter-header {
    text-align: center;
    margin-bottom: 42px;
}

.filter-header h3 {
    font-family: 'Times New Roman', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 18px;
}

.filter-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.course-filter-controls {
    display: flex;
    justify-content: center;
    gap: 21px;
    flex-wrap: wrap;
}

.course-filter-btn {
    background: white;
    border: 2px solid rgba(114, 9, 183, 0.2);
    padding: 18px 28px;
    border-radius: 34px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.32s ease;
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 0.95rem;
}

.course-filter-btn:hover,
.course-filter-btn.active {
    background: var(--ocean-blue);
    color: white;
    border-color: var(--ocean-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 21px rgba(114, 9, 183, 0.25);
}

.filter-course-icon {
    width: 21px;
    height: 21px;
    filter: invert(70%);
    transition: all 0.32s ease;
}

.course-filter-btn:hover .filter-course-icon,
.course-filter-btn.active .filter-course-icon {
    filter: invert(100%);
}

/* Calendar Navigation */
.calendar-navigation-section {
    padding: 42px 0;
    background: var(--silver-gray);
    border-bottom: 1px solid rgba(114, 9, 183, 0.1);
}

.calendar-nav-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 580px;
    margin: 0 auto;
}

.nav-calendar-btn {
    background: white;
    border: 1px solid rgba(114, 9, 183, 0.2);
    padding: 13px 28px;
    border-radius: 21px;
    font-weight: 500;
    color: var(--deep-purple);
    cursor: pointer;
    transition: all 0.28s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-calendar-btn:hover {
    background: var(--ocean-blue);
    color: white;
    border-color: var(--ocean-blue);
    transform: translateY(-2px);
}

.nav-arrow {
    width: 18px;
    height: 18px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
    transition: all 0.28s ease;
}

.nav-calendar-btn:hover .nav-arrow {
    filter: invert(100%);
}

.current-month-display h3 {
    font-family: 'Times New Roman', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin: 0;
}

/* Main Calendar */
.calendar-main-display {
    padding: 89px 0;
    background: white;
}

.calendar-wrapper {
    max-width: 920px;
    margin: 0 auto;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    background: rgba(114, 9, 183, 0.1);
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.08);
}

.calendar-header {
    background: var(--deep-purple);
    color: white;
    padding: 21px 13px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.calendar-day {
    background: white;
    min-height: 89px;
    padding: 13px 8px;
    cursor: pointer;
    transition: all 0.28s ease;
    position: relative;
    border: 2px solid transparent;
}

.calendar-day:hover {
    background: var(--lavender-mist);
    transform: scale(1.02);
}

.calendar-day.other-month {
    color: #ccc;
    background: #f9f9f9;
}

.calendar-day.today {
    background: var(--ocean-blue);
    color: white;
    font-weight: 700;
}

.calendar-day.has-classes {
    border-color: var(--ocean-blue);
}

.day-number {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.day-classes {
    font-size: 0.75rem;
    line-height: 1.3;
}

.class-indicator {
    display: block;
    padding: 2px 5px;
    margin: 2px 0;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 500;
}

.class-indicator.available {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.class-indicator.limited {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.class-indicator.full {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

/* Schedule Details Panel */
.schedule-details-panel {
    padding: 55px 0;
    background: var(--lavender-mist);
    border-top: 3px solid var(--ocean-blue);
}

.details-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 42px;
}

.details-panel-header h3 {
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin: 0;
}

.close-details-btn {
    background: white;
    border: 1px solid rgba(114, 9, 183, 0.2);
    padding: 13px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.28s ease;
}

.close-details-btn:hover {
    background: var(--ocean-blue);
    border-color: var(--ocean-blue);
}

.close-icon {
    width: 21px;
    height: 21px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
    transition: all 0.28s ease;
}

.close-details-btn:hover .close-icon {
    filter: invert(100%);
}

.schedule-classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.schedule-class-card {
    background: white;
    padding: 34px;
    border-radius: 13px;
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--ocean-blue);
    transition: all 0.28s ease;
}

.schedule-class-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 28px rgba(0, 0, 0, 0.12);
}

.class-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 21px;
}

.class-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-purple);
    margin-bottom: 5px;
}

.class-time {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.availability-badge {
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.availability-badge.available {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.availability-badge.limited {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.availability-badge.full {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.class-details {
    margin-bottom: 21px;
}

.class-details p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 13px;
    font-size: 0.95rem;
}

.class-meta {
    display: flex;
    gap: 21px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 21px;
}

.class-action {
    text-align: center;
}

.reserve-button {
    background: var(--ocean-blue);
    color: white;
    padding: 13px 28px;
    border-radius: 21px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.28s ease;
    border: none;
    cursor: pointer;
}

.reserve-button:hover {
    background: var(--deep-purple);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.reserve-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Availability Legend */
.availability-legend-section {
    padding: 55px 0;
    background: var(--silver-gray);
}

.legend-content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.legend-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-purple);
    margin-bottom: 28px;
}

.legend-items {
    display: flex;
    justify-content: center;
    gap: 34px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.legend-indicator {
    width: 21px;
    height: 21px;
    border-radius: 50%;
}

.legend-indicator.available {
    background: #28a745;
}

.legend-indicator.limited {
    background: #ffc107;
}

.legend-indicator.full {
    background: #dc3545;
}

.legend-indicator.no-class {
    background: #e9ecef;
}

/* Upcoming Classes */
.upcoming-classes-showcase {
    padding: 89px 0;
    background: white;
}

.upcoming-header {
    text-align: center;
    margin-bottom: 55px;
}

.upcoming-header h3 {
    font-family: 'Times New Roman', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 21px;
}

.upcoming-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.upcoming-classes-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 28px;
}

.upcoming-class-item {
    background: white;
    padding: 34px;
    border-radius: 13px;
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(114, 9, 183, 0.1);
    transition: all 0.28s ease;
}

.upcoming-class-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 28px rgba(0, 0, 0, 0.12);
}

/* Quick Actions */
.quick-actions-section {
    padding: 89px 0;
    background: var(--lavender-mist);
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.action-card {
    background: white;
    padding: 42px 34px;
    border-radius: 13px;
    text-align: center;
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.08);
    transition: all 0.28s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 13px 28px rgba(0, 0, 0, 0.12);
}

.action-icon {
    margin-bottom: 21px;
}

.action-icon-image {
    width: 55px;
    height: 55px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
}

.action-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-purple);
    margin-bottom: 13px;
}

.action-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
}

.action-button {
    background: var(--ocean-blue);
    color: white;
    padding: 13px 28px;
    border-radius: 21px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.28s ease;
}

.action-button:hover {
    background: var(--deep-purple);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

/* Mobile responsive */
@media screen and (max-width: 890px) {
    .calendar-grid {
        gap: 1px;
    }

    .calendar-day {
        min-height: 68px;
        padding: 8px 5px;
    }

    .day-number {
        font-size: 0.95rem;
    }

    .class-indicator {
        font-size: 0.65rem;
        padding: 1px 3px;
    }

    .course-filter-controls {
        gap: 13px;
    }

    .course-filter-btn {
        padding: 13px 21px;
        font-size: 0.85rem;
    }

    .schedule-classes-grid {
        grid-template-columns: 1fr;
    }

    .calendar-nav-controls {
        flex-direction: column;
        gap: 21px;
    }

    .legend-items {
        flex-direction: column;
        gap: 21px;
        align-items: center;
    }
}

@media screen and (max-width: 640px) {
    .schedule-hero-content h1 {
        font-size: 2.4rem;
    }

    .calendar-day {
        min-height: 55px;
        padding: 5px 3px;
    }

    .calendar-header {
        padding: 13px 8px;
        font-size: 0.8rem;
    }

    .day-classes {
        display: none; /* Hide class indicators on mobile */
    }

    .course-filter-controls {
        flex-direction: column;
        align-items: center;
    }

    .course-filter-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .details-panel-header {
        flex-direction: column;
        gap: 21px;
        text-align: center;
    }
}

/* Animation classes for JavaScript */
.calendar-day.selected {
    background: var(--ocean-blue) !important;
    color: white !important;
    transform: scale(1.05);
}

.schedule-details-panel.slide-in {
    animation: slideInFromTop 0.42s ease-out;
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-34px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.upcoming-class-item.highlight {
    border-left: 5px solid var(--ocean-blue);
    background: var(--lavender-mist);
}



/* Pricing page specific styles */
.pricing-hero-banner {
    margin-top: 78px;
    padding: 89px 0;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--ocean-blue) 100%);
    color: white;
    text-align: center;
}

.pricing-hero-content {
    max-width: 720px;
    margin: 0 auto;
}

.hero-pricing-icons {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 34px;
}

.currency-icon,
.tag-icon {
    width: 55px;
    height: 55px;
    filter: invert(100%);
}

.pricing-hero-content h1 {
    font-family: 'Times New Roman', serif;
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.2;
}

.pricing-hero-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 42px;
    opacity: 0.95;
}

.hero-price-highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: 21px 42px;
    border-radius: 34px;
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-text,
.highlight-suffix {
    font-size: 1.1rem;
    opacity: 0.9;
}

.highlight-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
}

/* Special Offers Banner */
.special-offers-banner {
    padding: 34px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f15439 100%);
    color: white;
}

.offer-announcement {
    display: flex;
    align-items: center;
    gap: 28px;
    background: rgba(255, 255, 255, 0.1);
    padding: 21px 34px;
    border-radius: 21px;
    backdrop-filter: blur(8px);
}

.offer-icon {
    flex-shrink: 0;
}

.gift-icon {
    width: 55px;
    height: 55px;
    filter: invert(100%);
}

.offer-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.offer-content p {
    font-size: 1rem;
    opacity: 0.95;
    margin: 0;
}

.offer-action {
    margin-left: auto;
}

.offer-button {
    background: white;
    color: #f15439;
    padding: 13px 28px;
    border-radius: 21px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.28s ease;
}

.offer-button:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    text-decoration: none;
    color: #f15439;
}

/* Main Pricing Section */
.main-pricing-section {
    padding: 89px 0;
    background: white;
}

.pricing-section-header {
    text-align: center;
    margin-bottom: 68px;
}

.pricing-section-header h2 {
    font-family: 'Times New Roman', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 21px;
}

.pricing-section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto;
}

.pricing-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 34px;
    align-items: start;
}

.pricing-plan-card {
    background: white;
    border-radius: 21px;
    padding: 42px;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(114, 9, 183, 0.1);
    transition: all 0.34s ease;
    position: relative;
}

.pricing-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.12);
}

.pricing-plan-card.popular {
    border-color: var(--ocean-blue);
    transform: scale(1.05);
}

.pricing-plan-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -1px;
    right: 34px;
    background: var(--ocean-blue);
    color: white;
    padding: 8px 21px;
    border-radius: 0 0 13px 13px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.badge-icon {
    width: 18px;
    height: 18px;
    filter: invert(100%);
}

.plan-header {
    text-align: center;
    margin-bottom: 34px;
}

.plan-icon {
    margin-bottom: 21px;
}

.plan-icon-image {
    width: 68px;
    height: 68px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
}

.plan-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 8px;
}

.plan-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.plan-pricing {
    text-align: center;
    margin-bottom: 34px;
    padding: 28px;
    background: var(--lavender-mist);
    border-radius: 13px;
}

.price-display {
    margin-bottom: 13px;
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--deep-purple);
    display: block;
}

.price-period {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.monthly-price {
    color: var(--ocean-blue);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 13px;
}

.discount-info {
    display: flex;
    justify-content: center;
    gap: 13px;
    align-items: center;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.discount-amount {
    background: #ff6b35;
    color: white;
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-features {
    margin-bottom: 34px;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.check-feature {
    width: 18px;
    height: 18px;
    filter: invert(60%) sepia(86%) saturate(2017%) hue-rotate(89deg) brightness(105%) contrast(92%);
    flex-shrink: 0;
}

.plan-action {
    text-align: center;
}

.plan-button {
    background: var(--ocean-blue);
    color: white;
    padding: 18px 42px;
    border-radius: 34px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.28s ease;
    margin-bottom: 13px;
    width: 100%;
    box-shadow: 0 8px 21px rgba(114, 9, 183, 0.25);
}

.plan-button.premium {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--deep-purple) 100%);
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 13px 34px rgba(114, 9, 183, 0.35);
    text-decoration: none;
    color: white;
}

.plan-note {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-style: italic;
}

/* Package Deals Section */
.package-deals-section {
    padding: 89px 0;
    background: var(--silver-gray);
}

.package-header {
    text-align: center;
    margin-bottom: 68px;
}

.package-header h3 {
    font-family: 'Times New Roman', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 21px;
}

.package-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.package-deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 34px;
}

.package-deal-card {
    background: white;
    padding: 42px;
    border-radius: 21px;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--ocean-blue);
    transition: all 0.28s ease;
}

.package-deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.package-icon {
    text-align: center;
    margin-bottom: 21px;
}

.package-icon-image {
    width: 68px;
    height: 68px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
}

.package-deal-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-purple);
    text-align: center;
    margin-bottom: 21px;
}

.package-content {
    text-align: center;
    margin-bottom: 28px;
}

.package-content p {
    color: var(--text-secondary);
    margin-bottom: 21px;
    font-size: 1.05rem;
}

.package-pricing {
    background: var(--lavender-mist);
    padding: 21px;
    border-radius: 13px;
}

.package-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--deep-purple);
    display: block;
}

.package-original {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: block;
    margin: 5px 0;
}

.package-savings {
    background: #ff6b35;
    color: white;
    padding: 5px 13px;
    border-radius: 13px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.package-features {
    margin-bottom: 28px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 13px;
    color: var(--text-secondary);
}

.feature-mini-icon {
    width: 21px;
    height: 21px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
    flex-shrink: 0;
}

.package-button {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--deep-purple) 100%);
    color: white;
    padding: 18px 42px;
    border-radius: 34px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    text-align: center;
    transition: all 0.28s ease;
    box-shadow: 0 8px 21px rgba(114, 9, 183, 0.25);
}

.package-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 13px 34px rgba(114, 9, 183, 0.35);
    text-decoration: none;
    color: white;
}

/* Discounts Section */
.discounts-benefits-section {
    padding: 89px 0;
    background: white;
}

.discounts-header {
    text-align: center;
    margin-bottom: 68px;
}

.discounts-header h3 {
    font-family: 'Times New Roman', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 21px;
}

.discounts-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.discounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.discount-item {
    background: white;
    padding: 34px;
    border-radius: 13px;
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(114, 9, 183, 0.1);
    transition: all 0.28s ease;
    text-align: center;
}

.discount-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 28px rgba(0, 0, 0, 0.1);
}

.discount-icon {
    margin-bottom: 21px;
}

.discount-icon-image {
    width: 55px;
    height: 55px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
}

.discount-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-purple);
    margin-bottom: 21px;
}

.discount-detail {
    text-align: center;
}

.discount-rate {
    background: var(--lavender-mist);
    color: var(--deep-purple);
    padding: 8px 18px;
    border-radius: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 13px;
}

.discount-detail p {
    color: var(--text-secondary);
    margin-bottom: 13px;
    line-height: 1.6;
}

.discount-condition {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-style: italic;
}

/* Payment Options */
.payment-options-section {
    padding: 89px 0;
    background: var(--silver-gray);
}

.payment-header {
    text-align: center;
    margin-bottom: 68px;
}

.payment-header h3 {
    font-family: 'Times New Roman', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 21px;
}

.payment-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.payment-method {
    background: white;
    padding: 42px;
    border-radius: 13px;
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.08);
    transition: all 0.28s ease;
    text-align: center;
}

.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 13px 28px rgba(0, 0, 0, 0.12);
}

.payment-icon {
    margin-bottom: 21px;
}

.payment-icon-image {
    width: 68px;
    height: 68px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
}

.payment-method h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--deep-purple);
    margin-bottom: 21px;
}

.payment-details {
    list-style: none;
    text-align: left;
}

.payment-details li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
    position: relative;
    padding-left: 21px;
}

.payment-details li:before {
    content: "•";
    color: var(--ocean-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Pricing FAQ */
.pricing-faq-section {
    padding: 89px 0;
    background: white;
}

.pricing-faq-header {
    text-align: center;
    margin-bottom: 55px;
}

.pricing-faq-header h3 {
    font-family: 'Times New Roman', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--deep-purple);
}

.pricing-faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-pricing-item {
    background: white;
    margin-bottom: 21px;
    border-radius: 13px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(114, 9, 183, 0.08);
}

.faq-pricing-question {
    background: #fcfcfc;
    padding: 28px 34px;
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    transition: all 0.28s ease;
}

.faq-pricing-question:hover {
    background: var(--lavender-mist);
}

.faq-icon {
    width: 24px;
    height: 24px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
    flex-shrink: 0;
}

.faq-pricing-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-purple);
    margin: 0;
}

.faq-pricing-answer {
    padding: 28px 34px;
    background: #fcfcfc;
    border-top: 1px solid rgba(114, 9, 183, 0.08);
}

.faq-pricing-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* CTA Section */
.pricing-cta-section {
    padding: 89px 0;
    background: var(--deep-purple);
    color: white;
    text-align: center;
}

.pricing-cta-content {
    max-width: 680px;
    margin: 0 auto;
}

.cta-pricing-icon {
    margin-bottom: 34px;
}

.cta-icon-main {
    width: 68px;
    height: 68px;
    filter: invert(100%);
}

.pricing-cta-content h3 {
    font-family: 'Times New Roman', serif;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 28px;
}

.pricing-cta-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 42px;
    opacity: 0.95;
}

.cta-pricing-actions {
    display: flex;
    gap: 21px;
    justify-content: center;
    margin-bottom: 34px;
    flex-wrap: wrap;
}

.cta-primary-button {
    background: white;
    color: var(--deep-purple);
    padding: 18px 42px;
    border-radius: 34px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.28s ease;
}

.cta-primary-button:hover {
    background: var(--lavender-mist);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--deep-purple);
}

.cta-secondary-button {
    background: transparent;
    color: white;
    padding: 18px 42px;
    border-radius: 34px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.28s ease;
}

.cta-secondary-button:hover {
    background: white;
    color: var(--deep-purple);
    transform: translateY(-2px);
    text-decoration: none;
}

.contact-info-mini {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Mobile responsive */
@media screen and (max-width: 890px) {
    .pricing-plans-grid {
        grid-template-columns: 1fr;
    }

    .pricing-plan-card.popular {
        transform: none;
    }

    .pricing-plan-card.popular:hover {
        transform: translateY(-8px);
    }

    .offer-announcement {
        flex-direction: column;
        text-align: center;
        gap: 21px;
    }

    .offer-action {
        margin-left: 0;
    }

    .package-deals-grid {
        grid-template-columns: 1fr;
    }

    .discounts-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .payment-methods-grid {
        grid-template-columns: 1fr;
    }

    .cta-pricing-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary-button,
    .cta-secondary-button {
        width: 100%;
        max-width: 280px;
    }
}

@media screen and (max-width: 640px) {
    .pricing-hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-price-highlight {
        flex-direction: column;
        gap: 5px;
    }

    .highlight-price {
        font-size: 2.2rem;
    }

    .pricing-plan-card,
    .package-deal-card,
    .payment-method {
        padding: 28px 21px;
    }

    .faq-pricing-question {
        padding: 21px 28px;
    }

    .faq-pricing-answer {
        padding: 21px 28px;
    }

    .discounts-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation classes */
.pricing-plan-card.highlight {
    animation: pulseHighlight 2s infinite;
}

@keyframes pulseHighlight {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.discount-item.featured {
    border-left: 5px solid var(--ocean-blue);
    background: var(--lavender-mist);
}


/* Contact page specific styles */
.contact-hero-display {
    margin-top: 78px;
    padding: 89px 0;
    background: linear-gradient(135deg, var(--lavender-mist) 0%, var(--silver-gray) 100%);
    text-align: center;
}

.contact-hero-content {
    max-width: 780px;
    margin: 0 auto;
}

.hero-contact-icons {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 34px;
}

.envelope-icon,
.phone-icon {
    width: 68px;
    height: 68px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
}

.contact-hero-content h1 {
    font-family: 'Times New Roman', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 28px;
    line-height: 1.2;
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 42px;
}

.contact-quick-info {
    display: flex;
    justify-content: center;
    gap: 42px;
    flex-wrap: wrap;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 13px;
    background: white;
    padding: 13px 21px;
    border-radius: 21px;
    box-shadow: 0 5px 13px rgba(0, 0, 0, 0.08);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--deep-purple);
}

.info-icon {
    width: 21px;
    height: 21px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
}

/* Main Contact Section */
.main-contact-section {
    padding: 89px 0;
    background: white;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 68px;
    align-items: start;
}

/* Contact Form */
.contact-form-area {
    background: white;
    padding: 55px;
    border-radius: 21px;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(114, 9, 183, 0.1);
}

.form-header {
    margin-bottom: 42px;
    text-align: center;
}

.form-header h3 {
    font-family: 'Times New Roman', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 18px;
}

.form-header p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form {
    max-width: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--deep-purple);
    font-size: 0.95rem;
}

.required {
    color: #e74c3c;
    font-weight: 700;
}

.input-wrapper,
.textarea-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon,
.textarea-icon {
    position: absolute;
    left: 18px;
    width: 21px;
    height: 21px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
    z-index: 2;
}

.textarea-icon {
    top: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 18px 18px 18px 55px;
    border: 2px solid rgba(114, 9, 183, 0.2);
    border-radius: 13px;
    font-size: 1rem;
    transition: all 0.28s ease;
    background: white;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 3px rgba(114, 9, 183, 0.1);
    transform: translateY(-1px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.contact-form select {
    cursor: pointer;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 21px;
    font-weight: 500;
}

.char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* Checkbox and Radio Styles */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-top: 13px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 13px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: all 0.28s ease;
}

.checkbox-item:hover {
    color: var(--deep-purple);
}

.checkbox-item input[type="checkbox"],
.checkbox-item input[type="radio"] {
    display: none;
}

.checkbox-custom {
    width: 21px;
    height: 21px;
    border: 2px solid rgba(114, 9, 183, 0.3);
    border-radius: 50%;
    position: relative;
    transition: all 0.28s ease;
    flex-shrink: 0;
}

.checkbox-item input[type="checkbox"] + .checkbox-custom {
    border-radius: 5px;
}

.checkbox-item input:checked + .checkbox-custom {
    background: var(--ocean-blue);
    border-color: var(--ocean-blue);
}

.checkbox-item input:checked + .checkbox-custom:after {
    content: '';
    position: absolute;
    top: 3px;
    left: 7px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-item input[type="radio"]:checked + .checkbox-custom:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.privacy-checkbox {
    justify-content: center;
    margin-top: 21px;
}

.privacy-checkbox a {
    color: var(--ocean-blue);
    text-decoration: none;
}

.privacy-checkbox a:hover {
    text-decoration: underline;
}

/* Submit Button */
.form-actions {
    text-align: center;
    margin-top: 42px;
}

.submit-button {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--deep-purple) 100%);
    color: white;
    padding: 21px 55px;
    border: none;
    border-radius: 34px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.34s ease;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    box-shadow: 0 8px 21px rgba(114, 9, 183, 0.25);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 34px rgba(114, 9, 183, 0.35);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.submit-icon {
    width: 24px;
    height: 24px;
    filter: invert(100%);
}

.form-note {
    margin-top: 18px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Contact Information */
.contact-info-area {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.contact-info-card,
.access-info-card {
    background: white;
    padding: 42px;
    border-radius: 21px;
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--ocean-blue);
}

.contact-info-card h3,
.access-info-card h3 {
    font-family: 'Times New Roman', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 34px;
    text-align: center;
}

.info-item {
    display: flex;
    gap: 21px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item-icon {
    width: 34px;
    height: 34px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
    flex-shrink: 0;
    margin-top: 3px;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-purple);
    margin-bottom: 8px;
}

.info-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 5px;
}

.info-content a {
    color: var(--ocean-blue);
    text-decoration: none;
    font-weight: 500;
}

.info-content a:hover {
    text-decoration: underline;
}

.info-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Access Information */
.access-methods {
    margin-bottom: 28px;
}

.access-method {
    display: flex;
    gap: 18px;
    margin-bottom: 21px;
    align-items: center;
}

.access-icon {
    width: 28px;
    height: 28px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
    flex-shrink: 0;
}

.access-detail h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-purple);
    margin-bottom: 3px;
}

.access-detail p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.parking-info {
    display: flex;
    gap: 18px;
    align-items: center;
    background: var(--lavender-mist);
    padding: 21px;
    border-radius: 13px;
}

.parking-icon {
    width: 28px;
    height: 28px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
    flex-shrink: 0;
}

.parking-detail h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-purple);
    margin-bottom: 3px;
}

.parking-detail p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Map Section */
.map-location-section {
    padding: 89px 0;
    background: var(--silver-gray);
}

.map-header {
    text-align: center;
    margin-bottom: 55px;
}

.map-header h3 {
    font-family: 'Times New Roman', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 21px;
}

.map-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.map-placeholder {
    position: relative;
    height: 420px;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--deep-purple) 100%);
    border-radius: 21px;
    overflow: hidden;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.1);
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.map-pin-icon {
    width: 68px;
    height: 68px;
    filter: invert(100%);
    margin-bottom: 21px;
}

.map-overlay h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 13px;
}

.map-overlay p {
    font-size: 1rem;
    margin-bottom: 28px;
    opacity: 0.9;
}

.map-link {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 13px 28px;
    border-radius: 21px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.28s ease;
    backdrop-filter: blur(8px);
}

.map-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.map-link-icon {
    width: 21px;
    height: 21px;
    filter: invert(100%);
}

/* Contact FAQ */
.contact-faq-section {
    padding: 89px 0;
    background: white;
}

.contact-faq-header {
    text-align: center;
    margin-bottom: 68px;
}

.contact-faq-header h3 {
    font-family: 'Times New Roman', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 21px;
}

.contact-faq-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.contact-faq-item {
    background: white;
    padding: 34px;
    border-radius: 13px;
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(114, 9, 183, 0.1);
    text-align: center;
    transition: all 0.28s ease;
}

.contact-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 28px rgba(0, 0, 0, 0.1);
}

.faq-contact-icon {
    margin-bottom: 21px;
}

.faq-question-icon {
    width: 55px;
    height: 55px;
    filter: invert(22%) sepia(85%) saturate(3247%) hue-rotate(269deg) brightness(92%) contrast(104%);
}

.contact-faq-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-purple);
    margin-bottom: 18px;
}

.contact-faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Thank You Popup */
.thank-you-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 55px;
    border-radius: 21px;
    text-align: center;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.3);
    max-width: 480px;
    width: 90%;
    animation: popupSlideIn 0.42s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.popup-icon {
    margin-bottom: 28px;
}

.success-icon {
    width: 68px;
    height: 68px;
    filter: invert(60%) sepia(86%) saturate(2017%) hue-rotate(89deg) brightness(105%) contrast(92%);
}

.popup-content h3 {
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 21px;
}

.popup-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 34px;
}

.popup-close {
    background: var(--ocean-blue);
    color: white;
    padding: 18px 42px;
    border: none;
    border-radius: 34px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.28s ease;
}

.popup-close:hover {
    background: var(--deep-purple);
    transform: translateY(-2px);
}

/* Form validation states */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

/* Mobile responsive */
@media screen and (max-width: 890px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .contact-quick-info {
        flex-direction: column;
        align-items: center;
        gap: 21px;
    }

    .contact-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 640px) {
    .contact-hero-content h1 {
        font-size: 2.4rem;
    }

    .contact-form-area {
        padding: 34px 21px;
    }

    .contact-info-card,
    .access-info-card {
        padding: 28px 21px;
    }

    .popup-content {
        padding: 34px 21px;
    }

    .map-placeholder {
        height: 280px;
    }

    .contact-faq-item {
        padding: 28px 21px;
    }
}

/* Loading state */
.submit-button.loading {
    opacity: 0.7;
    pointer-events: none;
}

.submit-button.loading .submit-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}