* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    font-size: 16px;
    transition: background 0.4s, color 0.4s;
}

/* Dark Mode Default */
body.dark {
    background: #0a0a0a;
    color: #e0e0e0;
}

body.light {
    background: #f8f9fa;
    color: #1a1a1a;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 1.3rem 8%;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

body.light .navbar {
    background: rgba(248,249,250,0.98);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-logo {
    height: 54px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #00bfff;
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
}

.nav-links a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    color: #00bfff;
}

/* Hero - Text Always Dark */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82); /* Strong dark overlay */
    z-index: -1;
}

.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    max-width: 820px;
    padding: 0 24px;
    z-index: 2;
    color: #ffffff; /* Force dark mode text in hero */
}

.hero-center-logo {
    height: 98px;
    margin-bottom: 1.8rem;
    filter: drop-shadow(0 0 30px #00bfff);
}

h1 {
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.tagline {
    font-size: clamp(1.65rem, 4.5vw, 2.6rem);
    color: #00bfff;
    font-weight: 600;
    margin-bottom: 1.6rem;
}

.subtitle {
    font-size: 1.16rem;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

/* Buttons in Hero - Always visible */
.cta-buttons {
    display: flex;
    gap: 1.4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn.primary {
    background: #00bfff;
    color: #0a0a0a;
}

.btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid #00bfff;
}

/* Sections (Normal Theme Switching) */
.section {
    padding: 120px 8% 100px;
    max-width: 1240px;
    margin: 0 auto;
}

.section h2 {
    text-align: center;
    font-size: clamp(2.2rem, 5.5vw, 3rem);
    margin-bottom: 4rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.6rem;
}

.card {
    background: rgba(255,255,255,0.07);
    padding: 2.5rem 2rem;
    border-radius: 16px;
}

body.light .card {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card h3 {
    color: #00bfff;
    margin-bottom: 1.2rem;
}

body.light .card h3 {
    color: #0077cc;
}

/* Footer */
footer {
    background: #050505;
    padding: 60px 8% 40px;
    text-align: center;
}

body.light footer {
    background: #e5e5e5;
}

.footer-links a {
    color: #00bfff;
    margin: 0 12px;
}

body.light .footer-links a {
    color: #0077cc;
}

/* Theme Toggle */
.theme-switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 30px;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #333;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background: #00bfff;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10,10,10,0.98);
        padding: 2.5rem 8%;
        flex-direction: column;
        gap: 2rem;
        display: none;
    }
    .nav-links.active {
        display: flex;
    }
    body.light .nav-links {
        background: rgba(248,249,250,0.98);
    }
}

/* Shop Teaser - Centered and Aligned */
.shop-section {
    text-align: center;
}

.shop-section h2 {
    margin-bottom: 1.2rem;
}

.shop-description {
    max-width: 620px;
    margin: 0 auto 2.8rem;
    font-size: 1.12rem;
    line-height: 1.7;
    opacity: 0.92;
}

.shop-section .btn {
    display: inline-block;
}


/* Logo Intro - Full Screen */
.logo-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1.2s ease;
}

.intro-content {
    text-align: center;
}

.intro-symbol {
    height: 120px;
    margin-bottom: 20px;
}

.intro-name {
    height: 65px;
    display: block;
    margin: 0 auto 25px;
}

.intro-tagline {
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #111;
    opacity: 0.85;
}

/* Light mode adjustment for intro */
body.light .logo-intro {
    background: #f8f9fa;
}

/* Services Page Specific */
.page-hero {
    padding: 180px 8% 100px;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)), url('assets/services-hero.jpg') center/cover no-repeat;
    color: white;
}

.page-hero h1 {
    font-size: clamp(2.8rem, 7vw, 4.2rem);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    max-width: 680px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Enhanced Cards for Services */
.services-detail .card {
    padding: 2.8rem 2.2rem;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.services-detail .card h3 {
    font-size: 1.55rem;
    margin-bottom: 1.4rem;
}

.services-detail .card p {
    flex-grow: 1;
    margin-bottom: 1.8rem;
}

/* Make sure link-arrow is visible */
.link-arrow {
    color: #00bfff;
    font-weight: 500;
}

body.light .link-arrow {
    color: #0077cc;
}


/* Training Page Specific */
.training-hero {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)), url('assets/training-hero.jpg') center/cover no-repeat;
    padding: 180px 8% 100px;
    text-align: center;
    color: white;
}

.training-hero h1 {
    font-size: clamp(2.8rem, 7vw, 4.2rem);
}

.page-subtitle {
    font-size: 1.25rem;
    max-width: 680px;
    margin: 0 auto;
    opacity: 0.95;
}

.training-section .card {
    min-height: 380px;
}

.duration {
    color: #00bfff;
    font-weight: 600;
    margin-bottom: 1.2rem;
    display: block;
}

.features {
    list-style: none;
    margin: 1.5rem 0;
}

.features li {
    padding: 6px 0;
    position: relative;
    padding-left: 24px;
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00bfff;
}

.training-note {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
}

body.light .training-note {
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Training Note - Improved Spacing */
.training-note {
    text-align: center;
    margin-top: 5rem;
    padding: 3rem 2.5rem;
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

body.light .training-note {
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.training-note p {
    margin-bottom: 1.2rem;
    font-size: 1.08rem;
}

.training-note .btn {
    margin-top: 1.5rem;
    display: inline-block;
}Gr


/* Achievements Social Proof */
.social-proof {
    margin-top: 5rem;
    text-align: center;
}

.social-proof h2 {
    margin-bottom: 1rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.social-card {
    background: rgba(255,255,255,0.07);
    padding: 2rem;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.social-card:hover {
    transform: translateY(-6px);
}

body.light .social-card {
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}s


/* Achievements Page Enhancements */
.achievements-section .card {
    min-height: 280px;
    padding: 2.4rem 2rem;
}

.highlight-box {
    background: rgba(0, 191, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    border-left: 5px solid #00bfff;
}

.competition-list h2 {
    margin-bottom: 1.5rem;
}

.note {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.achievements-note {
    text-align: center;
    margin-top: 5rem;
    padding: 2.5rem;
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

body.light .achievements-note {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


/* Shop Page */
.shop-hero {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)), url('assets/shop-hero.jpg') center/cover no-repeat;
    padding: 180px 8% 100px;
    text-align: center;
    color: white;
}

.coming-soon {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
}

body.light .coming-soon {
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.section-subheading {
    text-align: center;
    margin: 3rem 0 2.5rem;
    font-size: 1.45rem;
    color: #00bfff;
}

body.light .section-subheading {
    color: #0077cc;
}

.inquiry-box {
    margin-top: 5rem;
    padding: 3rem 2.5rem;
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    text-align: center;
}

body.light .inquiry-box {
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.inquiry-box form {
    max-width: 600px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inquiry-box input,
.inquiry-box textarea {
    padding: 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: inherit;
}

body.light .inquiry-box input,
body.light .inquiry-box textarea {
    background: #ffffff;
    border-color: #ddd;
}



/* ====================== FINAL PAGES STYLING ====================== */

/* Page Hero (used in support, about, contact) */
.page-hero {
    padding: 180px 8% 100px;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
}

.page-hero h1 {
    font-size: clamp(2.8rem, 7vw, 4.2rem);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    max-width: 680px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Support Page */
.support-hero {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)), url('assets/support-hero.jpg') center/cover no-repeat;
}

/* About Page */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)), url('assets/about-hero.jpg') center/cover no-repeat;
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)), url('assets/contact-hero.jpg') center/cover no-repeat;
}

/* Contact Form */
.contact-section {
    padding: 80px 8% 120px;
}

.contact-form {
    max-width: 680px;
    margin: 0 auto 4rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.contact-form input,
.contact-form textarea {
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: inherit;
    font-size: 1.05rem;
}

body.light .contact-form input,
body.light .contact-form textarea {
    background: #ffffff;
    border-color: #ddd;
    color: #1a1a1a;
}

.contact-form button {
    align-self: flex-start;
}

/* Contact Info */
.contact-info {
    text-align: center;
    font-size: 1.15rem;
}

.contact-info p {
    margin: 1rem 0;
}

.contact-info a {
    color: #00bfff;
    text-decoration: none;
}

body.light .contact-info a {
    color: #0077cc;
}

/* Support & About Card Enhancements */
.support-hero .card,
.about-hero .card {
    min-height: 280px;
}

/* Inquiry Box (used in support & shop) */
.inquiry-box {
    margin-top: 5rem;
    padding: 3rem 2.5rem;
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

body.light .inquiry-box {
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.inquiry-box form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 580px;
    margin: 2rem auto 0;
}

.inquiry-box input,
.inquiry-box textarea {
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: inherit;
}

body.light .inquiry-box input,
body.light .inquiry-box textarea {
    background: #ffffff;
    border-color: #ddd;
}