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

:root {
    --bg-primary: #060709;
    --bg-secondary: #0d0f13;
    --bg-card: #13171e;
    --bg-card-hover: #191e27;
    --accent-gold: #c5a880;
    --accent-gold-bright: #e5c596;
    --accent-gold-dark: #8c714d;
    --text-primary: #f5f6f8;
    --text-secondary: #a0a6b2;
    --text-muted: #626875;
    --border-color: rgba(197, 168, 128, 0.15);
    --border-color-hover: rgba(197, 168, 128, 0.4);
    --gold-gradient: linear-gradient(135deg, #c5a880 0%, #e5c596 50%, #8c714d 100%);
    --gold-glow: 0 0 20px rgba(197, 168, 128, 0.35);
    --gold-glow-large: 0 0 40px rgba(197, 168, 128, 0.5);
    --shadow-dark: 0 15px 35px rgba(0, 0, 0, 0.6);
    --font-heading: 'Cinzel', serif;
    --font-sans: 'Inter', sans-serif;
    --font-alt: 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
}

p {
    font-size: 1rem;
    color: var(--text-secondary);
}

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

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    width: 100%;
}

.section-padding {
    padding: 100px 0;
}

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

/* Gold Gradient Text */
.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .sub-title {
    font-family: var(--font-alt);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
}

.section-header p {
    max-width: 600px;
    margin: 15px auto 0 auto;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-alt);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    text-align: center;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--gold-glow);
    background: linear-gradient(135deg, #e5c596 0%, #f5f6f8 100%);
}

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

.btn-secondary:hover {
    background: rgba(197, 168, 128, 0.08);
    transform: translateY(-3px);
    border-color: var(--accent-gold-bright);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.1);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 15px rgba(197, 168, 128, 0.2); }
    50% { box-shadow: 0 0 30px rgba(197, 168, 128, 0.5); }
    100% { box-shadow: 0 0 15px rgba(197, 168, 128, 0.2); }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes board-solved {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 7, 9, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(197, 168, 128, 0.08);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(6, 7, 9, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    border: 1px solid var(--accent-gold);
    object-fit: cover;
}

.nav-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 4px;
    text-transform: uppercase;
}

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

.nav-links a {
    font-family: var(--font-alt);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-gold-bright);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

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

/* Force black text color for CTA header button and disable general link underlines */
.nav-links a.btn {
    color: #000;
}

.nav-links a.btn:hover {
    color: #000;
}

.nav-links a.btn::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(197, 168, 128, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(13, 15, 19, 0.9) 0%, #060709 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(6, 7, 9, 0.95) 40%, rgba(6, 7, 9, 0.4) 100%),
                      url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.85;
    z-index: 1;
}

.hero .container {
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.hero-content {
    max-width: 850px;
}

.hero-subtitle {
    font-family: var(--font-alt);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: 0;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-glow-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.12) 0%, transparent 70%);
    z-index: 1;
}

.hero-badge-container {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    display: flex;
    justify-content: center;
}

.hero-badge {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px solid rgba(197, 168, 128, 0.25);
    background: rgba(13, 15, 19, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-dark), 0 0 30px rgba(197, 168, 128, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    overflow: hidden;
}

.hero-logo-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(197, 168, 128, 0.3);
}

/* Stats Section */
.stats {
    background-color: var(--bg-secondary);
    border-y: 1px solid var(--border-color);
    padding: 60px 0;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(197, 168, 128, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-alt);
    margin-bottom: 5px;
    line-height: 1;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Programs Section */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.program-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-dark), 0 10px 30px rgba(197, 168, 128, 0.05);
    background-color: var(--bg-card-hover);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-icon {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--accent-gold);
    display: inline-block;
}

.program-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.program-desc {
    margin-bottom: 30px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.program-details {
    list-style: none;
    border-top: 1px solid rgba(197, 168, 128, 0.1);
    padding-top: 20px;
    margin-bottom: 30px;
}

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

.program-details li::before {
    content: '✦';
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.program-level {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-alt);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    background: rgba(197, 168, 128, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
}

/* Chess Arena (Puzzle Widget) */
.arena {
    background: radial-gradient(circle at 50% 50%, rgba(197, 168, 128, 0.05) 0%, transparent 80%), var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.arena-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.board-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Interactive Chessboard */
.chessboard {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 1fr);
    width: 480px;
    height: 480px;
    border: 8px solid #1e1b18;
    border-radius: 6px;
    box-shadow: var(--shadow-dark), 0 0 30px rgba(0, 0, 0, 0.8);
    position: relative;
    user-select: none;
}

.chess-square {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: var(--transition-fast);
}

/* Cream squares */
.chess-square.light {
    background-color: #dfd3c3;
}

/* Golden-Bronze squares */
.chess-square.dark {
    background-color: #8c714d;
}

.chess-square.selected {
    box-shadow: inset 0 0 0 4px #e5c596;
    background-color: rgba(229, 197, 150, 0.6) !important;
}

.chess-square.valid-dest {
    position: relative;
}

.chess-square.valid-dest::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(6, 7, 9, 0.3);
}

.chess-square.valid-dest.has-piece::after {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 4px solid rgba(6, 7, 9, 0.3);
    background-color: transparent;
}

.chess-square.last-move {
    background-color: rgba(197, 168, 128, 0.45) !important;
}

.chess-piece {
    width: 85%;
    height: 85%;
    object-fit: contain;
    z-index: 5;
    transition: transform 0.2s ease;
    filter: drop-shadow(0px 3px 4px rgba(0, 0, 0, 0.4));
}

.chess-piece:active {
    cursor: grabbing;
}

.board-label-row, .board-label-col {
    font-family: var(--font-alt);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.board-labels-x {
    display: flex;
    justify-content: space-around;
    width: 480px;
    padding: 8px 16px;
}

/* Puzzle Info Control Panel */
.arena-controls {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 35px;
    box-shadow: var(--shadow-dark);
}

.puzzle-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
    padding-bottom: 15px;
}

.tab-btn {
    background: none;
    border: 1px solid rgba(197, 168, 128, 0.2);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-alt);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.tab-btn.active, .tab-btn:hover {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
}

.puzzle-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.puzzle-difficulty {
    font-family: var(--font-alt);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: 4px;
}

.puzzle-instruction {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.puzzle-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.puzzle-feedback {
    min-height: 50px;
    margin-bottom: 25px;
    padding: 12px 18px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-fast);
    opacity: 0;
    transform: translateY(10px);
}

.puzzle-feedback.show {
    opacity: 1;
    transform: translateY(0);
}

.puzzle-feedback.success {
    background-color: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.puzzle-feedback.error {
    background-color: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

.puzzle-feedback.info {
    background-color: rgba(197, 168, 128, 0.08);
    border: 1px solid rgba(197, 168, 128, 0.2);
    color: var(--accent-gold);
}

.puzzle-actions {
    display: flex;
    gap: 15px;
}

.puzzle-actions .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
    flex: 1;
}

/* Coaches Section */
.coaches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.coach-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    transition: var(--transition-smooth);
    height: 320px;
}

.coach-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-dark), 0 10px 30px rgba(197, 168, 128, 0.05);
}

.coach-img-wrapper {
    flex: 0 0 240px;
    overflow: hidden;
    position: relative;
}

.coach-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.coach-card:hover .coach-img {
    transform: scale(1.05);
}

.coach-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coach-title {
    font-family: var(--font-alt);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.coach-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.coach-rating {
    font-family: var(--font-alt);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(197, 168, 128, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
    width: fit-content;
    border: 1px solid rgba(197, 168, 128, 0.2);
}

.coach-bio {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Testimonials Carousel */
.testimonials {
    position: relative;
    overflow: hidden;
}

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

.testimonial-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    padding: 20px;
    display: none;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-dark);
}

.testimonial-quote {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    font-family: var(--font-alt);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    outline: none;
}

.indicator-dot.active {
    background-color: var(--accent-gold);
    transform: scale(1.25);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.5);
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-header {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-family: var(--font-alt);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: rgba(6, 7, 9, 0.2);
}

.faq-content {
    padding: 0 30px 24px 30px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-top: 1px solid rgba(197, 168, 128, 0.05);
    padding-top: 20px;
}

.faq-item.active {
    border-color: var(--border-color-hover);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

/* Contact / Enrollment Form */
.enrollment-form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 50px;
    box-shadow: var(--shadow-dark);
    position: relative;
}

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

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-label {
    display: block;
    font-family: var(--font-alt);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 14px 16px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.15);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

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

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c5a880' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 16px) center;
    padding-right: 40px;
}

/* Custom Checkbox */
.form-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    background-color: var(--bg-primary);
    cursor: pointer;
    appearance: none;
    display: grid;
    place-content: center;
    transition: var(--transition-fast);
}

.form-checkbox:checked {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.form-checkbox:checked::before {
    content: "✓";
    font-size: 11px;
    font-weight: 900;
    color: #000;
}

.form-checkbox-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.form-checkbox-label a {
    color: var(--accent-gold);
}

.form-checkbox-label a:hover {
    color: var(--accent-gold-bright);
}

/* Integrated Phone Input with Country Code Dropdown */
.form-phone-group {
    display: flex;
    align-items: center;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: var(--transition-smooth);
    overflow: hidden;
    width: 100%;
}

.form-phone-group:focus-within {
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.15);
}

.phone-code-select {
    background: none;
    border: none;
    border-right: 1px solid var(--border-color);
    border-radius: 0;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    padding: 14px 28px 14px 16px;
    cursor: pointer;
    appearance: none;
    outline: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%23c5a880' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 12px) center;
}

.phone-number-input {
    flex: 1;
    background: none;
    border: none !important;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    padding: 14px 16px;
    outline: none;
    width: 100%;
    box-shadow: none !important;
}

/* Form Success Modal */
.form-success-modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-card);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 10;
}

.form-success-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.success-icon {
    font-size: 4rem;
    color: #2ecc71;
    margin-bottom: 25px;
    animation: scale-up 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.success-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.success-message {
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 450px;
}

@keyframes scale-up {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Footer */
.footer {
    background-color: #030405;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px 0;
}

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

.footer-col-about {
    max-width: 320px;
}

.footer-col-about .logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid var(--accent-gold);
    object-fit: cover;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.footer-about-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(197, 168, 128, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    color: #000;
    background: var(--gold-gradient);
    border-color: transparent;
    box-shadow: var(--gold-glow);
    transform: translateY(-3px);
}

.footer-col-title {
    font-family: var(--font-alt);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.footer-col-contact {
    max-width: 320px;
}

.footer-col-contact ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0 !important;
}

.footer-col-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-left: 0 !important;
}

.footer-col-contact li:last-child {
    margin-bottom: 0;
}

.footer-col-contact i {
    color: var(--accent-gold);
    font-size: 1.05rem;
    width: 20px;
    display: flex;
    justify-content: center;
}

.footer-col-contact a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-left: 0 !important;
    transition: var(--transition-fast);
}

.footer-col-contact a:hover {
    color: var(--accent-gold-bright) !important;
    padding-left: 0 !important;
}

.footer-bottom {
    border-top: 1px solid rgba(197, 168, 128, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.footer-bottom-links a:hover {
    color: var(--accent-gold);
}

/* Responsiveness Queries */

@media (max-width: 1100px) {
    .hero-title {
        font-size: 3rem;
    }
    .coaches-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    .coach-card {
        height: auto;
        flex-direction: column;
    }
    .coach-img-wrapper {
        flex: 0 0 280px;
        height: 280px;
    }
    .arena-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .board-container {
        order: 1;
    }
    .arena-controls {
        order: 2;
    }
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stat-item {
        border-right: none;
    }
    .stat-item:nth-child(2n) {
        border-right: none;
    }
    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(197, 168, 128, 0.1);
    }
    .programs-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .hero .container {
        grid-template-columns: 1fr;
        text-align: left;
        align-items: flex-start;
        gap: 50px;
    }
    .hero-content {
        margin: 0;
    }
    .hero-desc {
        margin-left: 0;
        margin-right: auto;
    }
    .hero-btns {
        justify-content: flex-start;
    }
    .hero-visual {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(6, 7, 9, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-smooth);
        border-top: 1px solid rgba(197, 168, 128, 0.08);
    }
    .nav-links.active {
        left: 0;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .chessboard {
        width: 100%;
        max-width: 380px;
        height: calc(100vw - 64px);
        max-height: 380px;
    }
    .board-labels-x {
        width: 100%;
        max-width: 380px;
    }
    .enrollment-form-container {
        padding: 30px 20px;
    }
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(197, 168, 128, 0.1);
        padding-bottom: 20px;
    }
    .stat-item:last-child {
        border-bottom: none;
    }
    .tab-btn {
        padding: 6px 10px;
        font-size: 0.65rem;
    }
}

/* Kids Showcase Section */
.kids-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.kids-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-dark);
}

.kids-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.kids-image-wrapper:hover img {
    transform: scale(1.03);
}

.kids-age-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(6, 7, 9, 0.85);
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    color: var(--accent-gold);
    font-family: var(--font-alt);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.kids-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 35px;
}

.kid-feature-item {
    display: flex;
    gap: 12px;
}

.kid-feature-icon {
    color: var(--accent-gold);
    font-size: 1.25rem;
    padding-top: 2px;
}

.kid-feature-title {
    font-family: var(--font-alt);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.kid-feature-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

@media (max-width: 992px) {
    .kids-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

