@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Syne:wght@700;800&display=swap');

/* --- DESIGN SYSTEM & CSS TOKENS --- */
:root {
    --bg-dark: #0a0b0d;
    --bg-card: #12141c;
    --bg-card-hover: #191c26;
    --accent: #d4ff00; /* Neon Lime */
    --accent-rgb: 212, 255, 0;
    --text-white: #ffffff;
    --text-muted: #8e95a5;
    --text-dark: #12141c;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(212, 255, 0, 0.4);
    
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --glow-shadow: 0 0 20px rgba(212, 255, 0, 0.35);
}

/* --- RESET & BASICS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default cursor to use custom cursor on desktop */
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #252833;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1.1;
}

p {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 400;
}

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

.custom-cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 255, 0, 0.4);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.08s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s, background-color 0.3s, width 0.3s, height 0.3s;
}

/* Cursor states on hover */
.custom-cursor.hovered {
    width: 12px;
    height: 12px;
    background: var(--text-white);
}

.custom-cursor-follower.hovered {
    width: 60px;
    height: 60px;
    background: rgba(212, 255, 0, 0.1);
    border-color: var(--accent);
}

.custom-cursor.clicking {
    transform: translate(-50%, -50%) scale(0.6);
}

.custom-cursor-follower.clicking {
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(212, 255, 0, 0.2);
}

/* --- LAYOUT UTILITIES --- */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-tag {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    max-width: 700px;
}

.section-title span {
    color: transparent;
    -webkit-text-stroke: 1px var(--text-white);
}

.accent-text {
    color: var(--accent);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--text-dark);
    border: 1px solid var(--accent);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--text-white);
    box-shadow: var(--glow-shadow);
}

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

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* --- HEADER / NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    padding: 16px 0;
    background: rgba(10, 11, 13, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-white);
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent);
}

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

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

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

.nav-link.active::after {
    content: '';
    display: block;
    width: 12px;
    height: 2px;
    background: var(--accent);
    margin-top: 4px;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mobile Menu Button */
.burger-menu {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-smooth);
}

/* Mobile Open State */
.burger-menu.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.burger-menu.open span:nth-child(2) {
    opacity: 0;
}
.burger-menu.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 70% 30%, rgba(212, 255, 0, 0.08) 0%, transparent 60%);
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    height: 100%;
}

.hero-content {
    z-index: 3;
}

.hero-title {
    font-size: clamp(2.8rem, 6.2vw, 4.8rem);
    line-height: 0.95;
    margin-bottom: 24px;
}

.hero-title span {
    color: transparent;
    -webkit-text-stroke: 1px var(--text-white);
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 550px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image-wrapper {
    position: relative;
    height: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-bg {
    position: absolute;
    width: 105%;
    height: 105%;
    border: 1px solid rgba(212, 255, 0, 0.2);
    border-radius: 20px;
    transform: rotate(3deg);
    z-index: 1;
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 630px;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
    text-decoration: none;
}

.scroll-indicator span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.mouse-icon {
    width: 22px;
    height: 36px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

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

@keyframes scroll-wheel {
    0% { transform: translate(-50%, 0); opacity: 0; }
    30% { opacity: 1; }
    80% { transform: translate(-50%, 12px); opacity: 0; }
    100% { opacity: 0; }
}

/* --- STATS SECTION --- */
.stats {
    background-color: var(--bg-card);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    z-index: 3;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

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

/* --- ABOUT SECTION --- */
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-image-side {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
    border: 1px solid var(--border-color);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: var(--transition-smooth);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: var(--text-dark);
    padding: 24px;
    border-radius: 8px;
    box-shadow: var(--glow-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}

.about-badge .years {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.about-content-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 20px 0 40px 0;
}

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

.about-feature-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.about-feature-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.about-feature-desc {
    font-size: 0.9rem;
}

/* --- TRANSFORMATIONS SECTION --- */
.transformations {
    background: radial-gradient(circle at 90% 50%, rgba(212, 255, 0, 0.04) 0%, transparent 60%);
    border-bottom: 1px solid var(--border-color);
}

.transformations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.transformation-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    /* Limit transition to prevent conflicts with initial GSAP animations */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Enable smooth transform transitions only after body is fully loaded and animated */
.js-transitions-enabled .transformation-card {
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.transformation-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transform: translateY(-5px);
}

.transformation-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 30px;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(212,255,0,0.2);
}

.transformation-image-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 24px;
}

.transformation-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.transformation-card:hover .transformation-image-box img {
    transform: scale(1.03);
}

.before-label, .after-label {
    position: absolute;
    bottom: 12px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(255,255,255,0.1);
}

.before-label {
    left: 12px;
}

.after-label {
    right: 12px;
    border-color: rgba(212,255,0,0.3);
    color: var(--accent);
}

.transformation-details h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.transformation-goal {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.transformation-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.trans-stat {
    display: flex;
    flex-direction: column;
}

.trans-stat .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.trans-stat .value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-white);
}

/* --- VIDEO SECTION --- */
.video-section {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

.video-player-centered {
    max-width: 1050px;
    margin: 0 auto 50px auto;
    position: relative;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    border: 1px solid var(--border-color);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(212, 255, 0, 0.05);
    transition: var(--transition-smooth);
}

.video-wrapper:hover {
    border-color: var(--border-hover);
    box-shadow: 0 35px 70px rgba(0,0,0,0.7), 0 0 50px rgba(212, 255, 0, 0.1);
}

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.video-wrapper:hover .video-overlay {
    background: rgba(0,0,0,0.15);
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--text-dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--glow-shadow);
    transition: var(--transition-smooth);
    opacity: 0.9;
}

.video-play-btn:hover {
    transform: scale(1.1);
    opacity: 1;
    background-color: var(--text-white);
    color: var(--bg-dark);
}

.video-play-btn svg {
    margin-left: 2px;
    transition: var(--transition-fast);
}

/* Playing state overrides */
.video-wrapper.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-features-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 950px;
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.video-feat-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.video-feat-item .feat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.video-feat-item h4 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: var(--text-white);
}

.video-feat-item p {
    font-size: 1rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .video-features-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* --- PROGRAMS SECTION --- */
.programs {
    background: radial-gradient(circle at 10% 80%, rgba(212, 255, 0, 0.05) 0%, transparent 50%);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.program-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
    /* Limit transition to prevent conflicts with initial GSAP animations */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Enable smooth transform transitions only after body is fully loaded and animated */
.js-transitions-enabled .program-card {
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(212, 255, 0, 0.06), transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.program-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: rgba(212, 255, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border: 1px solid rgba(212, 255, 0, 0.2);
    color: var(--accent);
}

.program-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    z-index: 2;
}

.program-card p {
    margin-bottom: 30px;
    z-index: 2;
}

.program-features {
    list-style: none;
    margin-bottom: auto;
    z-index: 2;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.program-features li svg {
    color: var(--accent);
    flex-shrink: 0;
}

.program-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    z-index: 2;
}

.program-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
}

.program-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition-fast);
}

.program-card:hover .program-link {
    background-color: var(--accent);
    color: var(--text-dark);
    border-color: var(--accent);
}

/* --- BMI CALCULATOR --- */
.calculator-section {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.calc-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.calc-info p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.bmi-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bmi-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.bmi-row.active {
    background: rgba(212, 255, 0, 0.1);
    border-color: var(--accent);
    color: var(--accent);
    font-weight: 600;
}

/* Glassmorphism Calculator Card */
.calc-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
}

.calc-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.calc-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
}

.input-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 16px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.input-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(212, 255, 0, 0.15);
}

/* Custom BMI Slider Visual representation */
.bmi-result-wrapper {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: none; /* Shown dynamically via JS */
}

.bmi-result-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bmi-category {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.bmi-advice {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- TESTIMONIALS --- */
.testimonials {
    background: radial-gradient(circle at 80% 20%, rgba(212, 255, 0, 0.05) 0%, transparent 50%);
}

.testimonial-container {
    max-width: 800px;
    margin: 60px auto 0 auto;
    position: relative;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.quote-icon {
    font-size: 4rem;
    color: rgba(212, 255, 0, 0.15);
    line-height: 1;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-white);
    line-height: 1.5;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.author-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.author-program {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Testimonial Navs */
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    transition: var(--transition-fast);
}

.nav-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

/* --- CONTACT & BOOKING --- */
.contact {
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 255, 0, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-method-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-method-details h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-method-details p {
    font-size: 1.1rem;
    color: var(--text-white);
    font-weight: 500;
}

.booking-form-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border-color);
    padding: 12px 0;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 4px center;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group label {
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition-fast);
}

/* Floating Label Animation */
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -12px;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
}

.form-group textarea {
    resize: none;
    height: 100px;
}

/* Success notification inside form */
.form-message {
    padding: 16px;
    background: rgba(212, 255, 0, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    display: none;
}

/* --- FOOTER --- */
footer {
    background-color: #050608;
    border-top: 1px solid var(--border-color);
    padding: 60px 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-socials {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.social-link:hover {
    color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(212, 255, 0, 0.2);
}

/* --- MOBILE RESPONSIVE OVERRIDES --- */
@media (max-width: 1024px) {
    section {
        padding: 90px 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
        align-content: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image-wrapper {
        height: auto;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-image {
        height: 450px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-image-side {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    /* Hide custom cursor on mobile for standard touch experience */
    .custom-cursor, .custom-cursor-follower {
        display: none !important;
    }
    * {
        cursor: auto !important;
    }

    .container {
        padding: 0 24px;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        z-index: 999;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.5rem;
    }
    
    .nav-cta {
        display: none; /* Hide top right buttons, can put in burger menu if needed */
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .calc-card {
        padding: 30px 20px;
    }
    
    .calc-inputs {
        grid-template-columns: 1fr;
    }
    
    .booking-form-card {
        padding: 30px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .footer-grid {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}
