/* ==========================================================================
   Variables & Fonts
   ========================================================================== */
:root {
    --bg-dark: #0A0A0A;
    --bg-sec: #161616;
    --accent: #00BFFF;
    --text-white: #FFFFFF;
    --text-muted: #BDBDBD;

    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-stats: 'Oswald', sans-serif;

    --glass-bg: rgba(22, 22, 22, 0.6);
    --glass-border: rgba(0, 191, 255, 0.15);
    --neon-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    width: 100%;
}

img, video {
    max-width: 100%;
    height: auto;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.w-100 {
    width: 100%;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-subtitle {
    color: var(--accent);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: clamp(20px, 4vw, 40px);
    line-height: 1.1;
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.btn-primary.glow:hover {
    box-shadow: var(--neon-shadow);
    transform: translateY(-3px);
}

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

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

/* ==========================================================================
   Glassmorphism Utility
   ========================================================================== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-white);
}

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

.nav-links a {
    margin: 0 15px;
    font-weight: 400;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

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

.hamburger {
    padding: 10px;
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-white);
    transition: 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    z-index: -1;
    overflow-y: auto;
    padding: 20px 0;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 8s linear;
}

.hero-bg-1 {
    background-image: url('./hero1.webp');
}

.hero-bg-2 {
    background-image: url('./hero2.webp');
}

.hero-bg-3 {
    background-image: url('./hero3.webp');
}

/* Cinematic Zoom Effect */
.swiper-slide-active .hero-bg {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 800px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
}

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

.hero-buttons {
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    gap: 15px;
}

/* Hero Animations on Active Slide */
.swiper-slide-active .hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-list i {
    color: var(--accent);
}

.signature-quote {
    border-left: 3px solid var(--accent);
    padding-left: 15px;
    margin-top: 30px;
    font-style: italic;
    color: var(--text-muted);
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    padding: 40px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.stat-card h3 {
    font-family: var(--font-stats);
    font-size: 3.5rem;
    display: inline-block;
}

.stat-card span {
    font-family: var(--font-stats);
    font-size: 3.5rem;
    color: var(--accent);
}

.stat-card p {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* ==========================================================================
   Features (Why Choose Us)
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 40px 30px;
    transition: all 0.3s ease;
    text-align: center;
    cursor: default;
}

.feature-card i {
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 20px;
    transition: color 0.3s ease, text-shadow 0.3s;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.feature-card:hover i {
    color: var(--accent);
    text-shadow: var(--neon-shadow);
}

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

.program-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.program-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.1));
}

.program-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.program-info h3 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 5px;
}

.program-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.program-card:hover .program-info {
    transform: translateY(0);
}

.program-card:hover .program-info p {
    opacity: 1;
}

/* ==========================================================================
   Membership Pricing
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.pricing-card {
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.4s ease;
    position: relative;
}

.premium-card {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.1);
    transform: scale(1.05);
}

.premium-card:hover {
    transform: scale(1.08);
    box-shadow: var(--neon-shadow);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent);
    color: var(--bg-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.price {
    font-family: var(--font-stats);
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 20px;
    line-height: 1;
}

.price span {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.pricing-features {
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: var(--accent);
}

.pricing-features li.disabled {
    color: #555;
}

.pricing-features li.disabled i {
    color: #555;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.review-card {
    padding: 40px;
    margin: 20px;
    text-align: center;
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.reviewer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.r-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.reviewer h4 {
    font-family: var(--font-body);
    font-size: 1rem;
}

/* ==========================================================================
   Gallery Masonry
   ========================================================================== */
.masonry-grid {
    column-count: 3;
    column-gap: 20px;
}

.m-item {
    margin-bottom: 20px;
    break-inside: avoid;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: crosshair;
}

.m-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.m-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 191, 255, 0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.m-item:hover img {
    transform: scale(1.05);
}

.m-item:hover::after {
    opacity: 1;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
    background: url('./hero1.webp') center/cover fixed;
    padding: 120px 0;
    position: relative;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.85);
}

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

.cta-content h2 {
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: 10px;
}

.cta-content h2 span {
    color: var(--accent);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    padding: 40px;
}

.contact-info h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--accent);
}

.c-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.c-item i {
    color: var(--accent);
    font-size: 1.5rem;
    margin-top: 5px;
}

.c-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

.c-item h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    min-height: 400px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #050505;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-col p {
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-col ul li {
    margin-bottom: 12px;
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--bg-sec);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   Floating Action Buttons
   ========================================================================== */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
}

.wa-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: var(--accent);
    color: var(--bg-dark);
}

/* ==========================================================================
   Modal Pop Up
   ========================================================================== */
.modal {
    visibility: hidden;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    visibility: visible;
    opacity: 1;
}

.modal-content {
    background: var(--bg-sec);
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.2);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--text-muted);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--accent);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--accent);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control option {
    background: var(--bg-sec);
    color: var(--text-white);
}

.form-status {
    display: none;
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-status:not(:empty) {
    display: block;
}

.form-status--success {
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.4);
    color: #2ecc71;
}

.form-status--error {
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.4);
    color: #e74c3c;
}

.field-error {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: #e74c3c;
}

.field-error:empty {
    display: none;
}

.form-control[aria-invalid="true"] {
    border-color: #e74c3c;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 991px) {
    

    

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .features-grid,
    .programs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .premium-card {
        transform: scale(1);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .masonry-grid {
        column-count: 2;
    }

    .experience-badge {
        right: 0;
        bottom: 0;
        transform: translate(20%, 20%) scale(0.8);
    }
}

@media (max-width: 768px) {

    .nav-links,
    .desktop-cta {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero {
        height: 100svh;
    }

    .hero-bg-2 {
        background-position: top center;
    }

    .hero-bg-3 {
        background-position: top center;
    }

    .cta-banner {
        background-attachment: scroll !important;
        background-position: center center;
    }

    .hero-content {
        left: 5%;
        width: 90%;
        text-align: left;
    }

    .hero-subtitle {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-title {
        text-align: left;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 15px;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }

    .stats-grid,
    .features-grid,
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .masonry-grid {
        column-count: 2;
        column-gap: 15px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    /* Mobile responsive tweaks for 2 columns */
    .feature-card {
        padding: 20px 15px;
    }
    .feature-card i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    .feature-card p {
        font-size: 0.85rem;
    }

    .program-card {
        height: 200px;
    }
    .program-info h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    .program-info p {
        font-size: 0.8rem;
    }

    .stat-card {
        padding: 20px 10px;
    }
    .stat-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    .stat-card h3, .stat-card span {
        font-size: 2rem;
    }
    .stat-card p {
        font-size: 0.75rem;
    }
}
/* ==========================================================================
   Custom Appended Styles for Local SEO & UI Enhancements
   ========================================================================== */
.review-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--neon-shadow);
    border-color: var(--accent);
}

.faq-card {
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.faq-card:hover {
    border-left-color: var(--accent);
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 576px) {
    .stats-grid,
    .features-grid,
    .programs-grid,
    .masonry-grid,
    .contact-grid {
        grid-template-columns: 1fr !important;
    }
    .hero-content {
        left: 5%;
        width: 90%;
    }
    .hero-buttons a {
        max-width: 100%;
    }
    .modal-content {
        padding: 20px;
        width: 95%;
    }
    .feature-card {
        padding: 20px 15px;
    }
    .contact-info {
        padding: 20px;
    }
    .pricing-card {
        padding: 20px 10px;
    }
    .faq-card {
        padding: 15px !important;
    }
    .form-control {
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    .section-padding {
        padding: 40px 0;
    }
    .container {
        padding: 0 15px;
    }
}
