/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Colors */
    --primary-color: #D35400;        /* Terracotta */
    --background-color: #FAE5D3;     /* Warm sand */
    --accent-color: #1ABC9C;         /* Turquoise */
    --green-color: #117A65;          /* Cactus green */
    
    /* Additional colors */
    --white: #FFFFFF;
    --black: #2C3E50;
    --gray-light: #F8F9FA;
    --gray-medium: #95A5A6;
    --gray-dark: #34495E;
    --success: #27AE60;
    --warning: #F39C12;
    --error: #E74C3C;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Line Heights */
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.625;
    
    /* Spacing (8px system) */
    --space-1: 0.5rem;    /* 8px */
    --space-2: 1rem;      /* 16px */
    --space-3: 1.5rem;    /* 24px */
    --space-4: 2rem;      /* 32px */
    --space-5: 2.5rem;    /* 40px */
    --space-6: 3rem;      /* 48px */
    --space-8: 4rem;      /* 64px */
    --space-10: 5rem;     /* 80px */
    --space-12: 6rem;     /* 96px */
    --space-16: 8rem;     /* 128px */
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    
    /* Container */
    --container-max-width: 1200px;
    
    /* Z-index scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1050;
    --z-tooltip: 1070;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: var(--black);
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--space-2);
    line-height: var(--line-height-tight);
    font-weight: 600;
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
    margin-bottom: var(--space-2);
    line-height: var(--line-height-normal);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

ul, ol {
    margin-left: var(--space-4);
    margin-bottom: var(--space-2);
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-2);
}

@media (min-width: 640px) {
    .container {
        padding: 0 var(--space-4);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-6);
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    transition: all var(--transition-normal);
    background: rgba(250, 229, 211, 0.1);
    backdrop-filter: blur(10px);
}

.navbar.navbar-solid {
    background: var(--background-color);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    padding: 0 var(--space-2);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.logo {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.brand-text {
    font-size: var(--font-size-xl);
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: var(--space-4);
    list-style: none;
    margin: 0;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    color: var(--black);
    font-weight: 500;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background-color: rgba(211, 84, 0, 0.1);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-1);
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--black);
    transition: all var(--transition-fast);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-size-base);
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: #B7410E;
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-large {
    padding: var(--space-3) var(--space-6);
    font-size: var(--font-size-lg);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--background-color) 0%, rgba(250, 229, 211, 0.8) 100%);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 50%;
    padding: var(--space-8) 0;
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--black);
    line-height: var(--line-height-tight);
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--gray-dark);
    margin-bottom: var(--space-6);
    line-height: var(--line-height-relaxed);
}

.hero-buttons {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

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

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        min-height: auto;
        padding: var(--space-12) 0;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        z-index: 2;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: var(--space-6);
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
    }
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--background-color) 0%, rgba(250, 229, 211, 0.8) 100%);
    text-align: center;
    padding: var(--space-16) 0 var(--space-8) 0;
    margin-top: 4rem;
}

.page-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--black);
}

.page-subtitle {
    font-size: var(--font-size-xl);
    color: var(--gray-dark);
}

/* ===== SECTIONS ===== */
section {
    padding: var(--space-12) 0;
}

.section-title {
    text-align: center;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--space-8);
    color: var(--black);
}

/* ===== GRIDS ===== */
.services-grid,
.philosophy-grid,
.team-grid,
.testimonials-grid,
.classes-grid {
    display: grid;
    gap: var(--space-6);
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (max-width: 640px) {
    .services-grid,
    .philosophy-grid,
    .team-grid,
    .testimonials-grid,
    .classes-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CARDS ===== */
.service-card,
.philosophy-card,
.team-member,
.testimonial-card,
.class-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.service-card:hover,
.philosophy-card:hover,
.team-member:hover,
.testimonial-card:hover,
.class-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.service-icon,
.philosophy-icon {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-3);
}

.service-card h3,
.philosophy-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-2);
}

.service-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-fast);
}

.service-link:hover {
    border-bottom-color: var(--accent-color);
}

/* ===== CLASS CARDS ===== */
.class-card {
    overflow: hidden;
    padding: 0;
}

.class-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.class-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.class-card:hover .class-image img {
    transform: scale(1.05);
}

.class-content {
    padding: var(--space-4);
}

.class-level {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    margin-bottom: var(--space-2);
}

.class-title {
    color: var(--primary-color);
    margin-bottom: var(--space-2);
}

.class-description {
    color: var(--gray-dark);
    margin-bottom: var(--space-4);
}

.class-details {
    margin-bottom: var(--space-4);
}

.class-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-1);
}

.detail-label {
    font-weight: 500;
    color: var(--gray-dark);
}

.detail-value {
    color: var(--black);
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: var(--space-4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

label {
    display: block;
    margin-bottom: var(--space-1);
    font-weight: 500;
    color: var(--black);
}

input,
select,
textarea {
    width: 100%;
    padding: var(--space-2);
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    transition: border-color var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    line-height: var(--line-height-normal);
}

/* ===== SCHEDULE GRID ===== */
.schedule-grid {
    display: grid;
    grid-template-columns: auto repeat(7, 1fr);
    gap: 1px;
    background-color: #E5E7EB;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-4);
}

.schedule-header {
    display: contents;
}

.day-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--space-2);
    font-weight: 600;
    text-align: center;
}

.time-slot {
    display: contents;
}

.time-label {
    background-color: var(--white);
    padding: var(--space-3) var(--space-2);
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.class-slot {
    background-color: var(--white);
    padding: var(--space-2);
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.class-slot.empty {
    background-color: var(--gray-light);
}

.class-item {
    width: 100%;
    padding: var(--space-2);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.class-item.available {
    background-color: var(--accent-color);
    color: var(--white);
}

.class-item.available:hover {
    background-color: #16A085;
    transform: scale(1.02);
}

.class-item.full {
    background-color: var(--gray-medium);
    color: var(--white);
    cursor: not-allowed;
}

.class-name {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
}

.instructor {
    display: block;
    font-size: var(--font-size-xs);
    opacity: 0.9;
}

.spots {
    display: block;
    font-size: var(--font-size-xs);
    margin-top: 2px;
}

.schedule-legend {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: var(--radius-sm);
}

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

.legend-color.full {
    background-color: var(--gray-medium);
}

.legend-color.empty {
    background-color: var(--gray-light);
}

@media (max-width: 768px) {
    .schedule-grid {
        font-size: var(--font-size-xs);
    }
    
    .class-item {
        padding: var(--space-1);
    }
    
    .time-label {
        padding: var(--space-2) var(--space-1);
        font-size: var(--font-size-xs);
    }
}

/* ===== TESTIMONIALS ===== */
.featured-testimonial {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    margin-bottom: var(--space-8);
    box-shadow: var(--shadow-lg);
}

.testimonial-featured {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-6);
    align-items: center;
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-mark {
    font-size: 4rem;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.testimonial-text {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-4);
    color: var(--gray-dark);
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: var(--space-1);
}

.author-role {
    color: var(--gray-medium);
    margin-bottom: var(--space-2);
}

.rating {
    font-size: var(--font-size-lg);
}

@media (max-width: 768px) {
    .testimonial-featured {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .testimonial-image {
        justify-self: center;
    }
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    margin-bottom: var(--space-1);
    color: var(--primary-color);
}

.testimonial-role {
    color: var(--gray-medium);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-1);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--gray-dark);
    color: var(--white);
    padding: var(--space-12) 0 var(--space-4) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
}

.footer-logo {
    width: 60px;
    height: 60px;
}

.footer-brand h3 {
    font-size: var(--font-size-2xl);
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
}

.footer-column h4 {
    color: var(--accent-color);
    margin-bottom: var(--space-3);
}

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

.footer-column li {
    margin-bottom: var(--space-2);
}

.footer-column a {
    color: var(--white);
    transition: color var(--transition-fast);
}

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

.social-links {
    display: flex;
    gap: var(--space-3);
}

.social-links a {
    font-size: var(--font-size-xl);
    transition: transform var(--transition-fast);
}

.social-links a:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-4);
    border-top: 1px solid var(--gray-medium);
    color: var(--gray-medium);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 3px solid var(--accent-color);
    box-shadow: var(--shadow-xl);
    z-index: var(--z-modal);
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    padding: var(--space-4);
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.cookie-content h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-2);
}

.cookie-content p {
    margin-bottom: var(--space-3);
    color: var(--gray-dark);
}

.cookie-buttons {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .cookie-buttons {
        flex-direction: column;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .animate-fade-in,
    .animate-fade-in-delay,
    .animate-fade-in-delay-2 {
        animation: none;
    }
    
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ===== ADDITIONAL COMPONENTS ===== */

/* About Preview */
.about-preview {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

/* Map Section */
.map-section {
    background: var(--white);
}

.map-address {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--gray-dark);
    margin-bottom: var(--space-6);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    border: none;
}

/* Membership Cards */
.membership {
    background: var(--white);
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

.membership-card {
    position: relative;
    background: var(--white);
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-align: center;
    transition: all var(--transition-normal);
}

.membership-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.membership-popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.membership-price {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--primary-color);
    margin: var(--space-2) 0;
}

.membership-period {
    color: var(--gray-medium);
    margin-bottom: var(--space-4);
}

.membership-features {
    list-style: none;
    margin: var(--space-4) 0;
    text-align: left;
}

.membership-features li {
    padding: var(--space-1) 0;
    color: var(--gray-dark);
}

/* FAQ Styles */
.faq-categories {
    background: var(--white);
    padding: var(--space-4) 0;
    border-bottom: 1px solid #E5E7EB;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: 2px solid #E5E7EB;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    border-color: var(--accent-color);
    background-color: var(--accent-color);
    color: var(--white);
}

.faq-category {
    display: none;
}

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

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4);
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: var(--gray-light);
}

.faq-question h3 {
    margin: 0;
    color: var(--primary-color);
}

.faq-toggle {
    font-size: var(--font-size-2xl);
    color: var(--accent-color);
    font-weight: bold;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--space-4) var(--space-4) var(--space-4);
    display: none;
}

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

.faq-answer p {
    color: var(--gray-dark);
    line-height: var(--line-height-relaxed);
}

/* Contact Styles */
.contact-info {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
}

.contact-item {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.contact-icon {
    font-size: var(--font-size-2xl);
    flex-shrink: 0;
}

.contact-content h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-2);
}

.contact-form-container {
    background: var(--gray-light);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-4);
    text-align: center;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

/* Success Page */
.success-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.success-content {
    max-width: 600px;
}

.success-icon {
    margin-bottom: var(--space-4);
}

.success-title {
    color: var(--primary-color);
    margin-bottom: var(--space-4);
}

.success-details {
    margin-top: var(--space-6);
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
    color: var(--gray-dark);
}

.detail-icon {
    font-size: var(--font-size-lg);
}

/* Workshop and Retreat Cards */
.workshop-card,
.retreat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.workshop-card:hover,
.retreat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.workshop-image,
.retreat-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.workshop-image img,
.retreat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.workshop-card:hover .workshop-image img,
.retreat-card:hover .retreat-image img {
    transform: scale(1.05);
}

.workshop-date,
.retreat-duration {
    position: absolute;
    top: var(--space-2);
    right: var(--space-2);
    background: var(--primary-color);
    color: var(--white);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-align: center;
}

.date-day {
    font-size: var(--font-size-lg);
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
}

.workshop-content,
.retreat-content {
    padding: var(--space-4);
}

.workshop-content h3,
.retreat-content h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-2);
}

.workshop-details {
    margin: var(--space-4) 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
    color: var(--gray-dark);
}

.detail-icon {
    font-size: var(--font-size-base);
}

.retreat-highlights {
    margin: var(--space-4) 0;
}

.retreat-highlights h4 {
    color: var(--primary-color);
    margin-bottom: var(--space-2);
}

.retreat-highlights ul {
    margin-left: var(--space-4);
}

.retreat-highlights li {
    margin-bottom: var(--space-1);
    color: var(--gray-dark);
}

.retreat-price {
    text-align: center;
    margin: var(--space-4) 0;
}

.price-amount {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
}

.price-note {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--gray-medium);
    margin-top: var(--space-1);
}

/* Privacy Policy Styles */
.privacy-content {
    background: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.privacy-text {
    line-height: var(--line-height-relaxed);
}

.privacy-section {
    margin-bottom: var(--space-8);
}

.privacy-section h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: var(--space-2);
    margin-bottom: var(--space-4);
}

.privacy-section h3 {
    color: var(--green-color);
    margin-top: var(--space-4);
    margin-bottom: var(--space-2);
}

.privacy-section ul {
    margin-bottom: var(--space-3);
}

.privacy-section li {
    margin-bottom: var(--space-1);
    color: var(--gray-dark);
}

.contact-info {
    background: var(--gray-light);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    margin-top: var(--space-4);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-3);
}

.contact-info p {
    margin-bottom: var(--space-2);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: var(--radius-full); }

.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }