/* ============================================
   ARIA PILATES - Premium Website Styles
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Feminine & Elegant Palette */
    --primary: #2d2226;
    --primary-light: #3d2f34;
    --accent: #e6b0e6;
    --accent-light: #f0c7f0;
    --accent-dark: #c890c8;
    --rose: #dfb0df;
    --blush: #f5e6e0;
    --mauve: #8e6c7c;
    --white: #ffffff;
    --off-white: #fdf8f6;
    --cream: #faf5f3;
    --gray-100: #f9f5f4;
    --gray-200: #ede6e3;
    --gray-300: #d9d0cc;
    --gray-400: #b3a8a4;
    --gray-500: #8c7e7a;
    --gray-600: #635a57;
    --gray-700: #4a403d;
    --gray-800: #352c2a;
    --gray-900: #2d2226;
    --success: #7cb4a5;
    --gradient-1: linear-gradient(135deg, #2d2226 0%, #3d2f34 50%, #4a3540 100%);
    --gradient-2: linear-gradient(135deg, #e6b0e6 0%, #f0c7f0 100%);
    --gradient-3: linear-gradient(180deg, rgba(45,34,38,0) 0%, rgba(45,34,38,0.8) 100%);
    --gradient-rose: linear-gradient(135deg, #f5e6e0 0%, #fdf8f6 100%);
    --gradient-glow: radial-gradient(circle, rgba(230,176,230,0.18) 0%, transparent 70%);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1280px;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(45,34,38,0.04);
    --shadow-md: 0 8px 30px rgba(45,34,38,0.08);
    --shadow-lg: 0 20px 60px rgba(45,34,38,0.10);
    --shadow-xl: 0 30px 80px rgba(45,34,38,0.14);
    --shadow-glow: 0 8px 40px rgba(230,176,230,0.25);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul, ol {
    list-style: none;
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    animation: pulse 1.5s ease infinite;
}

.preloader-equalizer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    height: 40px;
    margin-bottom: 24px;
}

.preloader-equalizer span {
    width: 4px;
    background: var(--accent);
    border-radius: 4px;
    animation: eqBar 1s ease-in-out infinite;
}

.preloader-equalizer span:nth-child(1) { animation-delay: 0s; }
.preloader-equalizer span:nth-child(2) { animation-delay: 0.2s; }
.preloader-equalizer span:nth-child(3) { animation-delay: 0.4s; }
.preloader-equalizer span:nth-child(4) { animation-delay: 0.15s; }
.preloader-equalizer span:nth-child(5) { animation-delay: 0.3s; }

@keyframes eqBar {
    0%, 100% { height: 8px; }
    50% { height: 36px; }
}

.preloader-percent {
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-progress {
    width: 0;
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    animation: loading 1.5s ease forwards;
}

@keyframes loading {
    to { width: 100%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99997;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
    opacity: 0.5;
}

.cursor-hover .cursor-outline {
    width: 60px;
    height: 60px;
    opacity: 0.3;
    border-color: var(--accent);
}

@media (max-width: 1024px) {
    .cursor-dot, .cursor-outline { display: none; }
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

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

.mt-4 {
    margin-top: 2rem;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-label.light {
    color: var(--accent-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.section-title.light {
    color: var(--white);
}

.section-title em {
    font-style: italic;
    color: var(--accent);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 176, 230, 0.35);
}

.btn-outline {
    border: 1.5px solid var(--gray-300);
    color: var(--gray-800);
    background: transparent;
}

.hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
}

.hero .btn-outline:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

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

.btn-dark:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 34, 38, 0.2);
}

.btn-nav {
    background: var(--accent);
    color: var(--white);
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-nav:hover {
    background: var(--accent-dark);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.8rem;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
}

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

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

.logo-img {
    height: 85px;
    width: auto;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

.navbar.scrolled .logo-img {
    filter: none;
    height: 65px;
}

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

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

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

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

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--gray-900);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
    background: var(--gray-800);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-link:hover {
    color: var(--accent);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Hero Image Slider */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 8s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 34, 38, 0.6);
    z-index: 1;
}

.hero-slider-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 10px;
}

/* Page Header (for inner pages) */
.page-header {
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(45, 34, 38, 0.7) 0%, rgba(45, 34, 38, 0.55) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--gradient-glow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.page-header .section-label {
    margin-bottom: 12px;
}

.page-header .section-title {
    margin-bottom: 12px;
}

.page-header .section-title em {
    color: var(--accent-light);
}

.page-header .section-subtitle {
    max-width: 500px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.8);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(230, 176, 230, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(142, 108, 124, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(232, 180, 168, 0.08) 0%, transparent 40%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Animated Gradient Orbs */
.hero-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    will-change: transform;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 176, 230, 0.35) 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation: orbFloat1 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(142, 108, 124, 0.4) 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
    animation: orbFloat2 25s ease-in-out infinite;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(232, 180, 168, 0.3) 0%, transparent 70%);
    top: 40%;
    right: 20%;
    animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, 40px) scale(1.1); }
    66% { transform: translate(-40px, 60px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-50px, -30px) scale(1.15); }
    66% { transform: translate(40px, -50px) scale(0.9); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-60px, 40px) scale(1.2); }
}

/* Hero Grid Lines */
.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(230, 176, 230, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(230, 176, 230, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}

/* Hero Equalizer Visualizer */
.hero-equalizer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    height: 50px;
    margin: 0 auto 40px;
    max-width: 320px;
}

.hero-equalizer span {
    flex: 1;
    background: linear-gradient(to top, var(--accent), var(--rose));
    border-radius: 3px;
    animation: heroEq 1.4s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes heroEq {
    0%, 100% { height: 20%; }
    50% { height: 100%; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

/* Hero Animated Logo */
.hero-logo-animated {
    margin-bottom: 32px;
}

.hero-logo-img {
    width: 280px;
    height: auto;
    margin: 0 auto;
    animation: logoFloat 4s ease-in-out infinite, logoFadeIn 1.2s ease forwards;
    opacity: 0;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes logoFadeIn {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

/* Preloader Logo Image */
.preloader-logo-img {
    width: 160px;
    height: auto;
    margin: 0 auto 24px;
    animation: pulse 1.5s ease infinite;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 176, 230, 0.12);
    border: 1px solid rgba(230, 176, 230, 0.25);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent-light);
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 8vw, 6.5rem);
    color: var(--white);
}

.title-italic {
    font-style: italic;
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
    padding: 20px 0;
    background: var(--primary);
    overflow: hidden;
    border-top: 1px solid rgba(230, 176, 230, 0.15);
    border-bottom: 1px solid rgba(230, 176, 230, 0.15);
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    animation: marquee 30s linear infinite;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 3px;
}

.marquee-dot {
    color: var(--accent);
    font-size: 0.8rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   BENEFITS STRIP
   ============================================ */
.benefits-strip {
    padding: 40px 0;
    background: var(--blush);
    border-bottom: 1px solid rgba(230, 176, 230, 0.12);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(230, 176, 230, 0.1);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-light);
}

.benefit-icon-wrap {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--accent-light), var(--rose));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.benefit-text h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1px;
}

.benefit-text p {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.about-section::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: var(--gradient-glow);
    border-radius: 50%;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(45, 34, 38, 0.3) 100%);
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--white);
}

.about-img-secondary img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--accent);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin-top: 4px;
    line-height: 1.3;
}

.about-text {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(230, 176, 230, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
}

.feature-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ============================================
   CLASSES SECTION
   ============================================ */
.classes-section {
    background: var(--white);
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.class-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: transform 0.3s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.class-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.class-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.class-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.class-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(45, 34, 38, 0.6) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 16px;
}

.class-tag {
    background: var(--accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.class-content {
    padding: 24px;
}

.class-genre {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.class-genre i {
    margin-right: 4px;
}

.class-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.class-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.class-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: var(--gray-400);
}

.class-meta i {
    margin-right: 4px;
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.experience-bg {
    position: absolute;
    inset: 0;
}

.experience-video,
.experience-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 34, 38, 0.88);
}

.experience-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.experience-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 50px;
}

.experience-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.exp-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.exp-icon {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(230, 176, 230, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    transition: var(--transition);
}

.exp-feature:hover .exp-icon {
    background: rgba(230, 176, 230, 0.1);
    border-color: var(--accent);
}

.exp-feature span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

/* ============================================
   SCHEDULE SECTION
   ============================================ */
.schedule-section {
    background: var(--cream);
}

.schedule-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.schedule-tab {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-500);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.schedule-tab:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.schedule-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.schedule-day {
    display: none;
}

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

.schedule-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.schedule-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.schedule-time {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    min-width: 90px;
}

.schedule-info {
    flex: 1;
}

.schedule-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
}

.schedule-info span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.schedule-spots {
    font-size: 0.8rem;
    color: var(--accent-dark);
    font-weight: 500;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    background: var(--white);
}

.intro-offer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 40px 50px;
    margin-bottom: 50px;
    overflow: hidden;
}

.offer-glow {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(230, 176, 230, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.offer-badge {
    background: var(--accent);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 8px;
}

.offer-content {
    position: relative;
    z-index: 2;
}

.offer-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 4px;
}

.offer-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.offer-price {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.offer-price .currency {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 500;
}

.offer-price .amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition);
}

.toggle-label.active {
    color: var(--gray-900);
}

.toggle-switch {
    width: 56px;
    height: 28px;
    background: var(--gray-200);
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-switch.active {
    background: var(--accent);
}

.toggle-slider {
    width: 22px;
    height: 22px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-switch.active .toggle-slider {
    left: 31px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-grid:not(.active) {
    display: none;
}

.price-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.price-card.featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.price-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.price-header {
    margin-bottom: 24px;
}

.price-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.price-header p {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.price-amount {
    margin-bottom: 28px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-amount .currency {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-500);
}

.price-amount .amount {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
}

.price-amount .per {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.price-features {
    margin-bottom: 32px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.price-features li i {
    color: var(--accent);
    font-size: 0.8rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--cream);
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 50px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testimonial-card p {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--gray-700);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-800);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.test-prev, .test-next {
    width: 44px;
    height: 44px;
    border: 1px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: var(--transition);
}

.test-prev:hover, .test-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.test-dots {
    display: flex;
    gap: 8px;
}

.test-dot {
    width: 8px;
    height: 8px;
    background: var(--gray-300);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.test-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 10px;
}

/* ============================================
   STUDIO / GALLERY
   ============================================ */
.studio-section {
    background: var(--white);
}

.studio-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 34, 38, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
}

.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(230, 176, 230, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
}

.contact-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.contact-item a {
    color: var(--accent-dark);
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.parking-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(124, 180, 165, 0.08);
    border: 1px solid rgba(124, 180, 165, 0.2);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--success);
    margin-top: 16px;
}

.map-wrapper {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

/* ============================================
   BOOKING (GLOFOX EMBED)
   ============================================ */
.booking-section {
    background: var(--white);
}

.booking-intro {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.booking-intro p {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.7;
}

.glofox-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    padding: 8px;
}

.glofox-wrapper iframe {
    display: block;
    width: 1px;
    min-width: 100%;
    border: 0;
}

.booking-help {
    margin-top: 32px;
    text-align: center;
}

.booking-help p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.booking-help a {
    color: var(--accent-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.booking-help a:hover {
    color: var(--accent);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
    background: var(--white);
    padding: 80px 0;
}

.newsletter-card {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 8px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    min-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary);
    padding: 80px 0 30px;
}

.footer-top {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 28px;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    flex-shrink: 0;
}

.footer-logo-text p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-links a i {
    font-size: 0.8rem;
    color: var(--accent);
    width: 16px;
    text-align: center;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
}

/* ============================================
   WHY US SECTION
   ============================================ */
.whyus-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.whyus-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 40vw;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: 20px;
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
}

.whyus-section .container {
    position: relative;
    z-index: 1;
}

.whyus-section .section-title {
    color: var(--white);
}

.whyus-section .section-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.whyus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.whyus-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.whyus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 176, 230, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.whyus-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(230, 176, 230, 0.3);
    transform: translateY(-8px);
}

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

.whyus-number {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.whyus-icon {
    width: 56px;
    height: 56px;
    background: rgba(230, 176, 230, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.whyus-card:hover .whyus-icon {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
}

.whyus-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.whyus-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ============================================
   INSTRUCTORS SECTION
   ============================================ */
.instructors-section {
    background: var(--white);
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.instructor-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 4 / 5;
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.instructor-card:hover .instructor-image img {
    transform: scale(1.08);
}

.instructor-social {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.instructor-card:hover .instructor-social {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.instructor-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.instructor-social a:hover {
    background: var(--accent);
    color: var(--white);
}

.instructor-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.instructor-info span {
    display: block;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.instructor-info p {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: var(--white);
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 26px;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-800);
    transition: var(--transition);
}

.faq-question i {
    color: var(--accent);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    min-width: 16px;
}

.faq-item.active .faq-question {
    color: var(--accent-dark);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 26px 24px;
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================
   VIRTUAL TOUR SECTION
   ============================================ */
.tour-section {
    background: var(--cream);
}

.tour-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    background: var(--primary);
}

.tour-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.tour-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(45, 34, 38, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    pointer-events: none;
    border: 1px solid rgba(230, 176, 230, 0.3);
}

.tour-badge i {
    color: var(--accent);
    font-size: 1rem;
}

.tour-credit {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--gray-400);
    letter-spacing: 0.5px;
}

/* ============================================
   TIKTOK SECTION
   ============================================ */
.tiktok-section {
    background: var(--cream);
}

.tiktok-content {
    max-width: 680px;
    margin: 0 auto;
}

.tiktok-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.tiktok-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.tiktok-avatar {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.tiktok-handle h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.tiktok-handle span {
    font-size: 0.82rem;
    color: var(--gray-400);
}

.tiktok-card-header .btn {
    margin-left: auto;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.78rem;
    border-radius: 50px;
}

.tiktok-highlights {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.tiktok-highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.tiktok-highlight-item:hover {
    background: rgba(230, 176, 230, 0.08);
    transform: translateX(4px);
}

.tiktok-highlight-item i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(230, 176, 230, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
}

.tiktok-highlight-item h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.tiktok-highlight-item p {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.tiktok-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.tiktok-cta:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* TikTok Section (Homepage) */
.tiktok-videos-section {
    background: var(--off-white);
}

.tiktok-feed-wrap {
    display: flex;
    justify-content: center;
    margin: 44px 0 32px;
}

.tiktok-feed-frame {
    width: 100%;
    max-width: 780px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tiktok-feed-frame .tiktok-embed {
    width: 100% !important;
    margin: 0 !important;
}

.tiktok-loading {
    text-align: center;
    color: var(--gray-500);
    padding: 40px 20px;
}

.tiktok-loading i {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
    animation: pulse 1.6s ease-in-out infinite;
}

.tiktok-loading p {
    font-size: 0.95rem;
}

.tiktok-loading a {
    color: var(--accent-dark);
    font-weight: 600;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

.tiktok-cta-wrap {
    text-align: center;
    margin-top: 10px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .classes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .whyus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .btn-nav {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .newsletter-card {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        min-width: auto;
        width: 100%;
    }

    .intro-offer {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .price-card.featured {
        transform: none;
    }

    .price-card.featured:hover {
        transform: translateY(-5px);
    }

    .studio-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .instructors-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
    }

    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-intro {
        position: static;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

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

    .hero-stats {
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .classes-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .whyus-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .whyus-bg-text {
        font-size: 60vw;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-card p {
        font-size: 1.1rem;
    }

    .studio-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-large {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .experience-features {
        gap: 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .schedule-item {
        flex-wrap: wrap;
        gap: 12px;
    }

    .schedule-spots {
        display: none;
    }

    .map-wrapper {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    .nav-container {
        padding: 0 18px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hero-title .title-line {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

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

    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 16px;
    }

    .about-experience-badge {
        top: 16px;
        right: 16px;
    }

    .tiktok-embed-block {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .map-wrapper {
        height: 260px;
    }
}
