/* ==========================================================================
   GymPro - Fitness and Gym Theme Stylesheet
   ========================================================================== */

/* Oswald Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');

/* Custom CSS Variables */
:root {
    --bg-dark: #1e181b;
    --bg-card: #292125;
    --bg-card-hover: #342a2f;
    --accent-neon: #b0632d;
    --accent-neon-hover: #8f4f22;
    --text-white: #ffffff;
    --text-grey: #a09eb5;
    --text-light-grey: #e1e0eb;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(176, 99, 45, 0.3);
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    background-image: linear-gradient(135deg, #7c451e 0%, #1e181b 100%);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-grey);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input, textarea, button {
    font-family: inherit;
}

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

/* Custom Cursor Effects */
#magic-cursor {
    position: fixed;
    width: 24px;
    height: 24px;
    border: 2px solid var(--accent-neon);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
    transition-timing-function: cubic-bezier(0.1, 0.8, 0.3, 1);
}

#magic-cursor.hovered {
    width: 50px;
    height: 50px;
    background-color: rgba(213, 235, 69, 0.15);
    border-color: var(--accent-neon);
}

#magic-cursor.clicked {
    transform: translate(-50%, -50%) scale(0.8);
    background-color: var(--accent-neon);
}

@media (max-width: 1024px) {
    #magic-cursor {
        display: none !important;
    }
}

/* Theme Preloader */
.theme-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.theme-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-container {
    position: relative;
    width: 80px;
    height: 80px;
}

.loading {
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border-top-color: var(--accent-neon);
    animation: spin 1s linear infinite;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loading-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Scroll Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Global Grid Container */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Typography & Section Titles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 600;
    line-height: 1.2;
}

.sub-title {
    color: var(--accent-neon);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 48px;
    max-width: 650px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 36px;
    }
}

/* Common Buttons & Hover States */
.btn-primary {
    background-color: var(--accent-neon);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-neon-hover);
    color: var(--text-white);
}

.btn-primary:hover svg {
    transform: rotate(45deg);
}

/* Header & Navigation */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

header.sticky {
    position: fixed;
    background-color: rgba(8, 5, 23, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.logo img {
    height: 65px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu ul {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-light-grey);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-neon);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--accent-neon);
}

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

/* Dropdown Menu styling */
.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #120e2a;
    border: 1px solid var(--border-color);
    border-top: 2px solid var(--accent-neon);
    min-width: 200px;
    border-radius: 0 0 8px 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-grey);
}

.dropdown-menu li a:hover {
    color: var(--accent-neon);
    background-color: rgba(255, 255, 255, 0.03);
    padding-left: 25px;
}

.nav-cta .btn-primary {
    padding: 12px 24px;
    font-size: 15px;
}

/* Mobile Toggle Hamburger */
.hamburger-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1000;
}

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

.hamburger-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.hamburger-toggle.active span:nth-child(2) {
    opacity: 0;
}
.hamburger-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

@media (max-width: 1024px) {
    .hamburger-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-dark);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px;
        gap: 20px;
        transition: var(--transition-smooth);
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 20px;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        box-shadow: none;
        background-color: transparent;
        padding-left: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .nav-item.active .dropdown-menu {
        max-height: 500px;
    }
    .nav-cta {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8, 5, 23, 0.4) 0%, rgba(8, 5, 23, 0.95) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

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

.hero-badge-wrap {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 50px;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-badge-wrap .authors-pics {
    display: flex;
}

.hero-badge-wrap .authors-pics img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-left: -8px;
}

.hero-badge-wrap .authors-pics img:first-child {
    margin-left: 0;
}

.hero-badge-wrap p {
    color: var(--text-light-grey);
    font-size: 13px;
    font-weight: 500;
}

.hero-content h1 {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content p.hero-desc {
    font-size: 18px;
    color: var(--text-light-grey);
    margin-bottom: 36px;
    max-width: 600px;
}

/* Hero Satisfaction Card */
.hero-stats-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    text-align: left;
    max-width: 380px;
    margin-left: auto;
    position: relative;
    overflow: hidden;
}

.hero-stats-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(213, 235, 69, 0.1) 0%, transparent 70%);
}

.hero-stats-card .percentage {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 700;
    color: var(--accent-neon);
    line-height: 1;
    margin-bottom: 12px;
}

.hero-stats-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-white);
}

.hero-stats-card p {
    font-size: 14px;
    color: var(--text-grey);
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats-card {
        margin-left: 0;
        max-width: 100%;
    }
    .hero-content h1 {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 50px;
    }
    .hero-content h1 {
        font-size: 40px;
    }
    .hero-badge-wrap {
        padding: 6px 12px;
    }
}

/* Feature Scrolling Ticker Section */
.ticker-section {
    background-color: #0d0922;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
}

.ticker-wrap {
    display: flex;
    width: 200%;
    overflow: hidden;
}

.ticker-list {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: marquee 25s linear infinite;
    min-width: 100%;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    white-space: nowrap;
}

.ticker-item img {
    width: 24px;
    height: 24px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* About Us Section */
.about-section {
    padding: 120px 0;
    position: relative;
}

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

/* About Images Overlapping */
.about-images-wrap {
    position: relative;
    height: 600px;
}

.about-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: auto;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    z-index: 2;
    transition: var(--transition-smooth);
}

.about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: auto;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    z-index: 3;
    transition: var(--transition-smooth);
}

.about-images-wrap:hover .about-img-1 {
    transform: scale(0.96) rotate(-2deg);
}

.about-images-wrap:hover .about-img-2 {
    transform: scale(1.04) rotate(2deg);
}

/* About Rating Badge */
.about-rating-badge {
    position: absolute;
    bottom: 80px;
    left: -30px;
    z-index: 4;
    background-color: rgba(18, 14, 42, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.about-rating-badge img.google-logo {
    width: 44px;
    height: 44px;
}

.rating-details .rating-score {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-details .stars {
    color: #FBBB00;
    font-size: 13px;
    margin: 4px 0;
}

.rating-details span {
    font-size: 12px;
    color: var(--text-grey);
}

/* About Content Info Box */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 36px 0;
}

.feature-box {
    display: flex;
    gap: 16px;
}

.feature-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(213, 235, 69, 0.1);
    color: var(--accent-neon);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    font-size: 20px;
}

.feature-box h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 14px;
    color: var(--text-grey);
}

.about-checklist {
    margin-bottom: 40px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light-grey);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 12px;
}

.checklist-item i {
    color: var(--accent-neon);
    font-size: 18px;
}

/* Spinny Circle Text Badge */
.spinny-badge-wrap {
    position: absolute;
    bottom: -60px;
    right: 40px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: var(--accent-neon);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    animation: rotate-clockwise 15s linear infinite;
    cursor: pointer;
}

.spinny-badge-wrap .circle-text {
    width: 100%;
    height: 100%;
    fill: var(--bg-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
}

@keyframes rotate-clockwise {
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-images-wrap {
        height: 500px;
        max-width: 600px;
        margin: 0 auto;
    }
    .about-rating-badge {
        left: 0;
    }
}

@media (max-width: 768px) {
    .about-images-wrap {
        height: 400px;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* Programs Section */
.programs-section {
    padding: 120px 0;
    background-color: #0b081e;
    border-top: 1px solid var(--border-color);
}

.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: 20px;
    overflow: hidden;
    position: relative;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    transition: var(--transition-smooth);
}

.program-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 1;
    transition: var(--transition-smooth);
}

.program-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8, 5, 23, 0.1) 0%, rgba(8, 5, 23, 0.95) 100%);
    z-index: 2;
}

.program-card-content {
    position: relative;
    z-index: 3;
}

.program-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 3;
    font-family: var(--font-heading);
    font-size: 24px;
    color: rgba(255, 255, 255, 0.1);
    font-weight: 700;
    transition: var(--transition-smooth);
}

.program-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.program-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.program-card p {
    font-size: 15px;
    color: var(--text-grey);
    margin-bottom: 24px;
    opacity: 0.8;
}

.program-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-smooth);
}

.program-btn svg {
    transition: transform 0.3s ease;
}

.program-card:hover {
    border-color: var(--accent-neon);
    transform: translateY(-8px);
}

.program-card:hover .program-card-bg {
    opacity: 0.55;
    transform: scale(1.08);
}

.program-card:hover .program-badge {
    color: var(--accent-neon);
}

.program-card:hover .program-icon-box {
    background-color: var(--accent-neon);
    color: var(--bg-dark);
}

.program-card:hover .program-btn {
    color: var(--accent-neon);
}

.program-card:hover .program-btn svg {
    transform: rotate(45deg);
}

@media (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
}

/* Stats / Experience Info Section */
.stats-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
}

.stats-intro {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stats-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--accent-neon);
    color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    flex-shrink: 0;
}

.stats-intro h3 {
    font-size: 22px;
}

.stats-list-wrap ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stats-list-wrap li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-light-grey);
}

.stats-list-wrap li span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-neon);
    display: block;
}

.stats-cta-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 380px;
    margin-left: auto;
    transition: var(--transition-smooth);
}

.stats-cta-card:hover {
    border-color: var(--accent-neon);
}

.stats-cta-img img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-neon);
}

.stats-cta-details p {
    font-size: 13px;
    color: var(--text-grey);
    margin-bottom: 4px;
}

.stats-cta-details h4 {
    font-size: 16px;
    margin-bottom: 6px;
}

.stats-cta-details a {
    color: var(--accent-neon);
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .stats-cta-card {
        margin-left: 0;
        max-width: 100%;
    }
}

/* Pricing Plans Section */
.pricing-section {
    padding: 120px 0;
    background-color: #0b081e;
    border-top: 1px solid var(--border-color);
}

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

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

.pricing-card.active {
    border-color: var(--accent-neon);
}

.pricing-card.active::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: 24px;
    right: -32px;
    background-color: var(--accent-neon);
    color: var(--bg-dark);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 30px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.pricing-card.active .pricing-icon {
    background-color: rgba(213, 235, 69, 0.1);
    color: var(--accent-neon);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.pricing-card p.pricing-desc {
    font-size: 14px;
    color: var(--text-grey);
    margin-bottom: 30px;
    line-height: 1.5;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 6px;
    display: flex;
    align-items: baseline;
}

.pricing-price span {
    font-size: 16px;
    color: var(--text-grey);
    font-weight: 400;
    margin-left: 6px;
}

.pricing-classes-count {
    font-size: 13px;
    color: var(--accent-neon);
    font-weight: 600;
    margin-bottom: 36px;
}

.pricing-list {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-light-grey);
}

.pricing-list li i {
    color: var(--accent-neon);
    font-size: 16px;
}

.pricing-card .btn-primary {
    width: 100%;
    justify-content: center;
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-white);
}

.pricing-card.active .btn-primary,
.pricing-card .btn-primary:hover {
    background-color: var(--accent-neon);
    color: var(--text-white);
    border-color: var(--accent-neon);
}

.pricing-card.active .btn-primary:hover {
    background-color: var(--accent-neon-hover);
    border-color: var(--accent-neon-hover);
}

.pricing-card-footer-text {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-grey);
}

/* Pricing Call To Action Card */
.pricing-cta-box {
    background-color: #120e2a;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    position: relative;
    height: 100%;
}

.pricing-cta-box h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.pricing-cta-box p {
    font-size: 15px;
    color: var(--text-grey);
    margin-bottom: 30px;
    max-width: 280px;
}

.pricing-cta-btn {
    background-color: var(--accent-neon);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 16px;
    display: inline-block;
    transition: var(--transition-smooth);
}

.pricing-cta-btn:hover {
    background-color: var(--accent-neon-hover);
    color: var(--text-white);
}

.pricing-cta-graphic {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 150px;
    opacity: 0.15;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-cta-box {
        padding: 50px 20px;
    }
}

/* FAQs Section */
.faq-section {
    padding: 120px 0;
    background-color: var(--bg-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.faq-img-wrap {
    position: relative;
}

.faq-img-wrap img {
    border-radius: 20px;
    border: 2px solid var(--border-color);
}

.faq-overlay-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    max-width: 280px;
}

.faq-overlay-badge h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.faq-overlay-badge p {
    font-size: 14px;
    color: var(--accent-neon);
    font-weight: 600;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Standard HTML Details Accordion styling */
details.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px 30px;
    transition: var(--transition-smooth);
}

details.faq-item summary {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

details.faq-item summary::-webkit-details-marker {
    display: none;
}

details.faq-item summary .icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--accent-neon);
    color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    transition: transform 0.3s ease;
}

details.faq-item[open] {
    border-color: var(--accent-neon);
}

details.faq-item[open] summary .icon {
    transform: rotate(45deg);
}

.faq-content {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-grey);
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    line-height: 1.6;
}

.faq-content ul {
    margin-top: 12px;
    padding-left: 10px;
}

.faq-content li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
}

.faq-content li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-neon);
    display: block;
}

@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .faq-img-wrap {
        max-width: 500px;
        margin: 0 auto 40px auto;
    }
    .faq-overlay-badge {
        right: 0;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background-color: #0b081e;
    border-top: 1px solid var(--border-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.testimonial-slider-wrap {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px;
    position: relative;
}

.testimonial-stars {
    color: #FBBB00;
    font-size: 16px;
    margin-bottom: 24px;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 20px;
    color: var(--text-light-grey);
    line-height: 1.6;
    margin-bottom: 36px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid var(--accent-neon);
}

.testimonial-author-details strong {
    display: block;
    color: var(--text-white);
    font-size: 16px;
    margin-bottom: 2px;
}

.testimonial-author-details span {
    font-size: 13px;
    color: var(--text-grey);
}

/* Swiper navigation custom formatting */
.slider-nav {
    display: flex;
    gap: 12px;
    position: absolute;
    bottom: 50px;
    right: 50px;
}

.slider-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-nav-btn:hover {
    background-color: var(--accent-neon);
    color: var(--text-white);
    border-color: var(--accent-neon);
}

/* Sponsors Scrolling Band */
.sponsors-wrap {
    margin-top: 100px;
    border-top: 1px solid var(--border-color);
    padding-top: 50px;
    text-align: center;
}

.sponsors-wrap p {
    font-size: 14px;
    color: var(--text-grey);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.sponsors-carousel {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.sponsors-list {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: marquee-sponsors 20s linear infinite;
    min-width: 100%;
}

.sponsors-list img {
    height: 36px;
    opacity: 0.4;
    transition: var(--transition-smooth);
}

.sponsors-list img:hover {
    opacity: 1;
}

@keyframes marquee-sponsors {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .testimonial-slider-wrap {
        padding: 40px 20px 100px 20px;
    }
    .slider-nav {
        right: 20px;
        bottom: 30px;
    }
    .testimonial-text {
        font-size: 16px;
    }
}

/* Latest Blogs Section */
.blog-section {
    padding: 120px 0;
    background-color: var(--bg-dark);
}

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

.blog-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.blog-img-wrap {
    overflow: hidden;
    height: 240px;
    position: relative;
}

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

.blog-category-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--accent-neon);
    color: var(--bg-dark);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.blog-card-body {
    padding: 30px;
}

.blog-card-body h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-body h3 a:hover {
    color: var(--accent-neon);
}

.blog-card-body p {
    font-size: 14px;
    color: var(--text-grey);
    margin-bottom: 20px;
}

.blog-card:hover {
    border-color: var(--accent-neon);
    transform: translateY(-8px);
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.06);
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Section */
footer {
    background-color: #0b081e;
    border-top: 1px solid var(--border-color);
    padding: 100px 0 30px 0;
    color: var(--text-grey);
}

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

.footer-brand img {
    height: 65px;
    margin-bottom: 24px;
}

.footer-brand h2 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light-grey);
    line-height: 1.5;
    margin-bottom: 30px;
}

.footer-logo-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo-details p {
    font-size: 14px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-neon);
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    font-size: 14px;
    color: var(--text-grey);
}

.footer-links-list a:hover {
    color: var(--accent-neon);
    padding-left: 6px;
}

.footer-hours-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-hours-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light-grey);
}

.footer-hours-item span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-neon);
    display: block;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.social-circle:hover {
    background-color: var(--accent-neon);
    color: var(--bg-dark);
    border-color: var(--accent-neon);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-bottom a {
    color: var(--text-white);
    font-weight: 500;
}

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

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    color: #fff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
}
