/**
 * Fitness Pro Theme - Custom Styles
 * Modern, Bold & Energetic Design
 */

/* ========================================
   COLOR VARIABLES (Bold & Energetic)
======================================== */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #004e89;
    --accent-color: #f7b801;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --success-color: #06ffa5;
}

/* ========================================
   FITNESS HEADER STYLES
======================================== */
.fitness-header {
    position: relative;
    z-index: 999;
    transition: all 0.3s ease;
}

.fitness-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Top Bar */
.header-top-bar {
    background: var(--dark-bg);
    padding: 12px 0;
    font-size: 14px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-right {
    justify-content: flex-end;
}

.top-bar-item,
.top-bar-hours {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.top-bar-item i,
.top-bar-hours i {
    color: var(--accent-color);
    margin-right: 8px;
}

/* Main Header */
.header-main {
    background: #fff;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.fitness-header.sticky .header-main {
    padding: 15px 0;
}

.fitness-logo a {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fitness-logo img {
    max-height: 60px;
    width: auto;
}

/* Desktop Menu */
.fitness-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.fitness-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 35px;
}

.fitness-menu li {
    position: relative;
}

.fitness-menu li a {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: block;
}

.fitness-menu li a:hover,
.fitness-menu li.current-menu-item a {
    color: var(--primary-color);
}

.fitness-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.fitness-menu > li > a:hover::after,
.fitness-menu > li.current-menu-item > a::after {
    width: 100%;
}

/* ========================================
   SUBMENU / DROPDOWN STYLES
======================================== */

/* Dropdown Arrow Indicator */
.fitness-menu .menu-item-has-children > a {
    position: relative;
    padding-right: 20px;
}

.fitness-menu .menu-item-has-children > a::before {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.fitness-menu .menu-item-has-children:hover > a::before {
    transform: translateY(-50%) rotate(180deg);
}

/* Submenu Container */
.fitness-menu .sub-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    min-width: 240px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 15px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    border-top: 3px solid var(--primary-color);
}

/* Show submenu on hover */
.fitness-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Submenu Items */
.fitness-menu .sub-menu li {
    display: block;
    width: 100%;
}

.fitness-menu .sub-menu li a {
    padding: 12px 25px;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
    border-radius: 0;
    white-space: nowrap;
    position: relative;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.fitness-menu .sub-menu li a::after {
    display: none;
}

.fitness-menu .sub-menu li a:hover {
    background: rgba(255, 107, 53, 0.1);
    border-left-color: var(--primary-color);
    padding-left: 30px;
}

/* Second Level Submenu (Nested Dropdown) */
.fitness-menu .sub-menu .menu-item-has-children > a::before {
    content: '\f105';
    right: 15px;
    left: auto;
}

.fitness-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-left: 5px;
    margin-top: 0;
}

.fitness-menu .sub-menu .menu-item-has-children:hover > a::before {
    transform: translateY(-50%) rotate(0);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    background: var(--dark-bg);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-title {
    font-size: 20px;
    font-weight: 700;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu-list {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid #eee;
}

.mobile-menu-list li a {
    display: block;
    padding: 15px 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-menu-list li a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

/* Mobile Submenu Styles */
.mobile-menu-list .menu-item-has-children {
    position: relative;
}

.mobile-menu-list .menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-list .menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.mobile-menu-list .menu-item-has-children.active > a::after {
    transform: rotate(180deg);
}

.mobile-menu-list .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 107, 53, 0.05);
    transition: max-height 0.3s ease;
}

.mobile-menu-list .menu-item-has-children.active > .sub-menu {
    max-height: 500px;
}

.mobile-menu-list .sub-menu li {
    border-bottom: none;
}

.mobile-menu-list .sub-menu li a {
    padding: 12px 10px 12px 30px;
    font-size: 14px;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.mobile-menu-list .sub-menu li a:hover {
    background: rgba(255, 107, 53, 0.1);
    border-left-color: var(--primary-color);
    padding-left: 35px;
}

/* Second Level Mobile Submenu */
.mobile-menu-list .sub-menu .sub-menu li a {
    padding-left: 50px;
}

.mobile-menu-list .sub-menu .sub-menu li a:hover {
    padding-left: 55px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Header CTA Button */
.fitness-cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff !important;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.fitness-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.fitness-cta-btn i {
    margin-right: 8px;
}

/* ========================================
   FITNESS HERO SLIDER
======================================== */
.fitness-hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.fitness-slide-item {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.85), rgba(255, 107, 53, 0.75));
}

.slide-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 100px 0;
}

.slide-content-inner {
    color: #fff;
}

.slide-badge {
    display: inline-block;
    background: rgba(247, 184, 1, 0.2);
    border: 2px solid var(--accent-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--accent-color);
}

.slide-badge i {
    margin-right: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.slide-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slide-title span {
    color: var(--accent-color);
    display: block;
}

.slide-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.95);
    max-width: 600px;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.slide-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff !important;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.slide-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.slide-btn-secondary {
    background: transparent;
    color: #fff !important;
    border: 2px solid #fff;
}

.slide-btn-secondary:hover {
    background: #fff;
    color: var(--primary-color) !important;
}

/* Slider Navigation */
.fitness-slider-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 30px;
}

.fitness-slider-carousel .owl-nav button {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px solid #fff !important;
    border-radius: 50%;
    color: #fff !important;
    font-size: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.fitness-slider-carousel .owl-nav button:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    transform: scale(1.1);
}

.fitness-slider-carousel .owl-nav .owl-prev {
    left: 30px;
}

.fitness-slider-carousel .owl-nav .owl-next {
    right: 30px;
}

/* Slider Dots */
.fitness-slider-carousel .owl-dots {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
}

.fitness-slider-carousel .owl-dot {
    width: 15px;
    height: 15px;
    background: rgba(255,255,255,0.5) !important;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.fitness-slider-carousel .owl-dot.active {
    background: var(--accent-color) !important;
    width: 40px;
    border-radius: 10px;
}

/* ========================================
   FITNESS ABOUT SECTION (REDESIGNED V2)
======================================== */
.about-area {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* About Content Wrapper */
.about-content-wrapper {
    padding-right: 30px;
}

.about-header {
    margin-bottom: 30px;
}

.about-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 184, 1, 0.1));
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.about-header .section-badge i {
    font-size: 16px;
}

.about-header .section-main-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0;
    font-family: 'Oswald', sans-serif;
}

.about-header .section-main-title span {
    color: var(--primary-color);
    position: relative;
}

/* Description */
.about-description {
    margin: 25px 0;
}

.about-text-primary {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    font-weight: 400;
}

.about-text-secondary {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

/* Quick Stats Row */
.about-quick-stats {
    margin: 35px 0;
    padding: 25px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.quick-stat-item {
    text-align: center;
    padding: 10px;
}

.quick-stat-item .stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Oswald', sans-serif;
}

.quick-stat-item .stat-label {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Features Grid */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.about-features-grid .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-features-grid .feature-item:hover {
    background: rgba(255, 107, 53, 0.05);
    transform: translateX(5px);
}

.feature-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: #fff;
    font-size: 16px;
}

.feature-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

/* CTA Section */
.about-cta-section {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.about-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.about-btn-secondary {
    background: transparent;
    color: var(--secondary-color) !important;
    border-color: var(--secondary-color);
}

.about-btn-secondary:hover {
    background: var(--secondary-color);
    color: #fff !important;
}

/* Image Gallery */
.about-image-gallery {
    position: relative;
    padding: 20px;
}

.image-gallery-grid {
    position: relative;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.gallery-item-large {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.gallery-item-small {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    border: 5px solid #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Experience Badge - New Design */
.experience-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
    text-align: center;
}

.badge-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    border: 5px solid #fff;
    margin-bottom: 10px;
}

.badge-number {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    font-family: 'Oswald', sans-serif;
}

.badge-plus {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Pattern Overlay */
.pattern-overlay {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    opacity: 0.1;
    z-index: 1;
}

.pattern-dot {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Responsive About Section */
@media (max-width: 991px) {
    .about-content-wrapper {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .about-header .section-main-title {
        font-size: 36px;
    }
    
    .about-quick-stats {
        margin: 25px 0;
    }
    
    .quick-stat-item .stat-number {
        font-size: 28px;
    }
    
    .gallery-item-small {
        width: 150px;
        bottom: -15px;
        right: -15px;
    }
}

@media (max-width: 767px) {
    .about-header .section-main-title {
        font-size: 28px;
    }
    
    .about-header .section-badge {
        font-size: 12px;
        padding: 8px 18px;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta-section {
        flex-direction: column;
        align-items: stretch;
    }
    
    .about-btn {
        justify-content: center;
        text-align: center;
    }
    
    .about-quick-stats .row > div {
        margin-bottom: 15px;
    }
    
    .badge-circle {
        width: 80px;
        height: 80px;
    }
    
    .badge-number {
        font-size: 24px;
    }
    
    .badge-plus {
        font-size: 18px;
    }
    
    .gallery-item-small {
        display: none;
    }
    
    .pattern-overlay {
        display: none;
    }
}

.contact-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
}

.contact-number:hover {
    color: var(--primary-color);
}

/* ========================================
   WHY CHOOSE US SECTION
======================================== */
.whychooseus-area {
    background: var(--light-bg);
    padding: 80px 0;
}

.whychooseus-area .section-title h2 {
    color: var(--text-dark);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.whychooseus-area .section-title h2 span {
    color: var(--primary-color);
}

.whychooseus-area .section-title p {
    color: #666;
    font-size: 16px;
    margin-bottom: 50px;
}

.feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.feature-icon-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    transition: all 0.5s ease;
    position: relative;
}

.feature-card:hover .feature-icon-box {
    transform: rotateY(360deg);
}

.feature-icon-box::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed var(--accent-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-box::before {
    opacity: 1;
    transform: rotate(45deg);
}

.feature-content h4 {
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* ========================================
   VIDEO SECTION
======================================== */
.video-section-area {
    background: var(--dark-bg);
    padding: 100px 0;
    position: relative;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.video-section-area .container {
    position: relative;
    z-index: 2;
}

.video-section-area .section-title h2 {
    color: var(--text-light);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.video-section-area .section-title p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    margin-bottom: 50px;
}

.video-player-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    margin-bottom: 40px;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
}

.play-btn-inner {
    width: 100px;
    height: 100px;
    background: rgba(255, 107, 53, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.play-btn-inner i {
    margin-left: 5px;
}

.video-play-btn:hover .play-btn-inner {
    transform: scale(1.1);
    background: var(--primary-color);
}

.play-btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 3px solid rgba(255, 107, 53, 0.8);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        width: 100px;
        height: 100px;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.video-close:hover {
    color: var(--primary-color);
}

.video-modal iframe {
    width: 100%;
    height: 600px;
    border-radius: 10px;
}

/* Video Stats */
.video-stats {
    margin-top: 40px;
}

.video-stats .stat-item {
    padding: 20px;
}

.video-stats .stat-item i {
    font-size: 36px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.video-stats .stat-item h4 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.video-stats .stat-item p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   GALLERY SECTION
======================================== */
.gallery-area {
    background: #fff;
    padding: 80px 0;
}

.gallery-area .section-title h2 {
    color: var(--text-dark);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.gallery-area .section-title h2 span {
    color: var(--primary-color);
}

.gallery-area .section-title p {
    color: #666;
    font-size: 16px;
    margin-bottom: 50px;
}

.gallery-grid {
    margin: 0 -5px;
}

.gallery-item {
    padding: 5px;
    margin-bottom: 10px;
}

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

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

.gallery-card:hover img {
    transform: scale(1.2);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(255, 107, 53, 0.95), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    width: 100%;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery-content h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.gallery-zoom {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gallery-zoom:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

/* ========================================
   CTA BANNER SECTION
======================================== */
.cta-banner-area {
    background: var(--secondary-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.95), rgba(255, 107, 53, 0.85));
}

.cta-banner-area .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    color: #fff;
}

.cta-title {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 50px;
    background: #fff;
    color: var(--primary-color) !important;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-btn:hover {
    background: var(--accent-color);
    color: var(--dark-bg) !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.cta-features {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.cta-feature {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.cta-feature i {
    font-size: 28px;
    color: var(--accent-color);
}

/* ========================================
   CLASS SCHEDULE SECTION
======================================== */
.fitness-schedule-area {
    background: var(--light-bg);
    padding: 80px 0;
}

.fitness-schedule-area .section-title h2 {
    color: var(--text-dark);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.fitness-schedule-area .section-title h2 span {
    color: var(--primary-color);
}

.fitness-schedule-area .section-title p {
    color: #666;
    font-size: 16px;
    margin-bottom: 50px;
}

/* Schedule Table Mode */
.schedule-table-wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.weekly-schedule {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.weekly-schedule thead th {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    padding: 20px 15px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.weekly-schedule thead th:first-child {
    border-top-left-radius: 10px;
}

.weekly-schedule thead th:last-child {
    border-top-right-radius: 10px;
}

.weekly-schedule tbody tr:hover {
    background: rgba(255, 107, 53, 0.05);
}

.time-slot {
    background: var(--secondary-color);
    color: #fff;
    font-weight: 700;
    padding: 20px 15px;
    text-align: center;
    font-size: 14px;
    white-space: nowrap;
}

.class-cell {
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.class-cell.has-class {
    background: #fff;
    cursor: pointer;
}

.class-cell.has-class:hover {
    background: var(--light-bg);
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.class-cell.empty-cell {
    background: #f5f5f5;
    color: #ccc;
    font-weight: 700;
}

.class-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.class-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 14px;
}

.trainer-name {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Schedule Cards Mode */
.schedule-cards {
    padding: 20px 0;
}

.schedule-card-item {
    margin-bottom: 30px;
}

.schedule-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.schedule-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.schedule-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 20px;
    color: #fff;
    text-align: center;
}

.class-day {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.class-time {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.class-time i {
    font-size: 16px;
}

.schedule-card-body {
    padding: 25px;
}

.class-title {
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.class-duration,
.class-trainer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
    font-weight: 600;
}

.class-duration i,
.class-trainer i {
    color: var(--primary-color);
    font-size: 14px;
}

.class-description {
    text-align: center;
    color: #777;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* Download Button */
.schedule-download {
    margin-top: 40px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: #fff !important;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 78, 137, 0.3);
}

.download-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Responsive Schedule */
@media (max-width: 1199px) {
    .weekly-schedule {
        font-size: 12px;
    }
    
    .weekly-schedule thead th,
    .time-slot {
        padding: 15px 10px;
        font-size: 12px;
    }
    
    .class-name {
        font-size: 12px;
    }
    
    .trainer-name {
        font-size: 10px;
    }
}

@media (max-width: 991px) {
    /* Hide table on tablet/mobile, show message */
    .schedule-table {
        overflow-x: auto;
    }
    
    .weekly-schedule {
        min-width: 900px;
    }
    
    .schedule-table-wrapper {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .class-title {
        font-size: 18px;
    }
    
    .schedule-card-header {
        padding: 15px;
    }
    
    .class-day {
        font-size: 14px;
    }
    
    .class-time {
        font-size: 16px;
    }
}

/* ========================================
   TRAINERS SECTION
======================================== */
.trainers-area {
    background: var(--light-bg);
    padding: 80px 0;
}

.trainers-area .section-title h2 {
    color: var(--text-dark);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.trainers-area .section-title h2 span {
    color: var(--primary-color);
}

.trainers-area .section-title p {
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

.trainer-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.trainer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.trainer-img {
    position: relative;
    overflow: hidden;
}

.trainer-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.trainer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 53, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trainer-card:hover .trainer-overlay {
    opacity: 1;
}

.trainer-info {
    padding: 25px;
    text-align: center;
}

.trainer-info h4 {
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.trainer-designation {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   PROGRAMS SECTION
======================================== */
.programs-area {
    background: #fff;
    padding: 80px 0;
}

.programs-area .section-title h2 {
    color: var(--text-dark);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.programs-area .section-title h2 span {
    color: var(--primary-color);
}

.programs-area .section-title p {
    color: #666;
    font-size: 16px;
    margin-bottom: 50px;
}

.program-card {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.program-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.program-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #fff;
    transition: all 0.3s ease;
}

.program-card:hover .program-icon {
    transform: rotateY(360deg);
}

.program-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.program-content h4 {
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.program-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.program-btn {
    display: inline-block;
    padding: 12px 35px;
    background: var(--primary-color);
    color: #fff !important;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.program-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* ========================================
   PRICING SECTION
======================================== */
.pricing-area {
    background: var(--light-bg);
    padding: 80px 0;
}

.pricing-area .section-title h2 {
    color: var(--text-dark);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-area .section-title h2 span {
    color: var(--primary-color);
}

.pricing-area .section-title p {
    color: #666;
    font-size: 16px;
    margin-bottom: 50px;
}

.pricing-card {
    background: #fff;
    border-radius: 15px;
    padding: 45px 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header h3 {
    color: var(--text-dark);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.price {
    margin-bottom: 30px;
}

.price .currency {
    font-size: 24px;
    color: var(--text-dark);
    vertical-align: super;
}

.price .amount {
    font-size: 56px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1;
}

.price .duration {
    font-size: 16px;
    color: #666;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pricing-features ul li {
    padding: 12px 0;
    color: #666;
    font-size: 15px;
    border-bottom: 1px solid #eee;
}

.pricing-features ul li:last-child {
    border-bottom: none;
}

.pricing-features ul li i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 16px;
}

.pricing-btn {
    display: inline-block;
    padding: 15px 45px;
    background: var(--primary-color);
    color: #fff !important;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.pricing-card.featured .pricing-btn {
    background: var(--secondary-color);
}

.pricing-card.featured .pricing-btn:hover {
    background: var(--primary-color);
}

/* ========================================
   BMI CALCULATOR SECTION
======================================== */
.bmi-calculator-area {
    background: var(--dark-bg);
    padding: 80px 0;
    position: relative;
}

.bmi-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.bmi-calculator-area .container {
    position: relative;
    z-index: 2;
}

.bmi-calculator-area .section-title h2 {
    color: var(--text-light);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.bmi-calculator-area .section-title h2 span {
    color: var(--accent-color);
}

.bmi-calculator-area .section-title p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    margin-bottom: 40px;
}

.bmi-calculator-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 50px;
}

.bmi-form .form-group {
    margin-bottom: 25px;
}

.bmi-form label {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.bmi-form .form-control {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
}

.bmi-form .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    outline: none;
    color: #fff;
}

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

.bmi-calc-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    border: none;
    padding: 15px 60px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.bmi-calc-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.bmi-result {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: center;
}

.bmi-result h3 {
    color: var(--text-light);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.bmi-result h3 span {
    color: var(--accent-color);
}

.bmi-result p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 25px;
}

.bmi-chart {
    margin-top: 25px;
}

.bmi-bar {
    height: 10px;
    background: linear-gradient(to right, #3498db, #2ecc71, #f39c12, #e74c3c);
    border-radius: 10px;
    position: relative;
    margin-bottom: 15px;
}

.bmi-indicator {
    position: absolute;
    top: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid var(--accent-color);
    transform: translateX(-50%);
    transition: left 0.5s ease;
}

.bmi-labels {
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
}

/* ========================================
   TRANSFORMATIONS SECTION
======================================== */
.transformations-area {
    background: #fff;
    padding: 80px 0;
}

.transformations-area .section-title h2 {
    color: var(--text-dark);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.transformations-area .section-title h2 span {
    color: var(--primary-color);
}

.transformations-area .section-title p {
    color: #666;
    font-size: 16px;
    margin-bottom: 50px;
}

.transformation-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.transformation-img {
    position: relative;
    overflow: hidden;
}

.transformation-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.transformation-card:hover .transformation-img img {
    transform: scale(1.15);
}

.transformation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(255, 107, 53, 0.95), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.transformation-card:hover .transformation-overlay {
    opacity: 1;
}

.transformation-info {
    color: #fff;
}

.transformation-info h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.transformation-info p {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

/* ========================================
   STATS/COUNTER SECTION
======================================== */
.stats-area {
    background: var(--secondary-color);
    padding: 80px 0;
    position: relative;
    background-size: cover;
    background-position: center;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 78, 137, 0.9);
}

.stats-area .container {
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: var(--accent-color);
    color: var(--secondary-color);
    transform: rotateY(360deg);
}

.stat-number {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
}

.stat-content p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials-area {
    background: var(--dark-bg);
    padding: 80px 0;
}

.testimonials-area .section-title h2 {
    color: var(--text-light);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.testimonials-area .section-title p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    margin: 15px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
}

.quote-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-content p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-info h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.author-info span {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 500;
}

.testimonials-carousel .owl-dots {
    margin-top: 40px;
    text-align: center;
}

.testimonials-carousel .owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    margin: 0 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.testimonials-carousel .owl-dot.active,
.testimonials-carousel .owl-dot:hover {
    background: var(--accent-color);
    width: 30px;
    border-radius: 10px;
}

/* ========================================
   RESPONSIVE STYLES
======================================== */

/* Large Tablets and Small Desktops */
@media (max-width: 1199px) {
    .slide-title {
        font-size: 56px;
    }
    
    .section-main-title {
        font-size: 40px;
    }
}

/* Tablets */
@media (max-width: 991px) {
    /* Header */
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-cta {
        text-align: center;
        margin-top: 15px;
    }
    
    .top-bar-left,
    .top-bar-right {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    /* Slider */
    .slide-title {
        font-size: 48px;
    }
    
    .slide-description {
        font-size: 18px;
    }
    
    .slide-buttons {
        justify-content: center;
    }
    
    /* About */
    .about-content-section {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .section-main-title {
        font-size: 36px;
    }
    
    .about-secondary-image {
        display: none;
    }
    
    /* General */
    .section-title h2 {
        font-size: 36px !important;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .trainer-img img,
    .transformation-img img {
        height: 280px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    /* Header */
    .header-top-bar {
        padding: 10px 0;
        font-size: 12px;
    }
    
    .top-bar-item,
    .top-bar-hours {
        font-size: 11px;
    }
    
    .fitness-logo a {
        font-size: 24px;
    }
    
    .fitness-cta-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    /* Slider */
    .fitness-hero-slider {
        min-height: 500px;
    }
    
    .fitness-slide-item {
        min-height: 500px;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .slide-description {
        font-size: 16px;
    }
    
    .slide-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .fitness-slider-carousel .owl-nav button {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .fitness-slider-carousel .owl-nav .owl-prev {
        left: 15px;
    }
    
    .fitness-slider-carousel .owl-nav .owl-next {
        right: 15px;
    }
    
    /* About */
    .section-main-title {
        font-size: 28px;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .about-text-primary {
        font-size: 16px;
    }
    
    .experience-badge {
        padding: 20px;
        bottom: 15px;
        left: 15px;
    }
    
    .badge-number {
        font-size: 36px;
    }
    
    .badge-text {
        font-size: 10px;
    }
    
    .about-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .about-btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-number {
        font-size: 18px;
    }
    
    /* General */
    .section-title h2 {
        font-size: 28px !important;
    }
    
    .bmi-calculator-box {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .price .amount {
        font-size: 42px;
    }
    
    .program-card,
    .pricing-card,
    .trainer-card {
        margin-bottom: 25px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .slide-title {
        font-size: 28px;
    }
    
    .slide-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .slide-btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-main-title {
        font-size: 24px;
    }
    
    .feature-item {
        font-size: 14px;
    }
    
    .about-features-list .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ========================================
   BACK TO TOP BUTTON
======================================== */
#back2Top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

#back2Top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 78, 137, 0.5);
}

#back2Top svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    transform: rotate(-90deg);
}

@media (max-width: 768px) {
    #back2Top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    #back2Top svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   VIDEO MODAL
======================================== */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 1;
    transition: color 0.3s ease;
}

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

.video-modal-content iframe {
    width: 100%;
    height: 70vh;
    border: none;
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
    }
    
    .video-modal-content iframe {
        height: 50vh;
    }
    
    .video-modal-close {
        top: -50px;
        font-size: 30px;
    }
}

/* ========================================
   LOADING SCREEN - REMOVED
======================================== */
/* Loading screen removed as per user request */

/* ========================================
   FORM ERROR STATES
======================================== */
input.error,
textarea.error,
select.error {
    border-color: #e74c3c !important;
    background: rgba(231, 76, 60, 0.05);
}

/* ========================================
   UTILITY CLASSES
======================================== */
.text-center {
    text-align: center;
}

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

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

.mb-0 { margin-bottom: 0 !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-50 { margin-bottom: 50px !important; }

.mt-0 { margin-top: 0 !important; }
.mt-10 { margin-top: 10px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-50 { margin-top: 50px !important; }

/* ========================================
   DISABLE WOW ANIMATIONS
======================================== */
/* Make all WOW elements visible immediately (no animation) */
.wow {
    visibility: visible !important;
    animation: none !important;
}

/* Override all animate.css animations */
.animated {
    animation: none !important;
}

.fadeIn, .fadeInUp, .fadeInDown, .fadeInLeft, .fadeInRight,
.zoomIn, .slideInUp, .slideInDown, .bounceIn {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

/* END OF FITNESS PRO CUSTOM STYLES */
