/* ============================================
   AURASANA - Luxury Wellness Website Styles
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Updated per client feedback */
    --primary-bg: #334d5c;
    --name-color: #f0dceb;
    --person-color: #ad8ba4;
    --aura-gradient-1: #675f74;
    --aura-gradient-2: #b6d5e9;
    --aura-gradient-3: #c9c7d5;
    --secondary: #ad8ba4;
    --accent: #f0dceb;
    --text-light: #f0dceb;
    --text-muted: #c9c7d5;
    --white: #FFFFFF;
    
    /* Typography */
    --font-display: 'Amoresa', cursive;
    --font-body: 'Manrope', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 60px;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ============================================
   CUSTOM CURSOR (DISABLED)
   ============================================ */

.cursor-glow {
    display: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.section-intro {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* ============================================
   LAYOUT
   ============================================ */

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

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

section {
    padding: var(--section-padding) 0;
    position: relative;
}

@media (max-width: 768px) {
    section {
        padding: var(--section-padding-mobile) 0;
    }
    
    .section-container {
        padding: 0 1.5rem;
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    letter-spacing: 0.03em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--primary-bg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(207, 167, 199, 0.3);
}

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

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--primary-bg);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.nav.scrolled {
    background: rgba(51, 75, 92, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

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

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

.nav-logo:hover {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    transition: var(--transition-fast);
    position: relative;
}

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

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

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

.nav-link-cta {
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--primary-bg);
    border-radius: 50px;
    font-weight: 500;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    color: var(--primary-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(207, 167, 199, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition-fast);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(51, 75, 92, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.4s ease;
        padding: 2rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 2rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(220, 199, 232, 0.1) 0%, 
        rgba(168, 183, 209, 0.1) 100%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary), transparent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent), transparent);
    bottom: 20%;
    right: 15%;
    animation-delay: 5s;
}

.hero-glow-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--gradient-end), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
}

.lotus-graphic {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid rgba(207, 167, 199, 0.2);
    animation: rotate 30s linear infinite;
}

.lotus-graphic-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.lotus-graphic-2 {
    bottom: 20%;
    left: 8%;
    animation-delay: 15s;
    animation-direction: reverse;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero-title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.4s;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.6s;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.8s;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1s;
}

.scroll-text {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--secondary), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background: linear-gradient(180deg, 
        var(--primary-bg) 0%, 
        rgba(51, 75, 92, 0.95) 100%);
}

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

.about-text {
    opacity: 0;
    animation: fadeInLeft 1s ease forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

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

.about-description p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-muted);
}

.about-visual {
    position: relative;
    height: 500px;
}

.about-card {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(207, 167, 199, 0.1), 
        rgba(168, 183, 209, 0.1));
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(207, 167, 199, 0.2);
    overflow: hidden;
}

.about-card-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--secondary), transparent);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-visual {
        height: 400px;
    }
}

/* ============================================
   YOGA SECTION
   ============================================ */

.yoga {
    background: var(--primary-bg);
}

.yoga-content {
    max-width: 900px;
    margin: 0 auto;
}

.yoga-main-card {
    background: linear-gradient(135deg,
        rgba(173, 139, 164, 0.05),
        rgba(182, 213, 233, 0.05));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(173, 139, 164, 0.15);
    transition: var(--transition-smooth);
}

.yoga-main-card:hover {
    transform: translateY(-5px);
    border-color: rgba(173, 139, 164, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.yoga-card-image {
    position: relative;
    height: 350px;
    background: linear-gradient(135deg, var(--aura-gradient-1), var(--aura-gradient-2));
    overflow: hidden;
}

.yoga-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.yoga-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(51, 77, 92, 0.3) 100%);
    z-index: 1;
}

.yoga-card-content {
    padding: 3rem;
}

.yoga-card-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.yoga-card-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.yoga-approach {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg,
        rgba(173, 139, 164, 0.1),
        rgba(182, 213, 233, 0.1));
    border-radius: 15px;
    border-left: 4px solid var(--secondary);
}

.yoga-approach h4 {
    color: var(--secondary);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.yoga-approach p {
    color: var(--text-muted);
    line-height: 1.7;
}

.yoga-classes {
    margin: 2rem 0;
}

.yoga-classes h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.yoga-offerings {
    list-style: none;
    padding: 0;
}

.yoga-offerings li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    color: var(--text-muted);
    position: relative;
    line-height: 1.6;
}

.yoga-offerings li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.yoga-card-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.yoga-card-toggle:hover {
    background: var(--secondary);
    color: var(--primary-bg);
}

.yoga-card-toggle svg {
    transition: transform 0.3s ease;
}

.yoga-card-toggle.active svg {
    transform: rotate(180deg);
}

.yoga-card-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, margin-top 0.6s ease;
}

.yoga-card-details.active {
    max-height: 1000px;
    margin-top: 2rem;
}

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

.benefit-item h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.benefit-item ul {
    list-style: none;
}

.benefit-item li {
    color: var(--text-muted);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.benefit-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 1.5rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .yoga-card-content {
        padding: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SOUND BATHS SECTION
   ============================================ */

.sound-baths {
    position: relative;
    background: linear-gradient(180deg, 
        var(--primary-bg) 0%, 
        rgba(51, 75, 92, 0.9) 100%);
    overflow: hidden;
}

.sound-baths-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.sound-wave {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--secondary) 50%, 
        transparent 100%);
    opacity: 0.2;
    animation: wave 8s ease-in-out infinite;
}

.sound-wave-1 {
    top: 30%;
    animation-delay: 0s;
}

.sound-wave-2 {
    top: 50%;
    animation-delay: 2s;
}

.sound-wave-3 {
    top: 70%;
    animation-delay: 4s;
}

@keyframes wave {
    0%, 100% { transform: scaleX(0.5); opacity: 0.1; }
    50% { transform: scaleX(1); opacity: 0.3; }
}

.sound-baths-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.sound-baths-description {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.sound-baths-note {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 2rem 0 2rem;
    text-align: center;
    font-style: italic;
}

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

.sound-benefit {
    text-align: center;
}

.sound-benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    opacity: 0.3;
    position: relative;
}

.sound-benefit-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: var(--primary-bg);
}

.sound-benefit h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.sound-benefit p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   AROMATHERAPY SECTION
   ============================================ */

.aromatherapy {
    background: var(--primary-bg);
}

.aromatherapy-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.aroma-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.aromatherapy-products {
    margin: 4rem 0;
}

.products-title {
    text-align: center;
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.product-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg,
        rgba(173, 139, 164, 0.05),
        rgba(182, 213, 233, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(173, 139, 164, 0.15);
    text-align: center;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(173, 139, 164, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--aura-gradient-1), var(--aura-gradient-2));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-icon-inner {
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: var(--primary-bg);
    animation: pulse 3s ease infinite;
}

.product-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.product-blend {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(173, 139, 164, 0.1);
    border-radius: 10px;
}

.blend-recipe {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.product-benefits {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    font-style: italic;
}

.custom-blends {
    max-width: 700px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: linear-gradient(135deg,
        rgba(173, 139, 164, 0.1),
        rgba(182, 213, 233, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(173, 139, 164, 0.2);
    text-align: center;
}

.custom-blends-content h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.custom-blends-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

/* ============================================
   FORMS
   ============================================ */

.form-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, 
        rgba(207, 167, 199, 0.05), 
        rgba(168, 183, 209, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(207, 167, 199, 0.15);
}

.form-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.form-intro {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(207, 167, 199, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-section {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   FIRST CLASS SECTION
   ============================================ */

.first-class {
    background: linear-gradient(180deg,
        var(--primary-bg) 0%,
        rgba(51, 75, 92, 0.95) 100%);
}

.first-class-content {
    text-align: center;
}

.first-class-intro {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.first-class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.first-class-card {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg,
        rgba(207, 167, 199, 0.05),
        rgba(168, 183, 209, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(207, 167, 199, 0.15);
    transition: var(--transition-smooth);
}

.first-class-card:hover {
    transform: translateY(-5px);
    border-color: rgba(207, 167, 199, 0.3);
}

.first-class-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.first-class-card ul {
    list-style: none;
    text-align: left;
}

.first-class-card li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    color: var(--text-muted);
    position: relative;
    line-height: 1.6;
}

.first-class-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* ============================================
   EVENTS SECTION
   ============================================ */

.events {
    background: var(--primary-bg);
}

.events-featured {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.event-highlight {
    padding: 3rem;
    background: linear-gradient(135deg,
        rgba(173, 139, 164, 0.1),
        rgba(182, 213, 233, 0.1));
    border-radius: 20px;
    border: 2px solid rgba(173, 139, 164, 0.3);
    text-align: center;
    position: relative;
}

.event-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--aura-gradient-1), var(--aura-gradient-2));
    color: var(--text-light);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.event-highlight h3 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.event-highlight p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
}

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

.event-card {
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg,
        rgba(173, 139, 164, 0.05),
        rgba(182, 213, 233, 0.05));
    border: 1px solid rgba(173, 139, 164, 0.15);
    transition: var(--transition-smooth);
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: rgba(173, 139, 164, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.event-card-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, var(--aura-gradient-1), var(--aura-gradient-2));
    overflow: hidden;
}

.event-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.event-card-image-2 {
    background: linear-gradient(135deg, var(--aura-gradient-2), var(--aura-gradient-3));
}

.event-card-image-3 {
    background: linear-gradient(135deg, var(--aura-gradient-3), var(--aura-gradient-1));
}

.event-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(51, 77, 92, 0.3) 100%);
    z-index: 1;
}

.event-card-content {
    padding: 2rem;
}

.event-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.event-card-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

.events-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg,
        rgba(173, 139, 164, 0.05),
        rgba(182, 213, 233, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(173, 139, 164, 0.15);
}

.events-cta p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* ============================================
   TEACHER SECTION
   ============================================ */

.teacher {
    background: linear-gradient(180deg,
        var(--primary-bg) 0%,
        rgba(51, 75, 92, 0.95) 100%);
}

.teacher-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.teacher-image {
    position: sticky;
    top: 120px;
}

.teacher-image-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 20px;
    overflow: hidden;
}

.teacher-image-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    filter: blur(40px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease infinite;
}

.teacher-bio p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--text-muted);
}

.teacher-quote {
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg,
        rgba(173, 139, 164, 0.1),
        rgba(182, 213, 233, 0.1));
    border-left: 4px solid var(--secondary);
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 968px) {
    .teacher-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .teacher-image {
        position: relative;
        top: 0;
    }
}

/* ============================================
   BOOKING SECTION
   ============================================ */

.booking {
    background: var(--primary-bg);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    background: linear-gradient(180deg,
        var(--primary-bg) 0%,
        rgba(51, 75, 92, 0.95) 100%);
    text-align: center;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    position: relative;
    min-height: 250px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
    padding: 2.5rem;
    background: linear-gradient(135deg,
        rgba(207, 167, 199, 0.05),
        rgba(168, 183, 209, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(207, 167, 199, 0.15);
}

.testimonial-card.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--secondary);
    font-weight: 500;
    font-size: 1rem;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg,
        rgba(207, 167, 199, 0.1),
        rgba(168, 183, 209, 0.1));
    border: 1px solid rgba(207, 167, 199, 0.3);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-btn:hover {
    background: var(--secondary);
    color: var(--primary-bg);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.75rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(207, 167, 199, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dot.active {
    background: var(--secondary);
    transform: scale(1.3);
}

/* ============================================
   INSTAGRAM SECTION
   ============================================ */

.instagram {
    position: relative;
    background: var(--primary-bg);
    overflow: hidden;
}

.instagram-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.instagram-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary), transparent);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 6s ease infinite;
}

.instagram-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.instagram-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.social-links .btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    .social-links {
        max-width: 100%;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(180deg,
        rgba(51, 75, 92, 0.95) 0%,
        rgba(40, 60, 75, 1) 100%);
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(207, 167, 199, 0.15);
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.footer-tagline {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--secondary);
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

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

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

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
}

.footer-closing {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
}

@media (max-width: 968px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 480px) {
    :root {
        --section-padding: 80px;
        --section-padding-mobile: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}
