/* ==========================================================================
   YODDHA COMBAT CLUB - PREMIUM CSS STYLESHEET
   Author: Rohit SaaWeb (rohitsaaweb.com)
   Style: Luxury Dark, Cinematic, Sports, High-Conversion
   ========================================================================== */

/* --- Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700;800;900&family=Syncopate:wght@700&display=swap');

/* --- Design Tokens / Variables --- */
:root {
    --bg-black: #f6f6f9;
    --bg-charcoal: #ffffff;
    --bg-card: #fdfdfd;
    --primary-red: #d31b26;
    --primary-red-rgb: 211, 27, 38;
    --glow-orange: #ff5722;
    --accent-gold: #c59b27;
    --text-pure: #111115;
    --text-gray-100: #1c1c20;
    --text-gray-300: #3f3f46;
    --text-gray-400: #55555f;
    --text-gray-600: #888892;
    --font-heading: 'Syncopate', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(0, 0, 0, 0.06);
    --glass-border-glow: rgba(211, 27, 38, 0.2);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --container-max-width: 1400px;
    --header-height: 80px;
}

/* --- Base & Reset Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-black);
    color: var(--text-pure);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-black);
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}

/* --- Text Selection Color --- */
::selection {
    background-color: var(--primary-red);
    color: var(--text-pure);
}

/* --- Structural Components --- */
.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* --- Utility Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.syncopate-title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-pure) 30%, var(--text-gray-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.red-glow-text {
    text-shadow: 0 0 15px rgba(211, 27, 38, 0.6);
}

.section-tag {
    color: var(--primary-red);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
    border-left: 2px solid var(--primary-red);
    padding-left: 10px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 900;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-gray-400);
    max-width: 600px;
    margin-bottom: 60px;
}

/* --- Premium Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-body);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--text-pure);
    box-shadow: 0 4px 20px rgba(211, 27, 38, 0.4);
}

.btn-primary:hover {
    background-color: #f4212e;
    box-shadow: 0 6px 30px rgba(211, 27, 38, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-pure);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-pure);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b38f24 100%);
    color: #000;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

/* --- Glassmorphism Styles --- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 30px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--glass-border-glow);
    box-shadow: 0 10px 30px rgba(211, 27, 38, 0.1);
}

/* --- Header / Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 70px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 52px;
    width: auto;
    transition: var(--transition-smooth);
}

header.scrolled .logo-img {
    height: 42px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    color: var(--text-gray-300);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-red);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* --- Burger Menu (Mobile) --- */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1100;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-pure);
    transition: var(--transition-fast);
}

/* --- Hero Section --- */
#hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    overflow: hidden;
    background-color: #000000;
}

.hero-bg {
    position: absolute;
    top: -10% !important;
    left: 0;
    width: 100%;
    height: 120% !important;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(211, 27, 38, 0.12) 0%, rgba(10, 10, 12, 0.6) 50%, rgba(5, 5, 6, 0.95) 100%);
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    visibility: visible;
    transform: scale(1.05);
    animation: slowCinematicZoom 25s infinite alternate ease-in-out;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hero-image.fade-out {
    opacity: 0;
    visibility: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    z-index: 1.5;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    transform: scale(1.05);
    animation: slowCinematicZoom 25s infinite alternate ease-in-out;
}

.hero-video.loaded {
    opacity: 0.35;
    visibility: visible;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2.5;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    margin-top: 50px;
}

.hero-tagline {
    font-family: var(--font-heading);
    color: var(--primary-red);
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    margin-bottom: 25px;
    text-transform: uppercase;
    display: block;
    opacity: 0;
    animation: taglineFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

#hero .hero-title {
    font-size: clamp(3rem, 9vw, 6.5rem);
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    line-height: 0.95;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.01em;
    margin-bottom: 30px;
    opacity: 0;
    animation: headingSplitReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
}

#hero .hero-desc {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.5;
    opacity: 0;
    animation: descBlurReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.8s;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    animation: buttonsSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.1s;
}

#hero .btn-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

#hero .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* --- Scroll Indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 0;
    animation: scrollIndicatorFadeIn 1.5s ease forwards;
    animation-delay: 1.6s;
    transition: color var(--transition-fast);
}

.scroll-indicator:hover {
    color: #ffffff;
}

.mouse-icon {
    width: 20px;
    height: 32px;
    border: 2px solid currentColor;
    border-radius: 10px;
    position: relative;
    margin-bottom: 10px;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary-red);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.8s infinite ease-in-out;
}

/* --- Transparent Navigation Bar Overrides (Only when header is not scrolled) --- */
header:not(.scrolled) nav ul li a {
    color: rgba(255, 255, 255, 0.75);
}

header:not(.scrolled) nav ul li a:hover, 
header:not(.scrolled) nav ul li a.active {
    color: var(--primary-red);
}

header:not(.scrolled) .burger-menu span {
    background-color: #ffffff;
}

header:not(.scrolled) .nav-cta .btn-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

header:not(.scrolled) .nav-cta .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* --- Cinematic Entrance Keyframes --- */
@keyframes taglineFadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes headingSplitReveal {
    0% {
        opacity: 0;
        clip-path: inset(0 0 100% 0);
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
        transform: translateY(0);
    }
}

@keyframes descBlurReveal {
    0% {
        opacity: 0;
        filter: blur(8px);
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes buttonsSlideUp {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollIndicatorFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slowCinematicZoom {
    0% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1.12);
    }
}

#about {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

#about > * {
    position: relative;
    z-index: 1;
}

/* --- About Academy --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-media {
    display: block;
    height: auto;
}

.premium-image-container {
    background: #0b0b0b;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 
        inset 0 4px 20px rgba(0, 0, 0, 0.8),
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(211, 27, 38, 0.12);
    overflow: hidden;
}

@keyframes slow-cinematic-zoom {
    0% {
        transform: scale(1.0);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1.0);
    }
}

.about-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    z-index: 4;
    pointer-events: none;
}

.about-img-wrapper .about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    animation: slow-cinematic-zoom 22s infinite ease-in-out;
    transition: filter 0.5s ease;
}

.reflection-sweep {
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.16) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: left 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 3;
}

.about-img-wrapper:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(211, 27, 38, 0.18);
}

.about-img-wrapper:hover .about-img {
    filter: brightness(1.06);
}

.about-img-wrapper:hover .reflection-sweep {
    left: 150%;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.about-feature-card i {
    color: var(--primary-red);
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: block;
}

.about-feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-pure);
}

.about-feature-card p {
    font-size: 0.9rem;
    color: var(--text-gray-400);
}

/* --- Why Choose Us --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-card {
    position: relative;
    border-top: 2px solid transparent;
}

.why-card:hover {
    border-top-color: var(--primary-red);
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background-color: rgba(211, 27, 38, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.92rem;
    color: var(--text-gray-400);
    line-height: 1.6;
}

/* --- Programs Section --- */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    height: 480px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.program-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.95) 15%, rgba(5,5,5,0.4) 50%, transparent 100%);
    z-index: 2;
    transition: var(--transition-smooth);
}

.program-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.program-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 3;
}

.program-icon {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 20px;
    transform: translateY(15px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.program-card h3 {
    font-size: 1.75rem;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 800;
    margin-bottom: 12px;
}

.program-desc {
    font-size: 0.9rem;
    color: var(--text-gray-400);
    margin-bottom: 20px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.program-card:hover::after {
    background: linear-gradient(to top, rgba(211, 27, 38, 0.9) 0%, rgba(5,5,5,0.7) 60%, transparent 100%);
}

.program-card:hover img {
    transform: scale(1.08);
}

.program-card:hover .program-icon {
    transform: translateY(0);
    opacity: 1;
}

.program-card:hover .program-desc {
    opacity: 1;
    max-height: 100px;
    margin-bottom: 20px;
}

/* --- Founder & Coach Section --- */
.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.founder-card {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 30px;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
}

.founder-image-wrapper {
    height: 100%;
    min-height: 480px;
    position: relative;
}

.founder-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.founder-bio {
    padding: 40px 30px 40px 0;
}

.founder-role {
    font-size: 0.8rem;
    color: var(--primary-red);
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    display: block;
}

.founder-bio h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--text-pure);
}

.founder-title {
    font-size: 0.9rem;
    color: var(--text-gray-400);
    font-style: italic;
    margin-bottom: 20px;
    display: block;
}

.founder-quote {
    font-size: 0.95rem;
    color: var(--text-gray-300);
    border-left: 2px solid var(--primary-red);
    padding-left: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.founder-achievements {
    list-style: none;
}

.founder-achievements li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-gray-400);
    display: flex;
    align-items: center;
    gap: 12px;
}

.founder-achievements li i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

/* --- Stats Counter Section --- */
.stats-section {
    background-color: var(--bg-charcoal);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: var(--font-heading);
    color: var(--text-pure);
    margin-bottom: 10px;
    font-weight: 900;
}

.stat-item p {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-gray-400);
}

/* --- Membership Plans --- */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.plan-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--glass-border);
    position: relative;
}

.plan-card.popular {
    border-color: var(--primary-red);
    box-shadow: 0 10px 40px rgba(211, 27, 38, 0.15);
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-red);
    color: var(--text-pure);
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 0.72rem;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
}

.plan-header {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.plan-name {
    font-size: 1.25rem;
    text-transform: uppercase;
    color: var(--text-gray-300);
    margin-bottom: 15px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-pure);
    line-height: 1;
}

.plan-price span {
    font-size: 0.9rem;
    color: var(--text-gray-400);
    font-weight: 500;
}

.plan-bonus {
    font-size: 0.8rem;
    color: var(--glow-orange);
    font-weight: 700;
    margin-top: 5px;
    text-transform: uppercase;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 16px;
    font-size: 0.92rem;
    color: var(--text-gray-300);
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features li i {
    color: var(--primary-red);
}

.plan-features li.disabled {
    color: var(--text-gray-600);
    text-decoration: line-through;
}

.plan-features li.disabled i {
    color: var(--text-gray-600);
}

.plan-cta {
    width: 100%;
}

/* --- Plan Comparison Table --- */
.comparison-container {
    margin-top: 80px;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 600px;
}

.comparison-table th, .comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.comparison-table th {
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
}

.comparison-table th:not(:first-child) {
    text-align: center;
}

.comparison-table td:not(:first-child) {
    text-align: center;
}

.comparison-table tr:hover td {
    background-color: rgba(0, 0, 0, 0.02);
}

.comparison-table i.fa-check {
    color: #10b981;
}

.comparison-table i.fa-times {
    color: #ef4444;
}

/* --- Timetable Schedule --- */
.schedule-container {
    overflow-x: auto;
}

.timetable {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
}

.timetable th {
    background-color: var(--bg-charcoal);
    color: var(--text-pure);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    padding: 20px 15px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.timetable td {
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 15px;
    height: 110px;
    width: 14%;
    vertical-align: top;
    transition: var(--transition-fast);
}

.timetable td:first-child {
    background-color: var(--bg-charcoal);
    font-weight: 700;
    font-size: 0.85rem;
    vertical-align: middle;
    text-align: center;
    width: 100px;
    height: auto;
}

.session {
    font-size: 0.78rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border-left: 3px solid var(--primary-red);
    padding: 8px 12px;
    border-radius: 0 4px 4px 0;
    margin-bottom: 8px;
}

.session.wushu { border-left-color: var(--accent-gold); }
.session.yoga { border-left-color: #a855f7; }
.session.kids { border-left-color: #3b82f6; }
.session.boxing { border-left-color: #ef4444; }

.session-name {
    font-weight: 700;
    color: var(--text-pure);
    margin-bottom: 2px;
    display: block;
    text-transform: uppercase;
}

.session-time {
    color: var(--text-gray-400);
    font-size: 0.72rem;
    display: block;
}

/* --- Masonry Gallery --- */
.gallery-grid {
    columns: 4 250px;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(5, 5, 5, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-overlay i {
    color: var(--text-pure);
    font-size: 1.5rem;
    transform: scale(0.8);
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* --- Infinite Marquee Testimonials --- */
.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 30px;
}

.marquee-track.left {
    animation: marqueeLeft 35s linear infinite;
}

.marquee-track.right {
    animation: marqueeRight 35s linear infinite;
}

.marquee-card {
    width: 450px;
    padding: 30px;
    flex-shrink: 0;
}

.marquee-card:hover {
    animation-play-state: paused;
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-pure);
    font-size: 1.1rem;
}

.user-name h4 {
    font-size: 1rem;
    color: var(--text-pure);
}

.user-name span {
    font-size: 0.8rem;
    color: var(--text-gray-400);
}

.rating-stars {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-gray-300);
    line-height: 1.6;
}

/* --- FAQ Accordion --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 700;
    transition: var(--transition-fast);
}

.faq-question:hover h3 {
    color: var(--primary-red);
}

.faq-toggle {
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-answer p {
    padding-top: 15px;
    color: var(--text-gray-400);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--primary-red);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* arbitrary height to slide down */
}

/* --- Contact & Registration Section --- */
.split-forms-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 50px;
    align-items: start;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.method-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.2rem;
}

.method-details h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.method-details p {
    font-size: 0.9rem;
    color: var(--text-gray-400);
}

.map-embed {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- Branches Cards Redesign --- */
.our-branches-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-subheading {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-pure);
    border-left: 3px solid var(--primary-red);
    padding-left: 10px;
    margin-bottom: 5px;
}

.branches-vertical-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.branch-card {
    position: relative;
    padding: 24px !important;
    border-radius: 12px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 140px;
}

.branch-card:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border-glow);
    box-shadow: 0 10px 30px rgba(211, 27, 38, 0.12);
}

.branch-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 8px;
    border-radius: 4px;
    line-height: 1;
}

.branch-badge.main-branch {
    background-color: var(--primary-red);
    color: #ffffff;
}

.branch-badge.second-branch {
    background-color: var(--text-pure);
    color: #ffffff;
}

.branch-card-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.branch-details-text {
    flex: 1;
}

.branch-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    margin-top: 10px;
}

.branch-icon {
    color: var(--primary-red);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.branch-title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-pure);
    margin: 0;
}

.branch-address {
    font-size: 0.8rem !important;
    color: var(--text-gray-400);
    line-height: 1.4;
    margin: 0 !important;
}

.branch-action-btn {
    flex-shrink: 0;
}

.btn-open-maps {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--primary-red);
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 16px;
    border-radius: 6px;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
}

.btn-open-maps:hover {
    background-color: #b2141c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 27, 38, 0.25);
}

@media (max-width: 576px) {
    .branch-card-content-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    .btn-open-maps {
        width: 100%;
    }
}

.form-wrapper {
    position: relative;
}

.form-group {
    margin-bottom: 20px !important;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px !important;
    margin-bottom: 20px !important;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px !important;
    color: var(--text-gray-300);
}

.form-control {
    width: 100%;
    height: 50px !important;
    background-color: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 6px !important;
    padding: 0 16px !important;
    font-family: var(--font-body);
    font-size: 0.92rem !important;
    color: var(--text-pure) !important;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-red) !important;
    background-color: rgba(255, 255, 255, 0.04) !important;
    box-shadow: 0 0 10px rgba(211, 27, 38, 0.15) !important;
}

select.form-control {
    padding: 0 12px !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-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'/><path d='M0 0h24v24H0z' fill='none'/></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
}

textarea.form-control {
    height: 50px !important;
    resize: none !important;
    padding-top: 13px !important;
    line-height: 1.4 !important;
}

.form-message {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* --- Floating Actions --- */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-pure);
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.floating-btn.whatsapp {
    background-color: #25d366;
}

.floating-btn.whatsapp:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
}

.floating-btn.phone {
    background-color: var(--primary-red);
}

.floating-btn.phone:hover {
    background-color: #ea1e2a;
    transform: scale(1.1);
}

.floating-btn.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    color: #ffffff;
}

.floating-btn.instagram:hover {
    filter: brightness(1.15);
    transform: scale(1.1);
}

/* --- Lightbox Overlay --- */
.lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(5,5,5,0.95);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
    box-shadow: 0 10px 45px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--text-pure);
    font-size: 2rem;
    cursor: pointer;
}

/* --- Video Overlay / Modal --- */
.video-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(5, 5, 5, 0.95);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-content {
    width: 90%;
    max-width: 900px;
    max-height: 80vh;
    position: relative;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content video {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: contain;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1600;
    user-select: none;
    -webkit-user-select: none;
}

.video-modal-close:hover {
    background: rgba(211, 27, 38, 0.85); /* premium red matching brand */
    border-color: rgba(211, 27, 38, 0.1);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        max-height: 70vh;
    }
    .video-modal-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
    }
}

/* --- Footer --- */
footer {
    background-color: #0b0b0c;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px;
    color: #a1a1aa;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo-img {
    height: 60px;
    margin-bottom: 25px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #a1a1aa;
    margin-bottom: 25px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a1a1aa;
    transition: var(--transition-fast);
    text-decoration: none;
}

.footer-socials a:hover {
    color: var(--primary-red);
    border-color: var(--primary-red);
    background-color: rgba(211, 27, 38, 0.05);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 0.9rem;
    color: #a1a1aa;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-column p {
    font-size: 0.9rem;
    color: #a1a1aa;
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: #71717a;
}

.copyright-text {
    text-align: center;
    font-size: 0.82rem;
    color: #71717a;
}

/* Designer Card Bar Style (matches second screenshot exactly) */
.designer-card {
    background-color: #050506;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.designer-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.25);
    flex-shrink: 0;
}

.designer-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.designer-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: #c59b27;
    letter-spacing: 0.1em;
}

.designer-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-body);
    margin: 0;
}

.designer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 6px;
}

.designer-links a {
    font-size: 0.88rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.designer-links .link-email {
    color: #3b82f6;
}
.designer-links .link-email:hover {
    color: #60a5fa;
}

.designer-links .link-whatsapp {
    color: #10b981;
}
.designer-links .link-whatsapp:hover {
    color: #34d399;
}

.designer-links .link-web {
    color: #c59b27;
}
.designer-links .link-web:hover {
    color: #dcb342;
}

.designer-links .link-instagram {
    color: #ec4899;
}
.designer-links .link-instagram:hover {
    color: #f472b6;
}

.designer-cta {
    flex-shrink: 0;
}

.btn-chat-wa {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.btn-chat-wa:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #ffffff;
}

/* Responsive styles for Designer Card */
@media (max-width: 991px) {
    .designer-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
    }
    
    .designer-cta {
        width: 100%;
    }
    
    .btn-chat-wa {
        width: 100%;
        justify-content: center;
    }
}

/* --- Checkout / Payment Page Specifics --- */
.payment-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-top: 120px; /* Leave space for sticky header */
}

.payment-summary-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 40px;
    height: fit-content;
}

.summary-title {
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-gray-300);
}

.summary-row.total {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    margin-top: 20px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-pure);
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes slowZoom {
    0% { transform: scale(1.02); }
    100% { transform: scale(1.1); }
}

@keyframes scrollMouse {
    0% { transform: translate(-50%, 0); opacity: 1; }
    50% { transform: translate(-50%, 8px); opacity: 0.3; }
    100% { transform: translate(-50%, 0); opacity: 1; }
}

@keyframes fadeInUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes marqueeLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

@keyframes marqueeRight {
    0% { transform: translateX(calc(-50% - 15px)); }
    100% { transform: translateX(0); }
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .founders-grid {
        grid-template-columns: 1fr;
    }
    .founder-card {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    header .btn-secondary, header nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    /* Mobile Menu active mode */
    header.menu-open nav {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--bg-black);
        z-index: 1050;
        align-items: center;
        justify-content: center;
    }
    
    header.menu-open nav ul {
        flex-direction: column;
        gap: 40px;
    }
    
    header.menu-open nav ul li a {
        font-size: 1.5rem;
    }
    
    header.menu-open .burger-menu span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    header.menu-open .burger-menu span:nth-child(2) {
        opacity: 0;
    }
    
    header.menu-open .burger-menu span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
    
    .about-grid, .split-forms-grid, .payment-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .founder-card {
        grid-template-columns: 1fr;
    }
    
    .founder-image-wrapper {
        min-height: 350px;
    }
    
    .founder-bio {
        padding: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-ctas .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Final safeguard: cards never move or tilt on hover. */
.about-feature-card:hover,
.why-card.glass-card:hover,
.program-card:hover,
.founder-card:hover,
.plan-card:hover,
.marquee-card.glass-card:hover,
.gallery-video-card:hover {
    transform: none !important;
}

.program-card:hover .btn {
    transform: none !important;
}

/* Keep program-card content fixed on hover; no upward reveal or layout shift. */
.program-card:hover .program-icon {
    transform: translateY(15px) !important;
    opacity: 0 !important;
}

.program-card:hover .program-desc {
    max-height: 0 !important;
    margin-bottom: 0 !important;
    opacity: 0 !important;
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PREMIUM CINEMATIC UX ENHANCEMENTS (POLISHED & REFINE STABILITY)
   ========================================================================== */

/* --- CINEMATIC BACKGROUND NOISE & GRADIENTS --- */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.015;
    pointer-events: none;
    z-index: 99999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Soft background radial glows for section dividers */
section {
    position: relative;
}

section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(211, 27, 38, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* --- LUXURY PRELOADER SPLASH SCREEN --- */
#preloader {
    position: fixed;
    inset: 0;
    background-color: #050506;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 250px;
}

.preloader-logo-container {
    width: 140px;
    opacity: 0;
    transform: scale(0.85);
    filter: drop-shadow(0 0 25px rgba(211, 27, 38, 0.4));
}

.preloader-logo {
    width: 100%;
    height: auto;
}

.preloader-bar-bg {
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.preloader-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red) 0%, #ea1e2a 100%);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(211, 27, 38, 0.8);
}

/* --- PREMIUM CUSTOM CURSOR --- */
.custom-cursor {
    width: 28px;
    height: 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    mix-blend-mode: difference;
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-red);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s linear, background-color 0.3s ease;
}

/* Cursor interactive hover states */
.custom-cursor.hovering {
    width: 55px;
    height: 55px;
    border-color: rgba(211, 27, 38, 0.85);
    background-color: rgba(211, 27, 38, 0.08);
    mix-blend-mode: normal;
}

.custom-cursor-dot.hovering {
    background-color: #ffffff;
}

.custom-cursor.clicking {
    transform: translate(-50%, -50%) scale(0.75);
    background-color: rgba(211, 27, 38, 0.25);
}

/* Disable on touchscreen devices */
@media (hover: none) and (pointer: coarse) {
    .custom-cursor, .custom-cursor-dot {
        display: none !important;
    }
}

/* --- STATS CARDS: CLEAN, QUIET EMPHASIS --- */
.stat-item {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%) !important;
    border: 1px solid rgba(17, 17, 21, 0.08) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(17, 17, 21, 0.045) !important;
    top: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease !important;
    overflow: hidden;
    position: relative;
    padding: 30px 20px !important;
    will-change: transform;
}

.stat-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 44px;
    height: 3px;
    transform: translateX(-50%);
    border-radius: 0 0 4px 4px;
    background: var(--primary-red);
    pointer-events: none;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.5s ease;
}

@media (hover: hover) {
    .stat-item:hover::before {
        width: 76px;
    }
}

.stat-item h2 {
    line-height: 1;
    letter-spacing: -0.055em;
    margin-bottom: 18px;
}

/* --- ABOUT SECTION FEATURE CARDS ALIGNMENT & DESIGN --- */
@keyframes card-pulse-glow {
    0% {
        border-color: rgba(0, 0, 0, 0.045) !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.015) !important;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.38) 100%) !important;
    }
    50% {
        border-color: rgba(211, 27, 38, 0.07) !important;
        box-shadow: 0 8px 24px rgba(211, 27, 38, 0.015), 0 4px 10px rgba(0, 0, 0, 0.01) !important;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.44) 100%) !important;
    }
    100% {
        border-color: rgba(0, 0, 0, 0.045) !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.015) !important;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.38) 100%) !important;
    }
}

.about-feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.38) 100%) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.045) !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.015) !important;
    padding: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    height: 100% !important;
    box-sizing: border-box !important;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    overflow: hidden;
    animation: card-pulse-glow 5s infinite ease-in-out;
    will-change: transform;
}

.about-feature-card .card-number {
    position: absolute;
    top: 12px;
    right: 18px;
    font-family: var(--font-body);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-red);
    opacity: 0.04;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-feature-card:hover .card-number {
    opacity: 0.09;
}

.about-feature-card i {
    color: var(--primary-red) !important;
    font-size: 1.8rem !important;
    margin-bottom: 15px !important;
    display: block !important;
    position: relative;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.about-feature-card:hover i {
    transform: translateY(-2px) scale(1.08) !important;
}

.about-feature-card h3 {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
    font-size: 1.15rem !important;
    position: relative;
    z-index: 2;
}

.about-feature-card p {
    margin: 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    position: relative;
    z-index: 2;
}

/* --- WHY CHOOSE US CARDS GLASS UPGRADE --- */
.why-card.glass-card {
    background: rgba(255, 255, 255, 0.015) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    overflow: hidden;
}

.why-card.glass-card:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(211, 27, 38, 0.2) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.055) !important;
}

.why-card.glass-card .why-icon {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.why-card.glass-card:hover .why-icon {
    transform: none !important;
}

/* --- PROGRAMS SECTION CARDS CONTRAST & STABLE ANIMATION --- */
.program-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px !important;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.program-card::after {
    content: '';
    position: absolute;
    inset: 0;
    /* High contrast dark gradient to guarantee readability */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.65) 45%, rgba(0, 0, 0, 0.15) 100%) !important;
    z-index: 2;
    transition: background 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-card:hover::after {
    /* Subtle red tint overlay on hover, still maintaining maximum contrast */
    background: linear-gradient(to top, rgba(139, 12, 20, 0.98) 0%, rgba(0, 0, 0, 0.8) 55%, rgba(0, 0, 0, 0.3) 100%) !important;
}

.program-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 11px 24px rgba(0, 0, 0, 0.2), 0 0 10px rgba(211, 27, 38, 0.1) !important;
}

.program-card img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.program-card:hover img {
    transform: scale(1.02) !important;
}

.program-content {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.program-card h3 {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
}

.program-desc {
    color: #e4e4e7 !important; /* High contrast text */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9) !important;
}

.program-card .btn {
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.program-card:hover .btn {
    transform: translateY(-2px) !important;
}

/* --- MOTION-FREE CARD HOVERS --- */
.about-feature-card:hover,
.why-card.glass-card:hover,
.program-card:hover,
.founder-card:hover,
.plan-card:hover,
.marquee-card.glass-card:hover,
.gallery-video-card:hover {
    transform: none !important;
}

.program-card:hover .btn {
    transform: none !important;
}

/* --- FOUNDERS SECTION PORTRAIT & DESIGN --- */
.founder-card {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease !important;
    will-change: transform;
}

.founder-image-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.founder-image-wrapper img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.founder-image-wrapper:hover img {
    transform: scale(1.03) !important; /* Subtle scale */
}

/* --- PRICING POPULAR PLAN GLOW --- */
.pricing-card.popular {
    position: relative;
    border-color: var(--primary-red) !important;
}

@keyframes borderGlowPulse {
    0%, 100% { border-color: rgba(211, 27, 38, 0.35); box-shadow: 0 15px 35px rgba(211, 27, 38, 0.1); }
    50% { border-color: rgba(211, 27, 38, 0.8); box-shadow: 0 15px 45px rgba(211, 27, 38, 0.2); }
}

.pricing-card.popular:hover {
    animation: borderGlowPulse 3s infinite ease-in-out;
}

.plan-card {
    background: rgba(255, 255, 255, 0.015) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-radius: 16px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease !important;
    will-change: transform;
}

/* --- GALLERY IMAGES ZOOM --- */
.gallery-grid img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.gallery-grid .gallery-item:hover img {
    transform: scale(1.04) !important; /* Subtle scale */
}

/* --- TESTIMONIALS MARQUEE GLASS --- */
.marquee-card.glass-card {
    background: rgba(255, 255, 255, 0.015) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease, box-shadow 0.5s ease, filter 0.5s ease !important;
    will-change: transform;
}

.marquee-card.glass-card .rating-stars i {
    transition: transform 0.4s ease;
    display: inline-block;
}

.marquee-card.glass-card:hover .rating-stars i {
    transform: scale(1.1) rotate(5deg);
    color: #f59e0b !important;
}

/* --- FAQ ACCORDION RESET (GSAP COMPATIBLE) --- */
.faq-answer {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: none !important; /* Disable CSS height transition to prevent conflict with GSAP */
}

.faq-answer p {
    padding-top: 15px;
    margin: 0;
}

/* --- CONTACT FORM ACCESSIBILITY & CONTRAST --- */
.form-control {
    border: 1px solid rgba(255, 255, 255, 0.15) !important; /* Clear outline borders */
    background-color: #121215 !important; /* Solid dark background to prevent bleed */
    border-radius: 8px !important;
    color: #ffffff !important;
    font-size: 0.95rem !important;
    padding: 12px 16px !important;
    transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Clear readable placeholder contrast */
.form-control::placeholder {
    color: #a1a1aa !important;
    opacity: 0.85 !important;
}

.form-control:focus {
    border-color: var(--primary-red) !important;
    box-shadow: 0 0 10px rgba(211, 27, 38, 0.3) !important;
    background-color: #16161a !important;
}

/* Select element native styling override */
select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 16px !important;
    padding-right: 40px !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    cursor: pointer;
}

/* Styling dropdown options list for dark theme contrast */
select.form-control option {
    background-color: #1c1c22 !important;
    color: #ffffff !important;
    padding: 12px !important;
}

select.form-control option:disabled {
    color: #71717a !important;
}

textarea.form-control {
    min-height: 120px !important;
    resize: vertical !important;
}

/* --- GSAP PRE-REVEAL INITIAL STATES --- */
.gsap-reveal {
    opacity: 0;
    transform: translateY(30px);
}

.gsap-reveal-left {
    opacity: 0;
    transform: translateX(-30px);
}

.gsap-reveal-scale {
    opacity: 0;
    transform: scale(0.96);
}

/* --- GALLERY SECTION BLACK THEME & VIDEO --- */
#gallery {
    background-color: #0b0b0c !important; /* Premium black theme background */
    padding-bottom: 160px !important; /* Spacing padding shift for parallax */
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

#gallery .section-title {
    background: linear-gradient(135deg, #ffffff 30%, #a1a1aa 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

#gallery .section-desc {
    color: #a1a1aa !important;
}

.gallery-video-wrapper {
    margin: 40px auto 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-video-card {
    width: 100%;
    max-width: 1100px; /* Desktop max width */
    background: rgba(255, 255, 255, 0.015) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-radius: 24px !important;
    padding: 12px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease !important;
    overflow: hidden;
    will-change: transform;
}

.gallery-video-card video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px !important;
    object-fit: cover;
}

@media (hover: hover) {
    .gallery-video-card:hover {
        transform: translateY(-4px) scale(1.01) !important;
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3) !important;
        filter: brightness(1.02);
    }
}

/* Tablet responsiveness */
@media (max-width: 1024px) {
    .gallery-video-card {
        max-width: 90%;
        border-radius: 20px !important;
        padding: 10px !important;
    }
    .gallery-video-card video {
        border-radius: 12px !important;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .gallery-video-card {
        max-width: 100%;
        border-radius: 16px !important;
        padding: 6px !important;
    }
    .gallery-video-card video {
        border-radius: 10px !important;
    }
}

/* --- CONSISTENT PREMIUM HOVER: FEATURE, PROGRAM & GLOBAL CARDS --- */
@media (hover: hover) {
    .why-card.glass-card,
    .program-card {
        transition:
            transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
            box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
            border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
            filter 0.5s ease !important;
        will-change: transform;
    }

    .why-card.glass-card:hover,
    .program-card:hover {
        transform: translateY(-4px) scale(1.01) !important;
        border-color: rgba(211, 27, 38, 0.22) !important;
        box-shadow: 0 15px 32px rgba(17, 17, 21, 0.08) !important;
        filter: brightness(1.02);
    }

    .program-card:hover {
        box-shadow: 0 15px 32px rgba(0, 0, 0, 0.22), 0 0 12px rgba(211, 27, 38, 0.12) !important;
    }

    /* Premium subtle hover for About section cards */
    .about-feature-card {
        transition:
            transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
            box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
            border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
            background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
            filter 0.5s ease !important;
        will-change: transform;
    }

    .about-feature-card:hover {
        transform: translateY(-4px) scale(1.01) !important;
        border-color: rgba(211, 27, 38, 0.22) !important;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.65) 100%) !important;
        box-shadow: 0 12px 28px rgba(211, 27, 38, 0.05), 0 4px 10px rgba(0, 0, 0, 0.02) !important;
        filter: brightness(1.02);
    }

    /* Stats Cards Hover */
    .stat-item:hover {
        transform: translateY(-4px) scale(1.01) !important;
        border-color: rgba(211, 27, 38, 0.22) !important;
        box-shadow: 0 12px 28px rgba(17, 17, 21, 0.08) !important;
        filter: brightness(1.02);
    }

    /* Founder Cards Hover */
    .founder-card:hover {
        transform: translateY(-4px) scale(1.01) !important;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.22) !important;
        border-color: rgba(211, 27, 38, 0.22) !important;
        filter: brightness(1.02);
    }

    /* Pricing Cards Hover */
    .plan-card:hover {
        transform: translateY(-4px) scale(1.01) !important;
        border-color: rgba(211, 27, 38, 0.22) !important;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
        filter: brightness(1.02);
    }

    /* Gallery Video Card Hover */
    .gallery-video-card:hover {
        transform: translateY(-4px) scale(1.01) !important;
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3) !important;
        filter: brightness(1.02);
    }

    /* Testimonial Cards Hover */
    .marquee-card.glass-card:hover {
        transform: translateY(-4px) scale(1.01) !important;
        border-color: rgba(211, 27, 38, 0.22) !important;
        box-shadow: 0 12px 28px rgba(211, 27, 38, 0.05) !important;
        filter: brightness(1.02);
    }
}

/* ==========================================================================
   WHY CHOOSE US SHOWCASE LAYOUT (3-COLUMN PREMIUM EDITORIAL DESIGN)
   ========================================================================== */
.why-showcase-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.why-column {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.why-feature-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    z-index: 3;
}

.why-feature-item:last-child {
    border-bottom: none;
}

.why-feature-item:hover {
    transform: translateY(-6px);
}

.why-number {
    font-family: var(--font-body);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(211, 27, 38, 0.05);
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 0;
    pointer-events: none;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-feature-item:hover .why-number {
    color: rgba(211, 27, 38, 0.15);
    transform: scale(1.05);
}

.why-feature-content {
    position: relative;
    width: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.why-accent-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-red);
    margin-bottom: 18px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-feature-item:hover .why-accent-line {
    width: 50px;
}

.why-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 12px;
}

.why-title-row h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #111115;
    margin: 0;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-feature-item:hover .why-title-row h3 {
    color: #000000;
}

.why-mini-icon {
    font-size: 1.0rem;
    color: var(--primary-red);
    opacity: 0.8;
}

.why-feature-content p {
    font-size: 0.88rem;
    color: var(--text-gray-400);
    line-height: 1.6;
    margin: 0;
}

/* Center Image Column */
.why-center-column {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.why-center-image {
    max-width: 140%;
    height: auto;
    display: block;
    z-index: 2;
    width: clamp(450px, 45vw, 650px);
    will-change: transform;
    pointer-events: none;
    transform: scale(1.35);
}

.why-glow-bg {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(211, 27, 38, 0.08) 0%, rgba(211, 27, 38, 0) 70%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
    will-change: transform, opacity;
}

/* Responsive Showcase Layout */
@media (max-width: 1024px) {
    .why-showcase-layout {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .why-center-column {
        grid-column: 1 / span 2;
        order: 1;
        margin-bottom: 20px;
    }
    
    .why-left-column {
        grid-column: 1;
        order: 2;
    }
    
    .why-right-column {
        grid-column: 2;
        order: 3;
    }
    
    .why-center-image {
        width: clamp(440px, 60vw, 580px);
        transform: scale(1.2);
    }
}

@media (max-width: 768px) {
    .why-showcase-layout {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .why-center-column {
        order: 1;
        margin-bottom: 10px;
    }
    
    .why-left-column {
        order: 2;
        width: 100%;
    }
    
    .why-right-column {
        order: 3;
        width: 100%;
    }
    
    .why-feature-item {
        align-items: center;
        text-align: center;
    }
    
    .why-feature-content {
        align-items: center;
    }
    
    .why-title-row {
        justify-content: center;
        gap: 12px;
    }
    
    .why-accent-line {
        margin-left: auto;
        margin-right: auto;
    }
    
    .why-number {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .why-feature-item:hover .why-number {
        transform: translateX(-50%) scale(1.05);
    }
}

/* ==========================================================================
   MOBILE LAYOUT IMPROVEMENTS (MOBILE-ONLY RESPONSE FOR VIEWPORT & ORDERING)
   ========================================================================== */
@media (max-width: 768px) {
    /* 1. Mobile Initial Scale & Viewport Containment */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        background-color: #ffffff !important;
    }
    
    .hero-bg {
        overflow: hidden !important;
    }

    /* 2. About Section Mobile Ordering */
    .about-grid {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .about-content {
        display: contents !important;
    }
    
    .about-content .section-tag {
        order: 1 !important;
    }
    
    .about-content .section-title {
        order: 2 !important;
    }
    
    .about-content .section-desc {
        order: 3 !important;
        margin-bottom: 30px !important;
    }
    
    .about-media {
        order: 4 !important;
        margin-bottom: 30px !important;
    }
    
    .about-features {
        order: 5 !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
        margin-top: 25px !important;
    }

    /* 3. About Section Academy Images - Square Fading Slideshow */
    .premium-image-container {
        display: block !important;
        position: relative !important;
        width: 100% !important;
        max-width: 340px !important;
        aspect-ratio: 1 / 1 !important;
        margin: 0 auto !important;
        padding: 0 !important;
        border-radius: 22px !important;
        overflow: hidden !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    }
    
    .about-media .about-img-wrapper {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        border-radius: 22px !important;
        aspect-ratio: auto !important;
        box-shadow: none !important;
    }
    
    .about-media .about-img-wrapper:first-child {
        z-index: 1 !important;
        opacity: 1 !important;
    }
    
    .about-media .about-img-wrapper:last-child {
        z-index: 2 !important;
        animation: mobileImageFade 8s infinite ease-in-out !important;
    }
    
    .about-media .about-img-wrapper .about-img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 22px !important;
        opacity: 1 !important;
    }

    @keyframes mobileImageFade {
        0%, 40%, 100% {
            opacity: 0;
        }
        50%, 90% {
            opacity: 1;
        }
    }

    /* 4. About Section Feature Cards */
    .about-feature-card {
        background: var(--bg-card) !important;
        border: 1px solid var(--glass-border) !important;
        border-radius: 12px !important;
        padding: 20px 15px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
        position: relative !important;
    }
    
    .about-feature-card:active,
    .about-feature-card:hover {
        transform: translateY(-2px) !important;
        border-color: rgba(211, 27, 38, 0.2) !important;
        box-shadow: 0 6px 15px rgba(211, 27, 38, 0.05) !important;
    }

    /* 6. Training Programs Section - Horizontal Scroll & Sizing */
    .programs-grid {
        display: flex !important;
        flex-flow: row nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 16px !important;
        padding: 10px 4px !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .programs-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    .program-card {
        flex: 0 0 30% !important;
        min-width: 220px !important;
        scroll-snap-align: start !important;
        height: 390px !important;
    }
    
    .program-content {
        padding: 20px !important;
    }
    
    .program-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 1rem !important;
        margin-bottom: 12px !important;
    }
    
    .program-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
    }
    
    .program-desc {
        font-size: 0.8rem !important;
        margin-bottom: 16px !important;
        line-height: 1.4 !important;
    }
    
    .program-card .btn {
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
    }

    /* 7. Founders & Coaches Section - Stack & Spacing */
    .founders-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .founder-card {
        grid-template-columns: 1fr !important;
        border-radius: 16px !important;
    }
    
    .founder-image-wrapper {
        height: 380px !important;
        min-height: 380px !important;
    }
    
    .founder-image-wrapper img {
        object-position: top center !important;
    }
    
    .founder-bio {
        padding: 24px !important;
    }

    /* 8. General Mobile Spacing & Padding */
    section {
        padding: 60px 0 !important;
    }

    /* 9. Testimonial Section Card Sizing & Marquee Speed */
    .marquee-card {
        width: 310px !important;
        padding: 18px 20px !important;
    }
    
    .user-avatar {
        width: 40px !important;
        height: 40px !important;
        font-size: 0.95rem !important;
    }
    
    .user-name h4 {
        font-size: 0.88rem !important;
    }
    
    .user-name span {
        font-size: 0.72rem !important;
    }
    
    .rating-stars {
        font-size: 0.72rem !important;
    }
    
    .testimonial-text {
        font-size: 0.82rem !important;
        line-height: 1.5 !important;
    }
    
    .testimonial-header {
        margin-bottom: 12px !important;
    }
    
    .marquee-track.left {
        animation: marqueeLeft 55s linear infinite !important;
    }
    
    .marquee-track.right {
        animation: marqueeRight 55s linear infinite !important;
    }
}

/* --- Integrated Contact Payment Responsiveness --- */
@media (max-width: 991px) and (min-width: 768px) {
    .split-forms-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
    }
}

@media (max-width: 767px) {
    .split-forms-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* --- Full Width Google Map Styling --- */
.full-width-map-embed {
    width: 100%;
    margin-top: 50px;
}

.full-width-map-embed .map-embed {
    width: 100%;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

