/* ============================================
   Glamour Atelier - Exclusive Beauty Salon
   Emerald & Gold Theme - Unique Design System
   ============================================ */

/* ========== ACCESSIBILITY ========== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ========== CSS CUSTOM PROPERTIES ========== */
:root {
    /* Primary Palette - Emerald & Gold */
    --emerald: #064E3B;
    --emerald-light: #059669;
    --emerald-dark: #022C22;
    --emerald-soft: rgba(6, 78, 59, 0.08);
    --emerald-medium: rgba(6, 78, 59, 0.15);
    
    /* Gold Accents */
    --gold: #D4AF37;
    --gold-light: #E8C547;
    --gold-dark: #B8960C;
    --gold-soft: rgba(212, 175, 55, 0.15);
    
    /* Neutrals */
    --black: #0A0A0A;
    --charcoal: #1A1A1A;
    --gray-900: #262626;
    --gray-800: #404040;
    --gray-600: #525252;
    --gray-400: #A3A3A3;
    --gray-200: #E5E5E5;
    --gray-100: #F5F5F5;
    --white: #FFFFFF;
    --cream: #FEFDFB;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    --gradient-emerald: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-light) 100%);
    --gradient-dark: linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.8) 100%);
    --gradient-overlay: linear-gradient(135deg, color-mix(in srgb, var(--emerald) 60%, transparent) 0%, rgba(10, 10, 10, 0.7) 100%);
    
    /* Overlay color for gallery and other elements */
    --overlay-primary: color-mix(in srgb, var(--emerald) 50%, transparent);
    
    /* Typography */
    --font-display: 'Marcellus', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --sp-1: 0.25rem;
    --sp-2: 0.5rem;
    --sp-3: 0.75rem;
    --sp-4: 1rem;
    --sp-5: 1.25rem;
    --sp-6: 1.5rem;
    --sp-8: 2rem;
    --sp-10: 2.5rem;
    --sp-12: 3rem;
    --sp-16: 4rem;
    --sp-20: 5rem;
    --sp-24: 6rem;
    --sp-32: 8rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.25);
    --shadow-emerald: 0 10px 40px rgba(6, 78, 59, 0.2);
    
    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --duration-fast: 200ms;
    --duration-normal: 350ms;
    --duration-slow: 500ms;
    --duration-slower: 800ms;
    
    /* Layout */
    --top-bar-height: 70px;
    --side-nav-width: 320px;
    --container-max: 1320px;
    --container-padding: 1.5rem;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--top-bar-height);
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-600);
    background-color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration-normal) var(--ease-smooth);
}

ul, ol {
    list-style: none;
}

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

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

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

/* ========== SECTION COMPONENTS ========== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: var(--sp-4);
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-tag--light {
    color: var(--gold-light);
}

.section-tag--light::before {
    background: var(--gold-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: var(--sp-6);
}

.section-title em {
    font-style: normal;
    color: var(--emerald);
}

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

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

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    line-height: 1.8;
}

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

.section-header {
    text-align: center;
    margin-bottom: var(--sp-16);
}

.section-header .section-tag::before,
.section-header .section-tag::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-header .section-desc {
    margin: 0 auto;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-3);
    padding: var(--sp-4) var(--sp-8);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1;
    border-radius: var(--radius-full);
    transition: all var(--duration-normal) var(--ease-smooth);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn i {
    font-size: 0.85em;
    transition: transform var(--duration-normal) var(--ease-smooth);
}

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

.btn--primary {
    background: var(--gradient-gold);
    color: var(--charcoal);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.35);
}

.btn--glass {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn--glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--glass-dark {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.btn--glass-dark:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}

.btn--white {
    background: var(--white);
    color: var(--emerald);
    box-shadow: var(--shadow-lg);
}

.btn--white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn--sm {
    padding: var(--sp-3) var(--sp-6);
    font-size: 0.8rem;
}

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

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

/* ========== SIDE NAVIGATION ========== */
.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--side-nav-width);
    height: 100vh;
    background: var(--charcoal);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    padding: var(--sp-8);
    transform: translateX(-100%);
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.side-nav.is-open {
    transform: translateX(0);
}

.side-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--sp-8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.side-nav__logo {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.side-nav__logo-img {
    max-height: 32px;
    width: auto;
    object-fit: contain;
}

.side-nav__logo-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.side-nav__logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: 1px;
}

.side-nav__close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 1.25rem;
    border-radius: var(--radius-full);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.side-nav__close:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.side-nav__menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--sp-6) 0;
}

.side-nav__list {
    width: 100%;
    margin-bottom: var(--sp-8);
}

.side-nav__item {
    margin-bottom: var(--sp-1);
}

.side-nav__link {
    display: block;
    padding: var(--sp-2) var(--sp-4);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--gray-400);
    position: relative;
    transition: all var(--duration-normal) var(--ease-smooth);
    overflow: hidden;
}

.side-nav__link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--duration-normal) var(--ease-smooth);
}

.side-nav__link:hover {
    color: var(--white);
    padding-left: var(--sp-6);
}

.side-nav__link:hover::before {
    width: 14px;
}

.side-nav__link.is-active {
    color: var(--gold);
}

.side-nav__cta {
    margin: var(--sp-4) var(--sp-4) 0;
    width: calc(100% - var(--sp-8));
    justify-content: center;
}

.side-nav__footer {
    padding-top: var(--sp-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.side-nav__socials {
    display: flex;
    gap: var(--sp-4);
    margin-bottom: var(--sp-4);
}

.side-nav__socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.side-nav__socials a:hover {
    color: var(--charcoal);
    background: var(--gold);
    border-color: var(--gold);
}

.side-nav__copyright {
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* ========== TOP BAR ========== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--top-bar-height);
    z-index: 1000;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.top-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.top-bar.is-scrolled::before {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

.top-bar__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.top-bar__logo {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.top-bar__logo-img {
    max-height: 28px;
    width: auto;
    object-fit: contain;
}

.top-bar__logo-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.top-bar__logo:hover .top-bar__logo-icon {
    transform: rotate(45deg);
}

.top-bar__logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--white);
    letter-spacing: 1px;
    transition: color var(--duration-normal) var(--ease-smooth);
}

.top-bar.is-scrolled .top-bar__logo-text {
    color: var(--charcoal);
}

.top-bar__actions {
    display: flex;
    align-items: center;
    gap: var(--sp-6);
}

.top-bar__phone {
    display: none;
    align-items: center;
    gap: var(--sp-2);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    transition: color var(--duration-normal) var(--ease-smooth);
}

.top-bar.is-scrolled .top-bar__phone {
    color: var(--charcoal);
}

.top-bar__phone i {
    color: var(--gold);
}

.top-bar__cta {
    display: none;
    padding: var(--sp-3) var(--sp-6);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.top-bar__cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.top-bar__menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
}

.menu-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--duration-normal) var(--ease-smooth);
    transform-origin: center;
}

.top-bar.is-scrolled .menu-line {
    background: var(--charcoal);
}

.top-bar__menu-btn.is-active .menu-line:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

.top-bar__menu-btn.is-active .menu-line:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

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

.hero__video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    z-index: 1;
}

/* Sound Toggle Button */
.hero__sound-toggle {
    position: absolute;
    bottom: var(--sp-8);
    right: var(--sp-8);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-3) var(--sp-5);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
    transition: all var(--duration-normal) var(--ease-smooth);
    cursor: pointer;
}

.hero__sound-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.sound-icon {
    font-size: 1rem;
}

.sound-icon--on {
    display: none;
}

.hero__sound-toggle.is-unmuted .sound-icon--off {
    display: none;
}

.hero__sound-toggle.is-unmuted .sound-icon--on {
    display: inline;
}

.sound-text {
    font-weight: 500;
}

/* Hero Content */
.hero__content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: var(--sp-8);
    max-width: 900px;
}

.hero__content-inner {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s var(--ease-smooth) 0.3s forwards;
}

.hero__tagline {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--sp-6);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 12vw, 7rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    margin-bottom: var(--sp-8);
}

.title-line {
    display: block;
}

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

.hero__description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto var(--sp-10);
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-4);
    justify-content: center;
}

/* Scroll Hint */
.hero__scroll-hint {
    position: absolute;
    bottom: var(--sp-10);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-3);
    color: var(--white);
    opacity: 0.7;
}

.scroll-text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(12px);
    }
}

/* Hero Decorative Elements */
.hero__decor {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-full);
    z-index: 2;
    pointer-events: none;
}

.hero__decor--left {
    left: -150px;
    top: 20%;
    animation: float 8s ease-in-out infinite;
}

.hero__decor--right {
    right: -150px;
    bottom: 20%;
    animation: float 8s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

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

/* ========== ABOUT SECTION ========== */
.about {
    padding: var(--sp-24) 0;
    background: var(--cream);
}

.about__split {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-12);
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.about__image-side {
    position: relative;
}

.about__image-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform var(--duration-slower) var(--ease-smooth);
}

.about__image-wrapper:hover img {
    transform: scale(1.05);
}

.about__image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--gold);
    border-radius: var(--radius-2xl);
    transform: translate(15px, 15px);
    z-index: -1;
    opacity: 0.5;
}

.about__stats {
    position: absolute;
    bottom: -30px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.stat-card {
    background: var(--white);
    padding: var(--sp-5) var(--sp-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 140px;
}

.stat-card--accent {
    background: var(--emerald);
    color: var(--white);
}

.stat-card__number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--emerald);
    line-height: 1;
    margin-bottom: var(--sp-1);
}

.stat-card--accent .stat-card__number {
    color: var(--gold);
}

.stat-card__label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-600);
}

.stat-card--accent .stat-card__label {
    color: rgba(255, 255, 255, 0.8);
}

.about__content-side {
    padding: var(--sp-8) 0;
}

.about__text {
    margin-bottom: var(--sp-8);
}

.about__text p {
    margin-bottom: var(--sp-5);
    font-size: 1.05rem;
    line-height: 1.9;
}

.about__text strong {
    color: var(--emerald);
    font-weight: 600;
}

.about__highlights {
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
    margin-bottom: var(--sp-10);
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-5);
}

.highlight-item__icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-soft);
    color: var(--gold-dark);
    font-size: 1.25rem;
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.highlight-item:hover .highlight-item__icon {
    background: var(--gold);
    color: var(--charcoal);
    transform: rotate(-5deg) scale(1.1);
}

.highlight-item__content h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: var(--sp-1);
}

.highlight-item__content p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ========== COURSES SECTION ========== */
.courses {
    padding: var(--sp-24) 0;
    background: var(--gray-100);
}

.courses__showcase {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-8);
    justify-content: center;
}

.course-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--duration-normal) var(--ease-smooth);
    width: 100%;
    max-width: 400px;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.course-card--featured {
    border: 2px solid var(--gold);
}

.course-card__visual {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.course-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.course-card:hover .course-card__visual img {
    transform: scale(1.1);
}

.course-card__badge {
    position: absolute;
    top: var(--sp-4);
    left: var(--sp-4);
    padding: var(--sp-2) var(--sp-4);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--charcoal);
    background: var(--gold);
    border-radius: var(--radius-full);
}

.course-card__body {
    padding: var(--sp-6);
}

.course-card__title {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--sp-3);
}

.course-card__text {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: var(--sp-5);
    line-height: 1.7;
}

.course-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--emerald);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.course-card__link i {
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.course-card__link:hover {
    color: var(--gold-dark);
}

.course-card__link:hover i {
    transform: translateX(6px);
}

/* ========== SERVICES SECTION ========== */
.services {
    position: relative;
    padding: var(--sp-24) 0;
    background: var(--emerald-dark);
    overflow: hidden;
}

.services__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.services__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(212, 175, 55, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

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

.services__categories {
    margin-top: var(--sp-12);
}

.services__tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-3);
    margin-bottom: var(--sp-10);
}

.services__tab {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: var(--sp-4) var(--sp-6);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.services__tab:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.services__tab.is-active {
    color: var(--charcoal);
    background: var(--gold);
    border-color: var(--gold);
}

.services__panels {
    position: relative;
}

.services__panel {
    display: none;
}

.services__panel.is-active {
    display: block;
    animation: fadeIn 0.4s var(--ease-smooth);
}

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

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);
}

.service-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--sp-6);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(8px);
}

.service-item__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--sp-4);
    margin-bottom: var(--sp-2);
}

.service-item__name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
}

.service-item__price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
}

.service-item__desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--sp-3);
    line-height: 1.6;
}

.service-item__duration {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.service-item__duration i {
    color: var(--gold);
    opacity: 0.6;
}

/* Services CTA */
.services__cta {
    display: flex;
    justify-content: center;
    margin-top: var(--sp-12);
}

.btn--gold {
    background: var(--gold);
    color: var(--charcoal);
    border: none;
    padding: var(--sp-5) var(--sp-10);
    font-weight: 600;
}

.btn--gold:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ========== TEAM SECTION ========== */
.team {
    padding: var(--sp-24) 0;
    background: var(--cream);
}

.team__carousel {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-8);
    justify-content: center;
}

/* Circular Team Card Style */
.team-card--circular {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--sp-10) var(--sp-6);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--duration-normal) var(--ease-smooth);
    border: 1px solid var(--gray-200);
    width: 100%;
    max-width: 340px;
}

.team-card--circular:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.team-card__avatar {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto var(--sp-6);
}

.team-card__avatar img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.team-card--circular:hover .team-card__avatar img {
    transform: scale(1.05);
}

.team-card__ring {
    position: absolute;
    inset: -8px;
    border-radius: var(--radius-full);
    border: 2px dashed var(--gold);
    opacity: 0;
    transition: all var(--duration-normal) var(--ease-smooth);
    animation: rotateRing 20s linear infinite paused;
}

.team-card--circular:hover .team-card__ring {
    opacity: 1;
    animation-play-state: running;
}

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

.team-card--circular .team-card__info {
    padding: 0;
}

.team-card--circular .team-card__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: var(--sp-2);
}

.team-card--circular .team-card__role {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    background: var(--emerald);
    padding: var(--sp-2) var(--sp-4);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--sp-4);
}

.team-card--circular .team-card__bio {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--sp-5);
}

.team-card--circular .team-card__social {
    display: flex;
    justify-content: center;
    gap: var(--sp-3);
}

.team-card--circular .team-card__social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    background: var(--emerald-soft);
    border-radius: var(--radius-full);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.team-card--circular .team-card__social a:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-3px);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-card__image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.team-card:hover .team-card__image img {
    transform: scale(1.1);
}

.team-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(6, 78, 59, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--sp-6);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-smooth);
}

.team-card:hover .team-card__overlay {
    opacity: 1;
}

.team-card__social {
    display: flex;
    gap: var(--sp-3);
}

.team-card__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.team-card__social a:hover {
    background: var(--gold);
    color: var(--charcoal);
}

.team-card__info {
    padding: var(--sp-6);
    text-align: center;
}

.team-card__name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--charcoal);
    margin-bottom: var(--sp-1);
}

.team-card__role {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--sp-3);
}

.team-card__bio {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
    position: relative;
    padding: var(--sp-24) 0;
    background: var(--gray-100);
}

.testimonials__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: var(--emerald-soft);
    z-index: 0;
}

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

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

.testimonial-card {
    background: var(--white);
    padding: var(--sp-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card__rating {
    display: flex;
    gap: var(--sp-1);
    margin-bottom: var(--sp-5);
}

.testimonial-card__rating i {
    color: var(--gold);
    font-size: 0.9rem;
}

.testimonial-card__quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gray-800);
    line-height: 1.8;
    margin-bottom: var(--sp-6);
    position: relative;
}

.testimonial-card__quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--emerald-soft);
    line-height: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
}

.testimonial-card__author img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--gold-soft);
}

.testimonial-card__author-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: var(--sp-1);
}

.testimonial-card__author-info span {
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* ========== CTA SECTION ========== */
.cta {
    position: relative;
    padding: var(--sp-24) 0;
    overflow: hidden;
}

.cta__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.cta__overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    z-index: 1;
}

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

.cta__content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta__label {
    display: inline-block;
    padding: var(--sp-2) var(--sp-5);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--charcoal);
    background: var(--gold);
    border-radius: var(--radius-full);
    margin-bottom: var(--sp-6);
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: var(--sp-5);
}

.cta__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: var(--sp-8);
}

.cta__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-4);
    margin-bottom: var(--sp-10);
}

.cta__perks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-6);
}

.cta__perk {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta__perk i {
    color: var(--gold);
}

/* ========== GALLERY SECTION - INFINITE CAROUSEL ========== */
.gallery {
    padding: var(--sp-24) 0 var(--sp-16);
    background: var(--cream);
    overflow: hidden;
}

.gallery__carousel {
    margin-top: var(--sp-12);
    overflow: hidden;
    position: relative;
}

.gallery__carousel::before,
.gallery__carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.gallery__carousel::before {
    left: 0;
    background: linear-gradient(90deg, var(--cream) 0%, transparent 100%);
}

.gallery__carousel::after {
    right: 0;
    background: linear-gradient(-90deg, var(--cream) 0%, transparent 100%);
}

.gallery__track {
    display: flex;
    gap: var(--sp-5);
    width: max-content;
    animation: scrollGallery 40s linear infinite;
}

.gallery__track:hover {
    animation-play-state: paused;
}

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

.gallery__item {
    position: relative;
    width: 280px;
    height: 350px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    flex-shrink: 0;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-primary);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-smooth);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

/* ========== CONTACT SECTION ========== */
.contact {
    padding: var(--sp-24) 0;
    background: var(--white);
}

.contact__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-12);
}

.contact__info .section-tag,
.contact__info .section-title {
    text-align: left;
}

.contact__info .section-tag::after {
    display: none;
}

.contact__intro {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: var(--sp-10);
    line-height: 1.8;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
    margin-bottom: var(--sp-10);
}

.contact-item {
    display: flex;
    gap: var(--sp-5);
}

.contact-item__icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-soft);
    color: var(--emerald);
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.contact-item:hover .contact-item__icon {
    background: var(--emerald);
    color: var(--white);
}

.contact-item__content h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: var(--sp-1);
}

.contact-item__content p,
.contact-item__content address {
    font-size: 0.95rem;
    font-style: normal;
    color: var(--gray-600);
}

.contact-item__content a {
    color: var(--gray-600);
    transition: color var(--duration-normal) var(--ease-smooth);
}

.contact-item__content a:hover {
    color: var(--emerald);
}

.contact__socials {
    padding-top: var(--sp-8);
    border-top: 1px solid var(--gray-200);
}

.contact__socials h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: var(--sp-4);
}

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

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    background: var(--gray-100);
    border-radius: var(--radius-full);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.social-links a:hover {
    color: var(--white);
    background: var(--emerald);
    transform: translateY(-3px);
}

.contact__map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-lg);
}

.contact__map iframe {
    width: 100%;
    height: 100%;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--charcoal);
}

.footer__top {
    padding: var(--sp-16) 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-10);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    margin-bottom: var(--sp-5);
}

.footer__logo-img {
    max-height: 36px;
    width: auto;
    object-fit: contain;
}

.footer__logo-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.footer__logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--white);
    letter-spacing: 1px;
}

.footer__tagline {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: var(--sp-6);
}

.footer__socials {
    display: flex;
    gap: var(--sp-3);
}

.footer__socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.footer__socials a:hover {
    color: var(--charcoal);
    background: var(--gold);
    border-color: var(--gold);
}

.footer__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: var(--sp-5);
}

.footer__menu {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.footer__menu a {
    font-size: 0.9rem;
    color: var(--gray-400);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.footer__menu a:hover {
    color: var(--gold);
    padding-left: var(--sp-2);
}

.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    margin-bottom: var(--sp-6);
}

.footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    font-size: 0.9rem;
    color: var(--gray-400);
}

.footer__contact-list i {
    color: var(--gold);
    margin-top: 3px;
}

.footer__contact-list a {
    color: var(--gray-400);
    transition: color var(--duration-normal) var(--ease-smooth);
}

.footer__contact-list a:hover {
    color: var(--gold);
}

.footer__bottom {
    padding: var(--sp-6) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom-inner {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    align-items: center;
    text-align: center;
}

.footer__copyright {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.footer__legal {
    display: flex;
    gap: var(--sp-6);
}

.footer__legal a {
    font-size: 0.85rem;
    color: var(--gray-500);
    transition: color var(--duration-normal) var(--ease-smooth);
}

.footer__legal a:hover {
    color: var(--gold);
}

/* ========== MOBILE CTA ========== */
.mobile-cta {
    position: fixed;
    bottom: var(--sp-6);
    right: var(--sp-6);
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-4) var(--sp-6);
    background: var(--gradient-gold);
    color: var(--charcoal);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-gold);
    z-index: 900;
    transform: translateY(100px);
    opacity: 0;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.mobile-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.mobile-cta i {
    font-size: 1rem;
}

.mobile-cta__text {
    display: none;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: var(--sp-6);
    left: var(--sp-6);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald);
    color: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-emerald);
    z-index: 900;
    transform: translateY(100px);
    opacity: 0;
    transition: all var(--duration-normal) var(--ease-smooth);
}

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

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

/* ========== CURSOR FOLLOWER ========== */
.cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-full);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: 
        width 0.3s var(--ease-smooth),
        height 0.3s var(--ease-smooth),
        opacity 0.3s var(--ease-smooth);
}

.cursor-follower.is-visible {
    opacity: 0.5;
}

.cursor-follower.is-hovering {
    width: 50px;
    height: 50px;
    opacity: 0.3;
}

/* ========== SCROLL ANIMATIONS ========== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: 
        opacity var(--duration-slower) var(--ease-smooth),
        transform var(--duration-slower) var(--ease-smooth);
}

[data-animate="fade-up"].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="reveal-left"] {
    transform: translateX(-50px);
}

[data-animate="reveal-left"].is-visible {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="zoom-in"] {
    transform: scale(0.9);
}

[data-animate="zoom-in"].is-visible {
    opacity: 1;
    transform: scale(1);
}

[data-delay="100"] { transition-delay: 100ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="300"] { transition-delay: 300ms; }

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet */
@media (min-width: 640px) {
    .about__stats {
        flex-direction: row;
        bottom: -20px;
        right: 20px;
    }
    
.courses__showcase .course-card--featured {
        grid-column: span 2;
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
.testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__bottom-inner {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .mobile-cta__text {
        display: inline;
    }
    
    .gallery__item {
        width: 320px;
        height: 400px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    :root {
        --container-padding: 2rem;
    }
    
    .top-bar__phone {
        display: flex;
    }
    
    .top-bar__cta {
        display: block;
    }
    
    .about__split {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-16);
    }
    
    .about__image-wrapper img {
        height: 600px;
    }
    
    .about__content-side {
        padding: var(--sp-12) 0;
    }
    
.courses__showcase .course-card--featured {
        grid-column: auto;
    }
    
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
.testimonials__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact__wrapper {
        grid-template-columns: 1fr 1.2fr;
    }
    
    .contact__map {
        height: 100%;
        min-height: 500px;
    }
    
    .footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }
    
    .gallery__item {
        width: 350px;
        height: 450px;
    }
    
    .cursor-follower {
        display: block;
    }
}

/* Large Desktop */
@media (min-width: 1280px) {
    .hero__decor {
        display: block;
    }
    
    .about__stats {
        right: -40px;
    }
}

/* Mobile - Small */
@media (max-width: 639px) {
    .hero__sound-toggle {
        bottom: var(--sp-20);
        right: var(--sp-4);
        padding: var(--sp-2) var(--sp-4);
    }
    
    .sound-text {
        display: none;
    }
    
    .hero__scroll-hint {
        display: none;
    }
    
    .hero__decor {
        display: none;
    }
    
    .about__stats {
        position: relative;
        flex-direction: row;
        justify-content: center;
        margin-top: var(--sp-6);
        bottom: auto;
        right: auto;
    }
    
    .stat-card {
        min-width: auto;
        flex: 1;
        padding: var(--sp-4);
    }
    
    .stat-card__number {
        font-size: 1.5rem;
    }
    
    .services__tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .services__tab {
        padding: var(--sp-3) var(--sp-5);
        justify-content: center;
        font-size: 0.85rem;
    }
    
    .gallery__item {
        width: 250px;
        height: 300px;
    }
    
    .gallery__track {
        animation-duration: 30s;
    }
    
    .team-card__avatar {
        width: 150px;
        height: 150px;
    }
    
    .cta__perks {
        flex-direction: column;
        align-items: center;
    }
    
    .mobile-cta {
        right: var(--sp-4);
        bottom: var(--sp-4);
        padding: var(--sp-3) var(--sp-4);
    }
    
    .back-to-top {
        left: var(--sp-4);
        bottom: var(--sp-4);
        width: 44px;
        height: 44px;
    }
}

/* Remove cursor follower on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor-follower {
        display: none !important;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   COURSES PAGE STYLES
   ============================================ */

/* ========== PAGE HERO ========== */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--top-bar-height) + var(--sp-16)) var(--container-padding) var(--sp-16);
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.page-hero__content {
    text-align: center;
    max-width: 800px;
    color: var(--white);
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: var(--sp-4);
    line-height: 1.2;
}

.page-hero__title em {
    font-style: normal;
    color: var(--gold);
}

.page-hero__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Hero Decorations */
.page-hero__decor {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero__decor--left {
    left: -100px;
    bottom: -50px;
}

.page-hero__decor--right {
    right: -80px;
    top: 20%;
}

/* ========== BREADCRUMBS ========== */
.breadcrumbs {
    margin-bottom: var(--sp-6);
}

.breadcrumbs--hero {
    position: absolute;
    top: calc(var(--top-bar-height) + var(--sp-6));
    left: var(--container-padding);
    margin-bottom: 0;
    z-index: 10;
}

.breadcrumbs__list {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: 0.875rem;
}

.breadcrumbs__item:not(:last-child)::after {
    content: '›';
    color: var(--gold);
    margin-left: var(--sp-2);
}

.breadcrumbs__item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-smooth);
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}

.breadcrumbs__item a:hover {
    color: var(--gold);
}

.breadcrumbs__item--active span {
    color: var(--white);
}

/* ========== COURSES INTRO ========== */
.courses-intro {
    padding: var(--sp-20) 0;
    background: var(--cream);
}

.courses-intro__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.courses-intro__text {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--sp-12);
}

.courses-intro__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-8);
    padding: var(--sp-10) var(--sp-8);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

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

.courses-intro__stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--emerald);
    margin-bottom: var(--sp-2);
}

.courses-intro__stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== COURSES CATEGORY ========== */
.courses-category {
    padding: var(--sp-20) 0;
    background: var(--white);
}

.courses-category--alt {
    background: var(--cream);
}

.courses-category__header {
    text-align: center;
    margin-bottom: var(--sp-12);
}

.courses-category__header .section-desc {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== COURSES GRID ========== */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--sp-8);
}

/* ========== COURSE PAGE CARD ========== */
.course-page-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--duration-normal) var(--ease-smooth);
    display: flex;
    flex-direction: column;
}

.courses-category--alt .course-page-card {
    background: var(--white);
}

.course-page-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.course-page-card__image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.course-page-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.course-page-card:hover .course-page-card__image img {
    transform: scale(1.08);
}

.course-page-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 78, 59, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-smooth);
}

.course-page-card:hover .course-page-card__overlay {
    opacity: 1;
}

.course-page-card__body {
    padding: var(--sp-6);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.course-page-card__title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--sp-3);
}

.course-page-card__desc {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--sp-4);
    flex: 1;
}

.course-page-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-4);
    margin-bottom: var(--sp-5);
    padding-bottom: var(--sp-5);
    border-bottom: 1px solid var(--gray-200);
}

.course-page-card__meta-item {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: 0.85rem;
    color: var(--gray-600);
}

.course-page-card__meta-item i {
    color: var(--gold);
    font-size: 0.9rem;
}

.course-page-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
}

.course-page-card__price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--emerald);
}

/* ========== SECTION TAG LIGHT VARIANT ========== */
.section-tag--light {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-light);
}

/* ========== RESPONSIVE COURSES PAGE ========== */
@media (max-width: 992px) {
    .page-hero {
        min-height: 45vh;
    }
    
    .courses-intro__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .courses-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 40vh;
        padding-top: calc(var(--top-bar-height) + var(--sp-12));
    }
    
    .page-hero__decor {
        display: none;
    }
    
    .courses-intro {
        padding: var(--sp-16) 0;
    }
    
    .courses-intro__stats {
        padding: var(--sp-6);
        gap: var(--sp-6);
    }
    
    .courses-intro__stat-number {
        font-size: 2rem;
    }
    
    .courses-category {
        padding: var(--sp-16) 0;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .course-page-card__footer {
        flex-direction: column;
        align-items: stretch;
        gap: var(--sp-3);
    }
    
    .course-page-card__price {
        text-align: center;
    }
    
    .course-page-card__footer .btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .courses-intro__stats {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-4);
    }
    
    .courses-intro__stat-number {
        font-size: 1.75rem;
    }
    
    .courses-intro__stat-label {
        font-size: 0.75rem;
    }
}

/* ============================================
   SINGLE COURSE PAGE STYLES
   ============================================ */

/* Page Hero Compact */
.page-hero--compact {
    min-height: 40vh;
}

/* ========== PRODUCT SECTION ========== */
.product-section {
    padding: var(--sp-20) 0;
    background: var(--cream);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-12);
    align-items: start;
}

/* ========== PRODUCT GALLERY ========== */
.product-gallery {
    position: sticky;
    top: calc(var(--top-bar-height) + var(--sp-6));
}

.product-gallery__main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--sp-4);
}

.product-gallery__slides {
    position: relative;
    aspect-ratio: 4/3;
}

.product-gallery__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--duration-slow) var(--ease-smooth);
}

.product-gallery__slide.is-active {
    opacity: 1;
}

.product-gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery__nav {
    position: absolute;
    bottom: var(--sp-4);
    right: var(--sp-4);
    display: flex;
    gap: var(--sp-2);
}

.product-gallery__nav-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: none;
    border-radius: var(--radius-full);
    color: var(--charcoal);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-smooth);
    box-shadow: var(--shadow-md);
}

.product-gallery__nav-btn:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: scale(1.1);
}

.product-gallery__thumbs {
    display: flex;
    gap: var(--sp-3);
}

.product-gallery__thumb {
    flex: 1;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-smooth);
    padding: 0;
    background: none;
}

.product-gallery__thumb.is-active {
    border-color: var(--gold);
}

.product-gallery__thumb:hover {
    transform: translateY(-3px);
}

.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== PRODUCT INFO ========== */
.product-info {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--sp-10);
    box-shadow: var(--shadow-lg);
}

.product-info__price-box {
    display: flex;
    align-items: baseline;
    gap: var(--sp-3);
    margin-bottom: var(--sp-6);
    padding-bottom: var(--sp-6);
    border-bottom: 1px solid var(--gray-200);
}

.product-info__price-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info__price-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--emerald);
}

.product-info__desc {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--sp-6);
}

.product-info__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
    margin-bottom: var(--sp-8);
    padding-bottom: var(--sp-8);
    border-bottom: 1px solid var(--gray-200);
}

.product-info__meta-item {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
}

.product-info__meta-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-soft);
    color: var(--gold-dark);
    border-radius: var(--radius-md);
    font-size: 1rem;
    flex-shrink: 0;
}

.product-info__meta-item div {
    display: flex;
    flex-direction: column;
}

.product-info__meta-item strong {
    font-size: 0.85rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--sp-1);
}

.product-info__meta-item span {
    font-size: 1rem;
    color: var(--charcoal);
    font-weight: 600;
}

/* ========== PRODUCT DATES ========== */
.product-dates {
    margin-bottom: var(--sp-8);
}

.product-dates__title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--sp-4);
}

.product-dates__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-3);
}

.product-dates__option {
    cursor: pointer;
}

.product-dates__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.product-dates__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--sp-4);
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    transition: all var(--duration-fast) var(--ease-smooth);
    text-align: center;
    position: relative;
}

.product-dates__option input:checked + .product-dates__box {
    background: var(--emerald-soft);
    border-color: var(--emerald);
}

.product-dates__option:hover .product-dates__box {
    border-color: var(--emerald-light);
}

.product-dates__option--sold-out .product-dates__box {
    opacity: 0.5;
    cursor: not-allowed;
}

.product-dates__option--sold-out:hover .product-dates__box {
    border-color: transparent;
}

.product-dates__range {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.95rem;
}

.product-dates__year {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.product-dates__status {
    position: absolute;
    top: var(--sp-1);
    right: var(--sp-1);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    background: var(--gray-600);
    padding: var(--sp-1) var(--sp-2);
    border-radius: var(--radius-sm);
}

/* ========== PRODUCT PAYMENT ========== */
.product-payment {
    margin-bottom: var(--sp-8);
}

.product-payment__title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--sp-4);
}

.product-payment__options {
    display: flex;
    gap: var(--sp-3);
}

.product-payment__option {
    flex: 1;
    cursor: pointer;
}

.product-payment__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.product-payment__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--sp-4);
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    transition: all var(--duration-fast) var(--ease-smooth);
    text-align: center;
}

.product-payment__option input:checked + .product-payment__box {
    background: var(--gold-soft);
    border-color: var(--gold);
}

.product-payment__option:hover .product-payment__box {
    border-color: var(--gold-light);
}

.product-payment__name {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: var(--sp-1);
}

.product-payment__amount {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--charcoal);
}

/* ========== PRODUCT CTA ========== */
.product-cta {
    width: 100%;
    justify-content: center;
    padding: var(--sp-5) var(--sp-8);
    font-size: 1.1rem;
    margin-bottom: var(--sp-6);
}

.product-cta:hover i {
    transform: translateX(0) scale(1.2);
}

/* ========== PRODUCT GUARANTEE ========== */
.product-guarantee {
    display: flex;
    justify-content: center;
    gap: var(--sp-8);
    padding-top: var(--sp-6);
    border-top: 1px solid var(--gray-200);
}

.product-guarantee__item {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: 0.85rem;
    color: var(--gray-600);
}

.product-guarantee__item i {
    color: var(--emerald);
}

/* ========== COURSE DESCRIPTION ========== */
.course-description {
    padding: var(--sp-20) 0;
    background: var(--white);
}

.course-description__wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.course-description__header {
    text-align: center;
    margin-bottom: var(--sp-12);
}

.course-description__intro {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--gray-600);
    margin-bottom: var(--sp-10);
    padding-bottom: var(--sp-10);
    border-bottom: 1px solid var(--gray-200);
}

.course-description__intro strong {
    color: var(--emerald);
}

.course-description__section {
    margin-bottom: var(--sp-10);
}

.course-description__section h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: var(--sp-5);
}

.course-description__section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-600);
}

.course-description__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-3);
}

.course-description__list li {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.course-description__list i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}

/* ========== COURSE BENEFITS ========== */
.course-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-6);
}

.course-benefits__item {
    display: flex;
    gap: var(--sp-4);
    padding: var(--sp-5);
    background: var(--cream);
    border-radius: var(--radius-lg);
    transition: all var(--duration-fast) var(--ease-smooth);
}

.course-benefits__item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.course-benefits__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.course-benefits__icon i {
    font-size: 1.25rem;
    color: var(--charcoal);
}

.course-benefits__text h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--sp-2);
}

.course-benefits__text p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* ========== BTN LG ========== */
.btn--lg {
    padding: var(--sp-5) var(--sp-10);
    font-size: 1rem;
}

/* ========== RESPONSIVE COURSE PAGE ========== */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-10);
    }
    
    .product-gallery {
        position: static;
    }
    
    .product-info__meta {
        grid-template-columns: 1fr;
    }
    
    .course-description__list {
        grid-template-columns: 1fr;
    }
    
    .course-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-section {
        padding: var(--sp-16) 0;
    }
    
    .product-info {
        padding: var(--sp-6);
    }
    
    .product-info__price-value {
        font-size: 2rem;
    }
    
    .product-dates__grid {
        grid-template-columns: 1fr;
    }
    
    .product-payment__options {
        flex-direction: column;
    }
    
    .product-guarantee {
        flex-direction: column;
        align-items: center;
        gap: var(--sp-3);
    }
    
    .course-description {
        padding: var(--sp-16) 0;
    }
    
    .course-description__section h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .product-gallery__nav-btn {
        width: 36px;
        height: 36px;
    }
    
    .product-gallery__thumbs {
        gap: var(--sp-2);
    }
}

/* ============================================
   LEGAL PAGES STYLES
   ============================================ */

/* ========== LEGAL SECTION ========== */
.legal-section {
    padding: var(--sp-20) 0;
    background: var(--cream);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--sp-12);
    box-shadow: var(--shadow-lg);
}

.legal-intro {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--gray-600);
    padding-bottom: var(--sp-8);
    margin-bottom: var(--sp-8);
    border-bottom: 1px solid var(--gray-200);
}

.legal-intro strong {
    color: var(--emerald);
}

.legal-section-block {
    margin-bottom: var(--sp-10);
    padding-bottom: var(--sp-8);
    border-bottom: 1px solid var(--gray-200);
}

.legal-section-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section-block h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: var(--sp-5);
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.legal-section-block h2 i {
    color: var(--gold);
    font-size: 1.25rem;
}

.legal-section-block h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-top: var(--sp-6);
    margin-bottom: var(--sp-4);
}

.legal-section-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: var(--sp-4);
}

.legal-section-block p:last-child {
    margin-bottom: 0;
}

.legal-section-block ul {
    list-style: none;
    margin-bottom: var(--sp-4);
}

.legal-section-block ul li {
    position: relative;
    padding-left: var(--sp-6);
    margin-bottom: var(--sp-3);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-600);
}

.legal-section-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: var(--radius-full);
}

.legal-section-block ul li strong {
    color: var(--charcoal);
}

.legal-section-block a {
    color: var(--emerald);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--duration-fast) var(--ease-smooth);
}

.legal-section-block a:hover {
    color: var(--gold);
}

/* ========== LEGAL CONTACT INFO ========== */
.legal-contact-info {
    background: var(--cream);
    padding: var(--sp-6);
    border-radius: var(--radius-lg);
    margin: var(--sp-5) 0;
}

.legal-contact-info p {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    margin-bottom: var(--sp-3);
    font-size: 0.95rem;
}

.legal-contact-info p:last-child {
    margin-bottom: 0;
}

.legal-contact-info i {
    color: var(--gold);
    width: 20px;
    text-align: center;
}

.legal-authority {
    font-size: 0.9rem !important;
    color: var(--gray-600) !important;
    margin-top: var(--sp-4) !important;
}

.legal-authority a {
    color: var(--emerald);
}

/* ========== LEGAL ACCEPTANCE ========== */
.legal-acceptance {
    background: var(--emerald-soft);
    border: 1px solid var(--emerald-medium);
    padding: var(--sp-6);
    border-radius: var(--radius-lg);
    margin-top: var(--sp-8);
}

.legal-acceptance p {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    font-size: 0.95rem;
    color: var(--charcoal);
    margin: 0;
}

.legal-acceptance i {
    color: var(--emerald);
    font-size: 1.25rem;
    margin-top: 2px;
}

/* ========== ROVA PLATFORM SECTION ========== */
.rova-platform-section {
    padding: var(--sp-16) 0;
    background: var(--white);
}

.rova-platform-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: var(--sp-10);
    display: flex;
    gap: var(--sp-10);
    align-items: flex-start;
}

.rova-logo {
    flex-shrink: 0;
}

.rova-logo img {
    width: 120px;
    height: auto;
}

.rova-disclaimer h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: var(--sp-5);
}

.rova-disclaimer p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: var(--sp-4);
}

.rova-disclaimer ul {
    list-style: none;
    margin-bottom: var(--sp-5);
}

.rova-disclaimer ul li {
    position: relative;
    padding-left: var(--sp-5);
    margin-bottom: var(--sp-2);
    font-size: 0.9rem;
    color: var(--gray-600);
}

.rova-disclaimer ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.rova-disclaimer a {
    color: var(--emerald);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.rova-disclaimer a:hover {
    color: var(--gold);
}

.rova-disclaimer strong {
    color: var(--charcoal);
}

/* ========== ROVA LEGAL NOTICE ========== */
.rova-legal-notice {
    display: flex;
    gap: var(--sp-4);
    background: var(--white);
    padding: var(--sp-5);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--gold);
    margin: var(--sp-6) 0;
}

.rova-legal-notice > i {
    color: var(--gold);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.rova-legal-notice p {
    margin: 0;
    font-size: 0.9rem;
}

/* ========== ROVA LINKS ========== */
.rova-links {
    display: flex;
    gap: var(--sp-3);
    flex-wrap: wrap;
    margin-top: var(--sp-6);
}

.rova-links .btn {
    text-decoration: none;
}

/* ========== BTN OUTLINE ========== */
.btn--outline {
    background: transparent;
    border: 2px solid var(--emerald);
    color: var(--emerald);
}

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

/* ========== RESPONSIVE LEGAL PAGES ========== */
@media (max-width: 768px) {
    .legal-section {
        padding: var(--sp-12) 0;
    }
    
    .legal-content {
        padding: var(--sp-6);
        border-radius: var(--radius-lg);
    }
    
    .legal-intro {
        font-size: 1rem;
    }
    
    .legal-section-block h2 {
        font-size: 1.25rem;
    }
    
    .legal-section-block h2 i {
        font-size: 1rem;
    }
    
    .rova-platform-section {
        padding: var(--sp-12) 0;
    }
    
    .rova-platform-content {
        flex-direction: column;
        padding: var(--sp-6);
        gap: var(--sp-6);
    }
    
    .rova-logo img {
        width: 100px;
    }
    
    .rova-legal-notice {
        flex-direction: column;
        gap: var(--sp-3);
    }
    
    .rova-links {
        flex-direction: column;
    }
    
    .rova-links .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: var(--sp-5);
    }
    
    .legal-contact-info {
        padding: var(--sp-4);
    }
    
    .legal-acceptance {
        padding: var(--sp-4);
    }
}
