/*
Theme Name: Bonemarrow Fitness
Theme URI: https://bonemarrowfitness.com
Author: Satyajit Giri | Pragati Business Solutions
Author URI: https://pragati.business
Description: Custom premium dark theme for Bonemarrow Fitness gym website. Built from scratch with no pre-built themes.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bonemarrow-fitness
*/

/* Google Fonts - imported directly to ensure loading regardless of cache plugins */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================
   DESIGN SYSTEM — Bonemarrow Fitness
   ============================================ */

:root {
    /* Brand Colors (Gold) */
    --brand-50: #fdf8e8;
    --brand-100: #f9edc5;
    --brand-200: #f3da8a;
    --brand-300: #edca5a;
    --brand-400: #e5b832;
    --brand-500: #d4a843;
    --brand-600: #b8912e;
    --brand-700: #9a7a26;
    --brand-800: #7c621e;
    --brand-900: #5e4a17;

    /* Fonts */
    --font-primary: 'Outfit', sans-serif;

    /* Spacing */
    --nav-height: 80px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

body {
    font-family: var(--font-primary);
    background: #f9fafb;
    color: #111827;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: clip;
}

::selection {
    background: var(--brand-500);
    color: #000;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-500);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-brand {
    display: inline-block;
    background: var(--brand-600);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 14px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.85rem;
}

.btn-brand:hover {
    background: var(--brand-500);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 168, 67, 0.2);
    color: #fff;
}

.btn-brand-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 14px 32px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    text-align: center;
    font-size: 0.85rem;
}

.btn-brand-outline:hover {
    background: #fff;
    color: #000;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    background: #000;
    color: #fff;
    padding: 8px 16px;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-bottom: 1px solid rgba(212, 168, 67, 0.2);
    overflow: hidden;
}

.announcement-bar a {
    color: var(--brand-500);
}

.announcement-bar a:hover {
    text-decoration: underline;
}

.announcement-bar .pulse-icon {
    animation: pulse 2s infinite;
    color: var(--brand-500);
}

/* WhatsApp Float Pulse */
.whatsapp-float {
    animation: float-pulse 2s infinite;
}

@keyframes float-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); transform: scale(1); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); transform: scale(1.05); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); transform: scale(1); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-wrapper {
    padding-top: var(--nav-height);
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

/* Offset for WordPress Admin Bar */
.admin-bar .main-nav {
    top: 32px;
}
@media screen and (max-width: 782px) {
    .admin-bar .main-nav {
        top: 46px;
    }
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
}

.nav-logo img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

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

.nav-links a {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #4b5563;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.15s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brand-600);
    border-bottom-color: var(--brand-500);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-cta .btn-brand {
    font-size: 0.7rem;
    padding: 10px 24px;
}

/* Mobile Nav Actions */
.mobile-nav-actions {
    display: none;
    gap: 0.75rem;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.menu-toggle:active {
    transform: scale(0.9);
}

.mobile-phone-btn {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    border: 1px solid #e5e7eb;
    transition: transform 0.2s;
}

.mobile-phone-btn:active {
    transform: scale(0.95);
}

.mobile-offer-btn {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-500);
    color: #000;
    padding: 0 24px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.3);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    background: #000;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000, rgba(0,0,0,0.5), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 1rem;
    max-width: 56rem;
    margin: 0 auto;
}

.hero-content .subtitle {
    color: var(--brand-500);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    animation: fadeInUp 0.8s ease;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-content h1 .highlight {
    background: linear-gradient(to right, var(--brand-400), var(--brand-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    color: #d1d5db;
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.features-section {
    padding: 5rem 0;
    background: #18181b;
    color: #fff;
}

.features-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 168, 67, 0.15);
    border-color: rgba(212, 168, 67, 0.3);
}

.feature-card .icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 168, 67, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-500);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.feature-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}

.feature-card p {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ============================================
   CLASSES GRID
   ============================================ */
.classes-section {
    padding: 5rem 0;
    background: #000;
}

.classes-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Classes swiper & custom navigation */
.swiper-nav-custom {
    display: flex;
    gap: 10px;
}

.swiper-nav-custom button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-nav-custom button:hover {
    background: var(--brand-500);
    border-color: var(--brand-500);
    color: #000;
    transform: scale(1.1);
}

.swiper-pagination-bullet-active {
    background: var(--brand-500) !important;
}

.class-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    background: #111;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.class-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.3);
}

.class-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0.8;
}

.class-card:hover img {
    transform: scale(1.1);
    opacity: 0.6;
}

.class-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    z-index: 1;
    opacity: 1;
    transition: background 0.4s ease;
}

.class-card:hover .overlay {
    background: linear-gradient(to top, rgba(212,168,67,0.9) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
    opacity: 1;
}

.class-card .content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.5rem;
    width: 100%;
    z-index: 2;
}

.class-card .class-badges {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    z-index: 2;
}

.class-card .badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.class-card .duration-badge {
    background: var(--brand-500);
    color: #000;
}

.class-card .intensity-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.class-card h4 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.class-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #d1d5db;
    font-size: 0.8rem;
}

.meta-item i {
    color: var(--brand-500);
    font-size: 0.9rem;
}

.trainer-meta {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}

.action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.class-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.class-join-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.class-join-btn:hover {
    color: var(--brand-400);
}

.class-join-btn:hover i {
    transform: translateX(4px);
}


/* ============================================
   TRAINERS GRID
   ============================================ */
.trainers-section {
    padding: 5rem 0;
    background: #0a0a0a;
}

.trainers-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}



.trainer-card {
    background: #18181b;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 0 auto;
    max-width: 300px; /* Constrain width to keep it neat */
}

.trainer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(212, 168, 67, 0.1);
    border-color: rgba(212, 168, 67, 0.3);
}

.trainer-card .image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
    aspect-ratio: 3/4;
    background: #18181b;
}

.trainer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: all 0.5s ease;
}

.trainer-card:hover img {
    filter: grayscale(0);
}

.trainer-card .social-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

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

.trainer-card .social-overlay a {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: background 0.3s;
}

.trainer-card .social-overlay a:hover {
    background: var(--brand-500);
}

.trainer-card .info {
    text-align: center;
}

.trainer-card .info h4 {
    font-size: 1.125rem;
    color: #fff;
}

.trainer-card .info p {
    color: var(--brand-500);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trainer-card .info .trainer-role {
    color: #9ca3af;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 2px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 5rem 0;
    background: var(--brand-600);
    position: relative;
    overflow: hidden;
}

.testimonials-section .deco {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: -80px;
    margin-top: -80px;
    opacity: 0.1;
    font-size: 8rem;
    color: #fff;
}

.testimonials-swiper {
    padding: 1rem 0 3rem;
    overflow: hidden;
}

.testimonials-swiper .swiper-wrapper {
    align-items: stretch;
}

.testimonials-swiper .swiper-slide {
    height: auto;
    width: 260px !important;
    display: flex;
    justify-content: center;
}

.testimonials-pagination {
    margin-top: 1.5rem;
    text-align: center;
}

.testimonials-pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,0.4);
    opacity: 1;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--brand-500);
}

.testimonial-card {
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);
    padding: 0.75rem;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    max-height: 350px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-video-wrap iframe {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: calc(100% + 40px);
}

.testimonial-card:hover {
    border-color: rgba(212, 168, 67, 0.3);
}

.testimonial-card .stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.testimonial-card .stars i {
    color: var(--brand-300);
    font-size: 0.75rem;
}

.testimonial-card .quote {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    opacity: 0.9;
    font-style: italic;
    font-size: 0.9rem;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-card .avatar {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--brand-200);
}

.testimonial-card .author h5 {
    font-size: 0.875rem;
    font-weight: 700;
}

.testimonial-card .author span {
    font-size: 0.7rem;
    color: var(--brand-200);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #000;
}

.gallery-item {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    opacity: 1;
    transform: scale(1.1);
}

.gallery-item .title-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .title-overlay {
    opacity: 1;
}

.gallery-item .title-overlay span {
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 0.875rem;
    padding: 4px 12px;
    border-radius: 4px;
}

/* ============================================
   OFFER BANNER
   ============================================ */
.offer-banner-section {
    background: #111;
    padding: 0 0 2rem;
}

.offer-banner {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(212,168,67,0.15), rgba(212,168,67,0.05));
    border: 1px solid rgba(212,168,67,0.3);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.offer-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,168,67,0.1), transparent 70%);
    pointer-events: none;
}

.offer-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    animation: float-pulse 2s ease-in-out infinite;
}

.offer-text-wrap {
    flex: 1;
    min-width: 200px;
}

.offer-banner-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--brand-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.offer-banner-desc {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.5;
}

.offer-claim-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-500);
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.offer-claim-btn:hover {
    background: var(--brand-400);
    box-shadow: 0 10px 30px rgba(212,168,67,0.3);
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .offer-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    .offer-claim-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.pricing-card.popular {
    border-color: var(--brand-500);
    background: linear-gradient(145deg, #1a1a1f, #111);
    box-shadow: 0 0 40px rgba(212,168,67,0.1);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.offer-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 6px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 10px rgba(239,68,68,0.3);
    z-index: 2;
}

.popular-badge {
    display: inline-block;
    background: var(--brand-500);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.plan-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 2rem;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-500);
}

.plan-price .amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.plan-price .duration {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #d1d5db;
    font-size: 0.9rem;
}

.plan-features li i {
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.plan-features li:not(.disabled) i {
    background: rgba(34,197,94,0.15);
    color: #22c55e;
}

.plan-features li.disabled {
    color: #4b5563;
}

.plan-features li.disabled i {
    background: rgba(239,68,68,0.1);
    color: #ef4444;
}

.plan-cta {
    display: inline-block;
    width: 100%;
    padding: 14px 20px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-align: center;
}

.plan-cta:hover {
    border-color: var(--brand-500);
    color: var(--brand-500);
    background: rgba(212,168,67,0.05);
}

.plan-cta.popular-cta {
    background: var(--brand-500);
    color: #000;
    border-color: var(--brand-500);
}

.plan-cta.popular-cta:hover {
    background: var(--brand-400);
    border-color: var(--brand-400);
    box-shadow: 0 10px 30px rgba(212,168,67,0.3);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 5rem 1rem;
    background: #18181b;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: #9ca3af;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    font-size: 1.125rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #f9fafb;
    border-top: 4px solid var(--brand-500);
    color: #374151;
    padding: 4rem 0 2rem;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--brand-500);
    color: #000;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--brand-600);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul li a {
    font-size: 0.875rem;
    color: #6b7280;
    transition: color 0.3s;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.footer-contact li i {
    color: var(--brand-500);
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
}

.footer-newsletter input {
    width: 100%;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.footer-newsletter input:focus {
    outline: none;
    border-color: var(--brand-500);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.2);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1rem 0;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #6b7280;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom a {
    color: #6b7280;
}

.footer-bottom a:hover {
    color: var(--brand-500);
}

.footer-credits {
    font-size: 0.625rem;
    color: #6b7280;
}

.footer-credits span {
    color: var(--brand-600);
    font-weight: 700;
}

/* ============================================
   BOTTOM MOBILE NAV
   ============================================ */
.bottom-mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid #e5e7eb;
    justify-content: space-around;
    padding: 12px 0;
    z-index: 50;
    font-size: 0.625rem;
    color: #6b7280;
}

.bottom-mobile-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    color: #6b7280;
    transition: color 0.2s;
}

.bottom-mobile-nav a i {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.bottom-mobile-nav a.active {
    color: var(--brand-600);
    font-weight: 700;
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 96px;
    right: 24px;
    z-index: 60;
    display: flex;
    align-items: center;
}

.whatsapp-float .tooltip {
    margin-right: 12px;
    background: #fff;
    color: #1f2937;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 0.3s;
    display: none;
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
}

.whatsapp-float .wa-btn {
    background: #25D366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s;
    position: relative;
}

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

.whatsapp-float .wa-btn i {
    font-size: 1.75rem;
}

.whatsapp-float .ping {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
}

.whatsapp-float .ping .ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4ade80;
    animation: ping 1.5s infinite;
    opacity: 0.75;
}

.whatsapp-float .ping .dot {
    position: relative;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid #fff;
}

/* ============================================
   EXIT INTENT POPUP
   ============================================ */
.exit-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(4px);
}

.exit-modal.show {
    display: flex;
}

.exit-modal-content {
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    max-width: 32rem;
    width: 100%;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    position: relative;
    border: 2px solid rgba(212, 168, 67, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s;
}

.exit-modal.show .exit-modal-content {
    transform: scale(1);
}

.exit-modal .close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    color: #9ca3af;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    z-index: 5;
    transition: color 0.3s;
}

.exit-modal .close-btn:hover {
    color: var(--brand-500);
}

.exit-modal .modal-image {
    position: relative;
    height: 192px;
}

.exit-modal .modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exit-modal .modal-image .gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000, rgba(0,0,0,0.2), transparent);
}

.exit-modal .modal-image .text {
    position: absolute;
    bottom: 16px;
    left: 24px;
}

.exit-modal .modal-image .text .tag {
    display: inline-block;
    background: var(--brand-500);
    color: #000;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 2px 8px;
    border-radius: 4px;
}

.exit-modal .modal-image .text h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-top: 4px;
}

.exit-modal .modal-body {
    padding: 2rem;
    text-align: center;
}

.exit-modal .modal-body p {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.exit-modal .modal-body .highlight {
    color: var(--brand-600);
    font-weight: 700;
}

.exit-modal .modal-body form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.exit-modal .modal-body input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    background: #f9fafb;
    border: none;
    font-size: 0.875rem;
    font-family: var(--font-primary);
}

.exit-modal .modal-body input:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--brand-500);
}

.exit-modal .modal-body .fine-print {
    margin-top: 1rem;
    font-size: 0.625rem;
    color: #9ca3af;
    font-style: italic;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-form-container {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 2rem;
}

.contact-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 4px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: var(--font-primary);
    background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.contact-submit {
    width: 100%;
    background: #7c3aed;
    color: #fff;
    font-weight: 700;
    padding: 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: background 0.3s;
}

.contact-submit:hover {
    background: #6d28d9;
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
}

.blog-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.blog-card .thumb {
    height: 192px;
    overflow: hidden;
}

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

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

.blog-card .card-body {
    padding: 1.5rem;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.blog-card h3 a {
    color: #111827;
    transition: color 0.3s;
}

.blog-card h3 a::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.blog-card p {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.blog-card .read-more {
    color: #7c3aed;
    font-weight: 600;
    font-size: 0.875rem;
    position: relative;
    z-index: 2;
}

/* ============================================
   PAGE HERO (for inner pages)
   ============================================ */
.page-hero {
    background: #111827;
    padding: 3rem 1rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.page-hero p {
    color: #9ca3af;
    max-width: 42rem;
    margin: 0 auto;
}

/* ============================================
   ABOUT PAGE sections
   ============================================ */
.about-mission {
    padding: 5rem 0;
    background: #18181b;
    color: #fff;
}

.about-stats {
    padding: 4rem 0;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stats-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item .value {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-item .label {
    color: var(--brand-500);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ============================================
   FORM FIELDS GRID
   ============================================ */
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-spacing {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ============================================
   PAGE SPECIFIC GRIDS
   ============================================ */
.blog-grid, .about-team-grid, .classes-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* ============================================
   SUCCESS MESSAGE
   ============================================ */
.success-message {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ============================================
   CONTENT CONTAINER
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    list-style: none;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s;
}

.pagination a {
    background: #f3f4f6;
    color: #374151;
}

.pagination a:hover {
    background: var(--brand-500);
    color: #000;
}

.pagination .current {
    background: var(--brand-600);
    color: #fff;
}

/* ============================================
   MAP
   ============================================ */
.map-container {
    border-radius: 1rem;
    overflow: hidden;
    height: 320px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 0.75;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes bounceSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.animate-bounce-slow {
    animation: bounceSlow 3s ease infinite;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .trainers-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid, .about-team-grid, .classes-listing-grid { grid-template-columns: repeat(2, 1fr); }
    .about-mission-grid { gap: 2rem; }
}

@media (max-width: 768px) {
    .testimonials-section { padding: 2.5rem 0; }
    .testimonials-swiper .swiper-slide { width: 200px !important; }
    .testimonial-card { padding: 0.5rem; }
    .testimonial-video-wrap { max-height: 250px; }
    .testimonial-card .quote { font-size: 0.7rem; margin-bottom: 0.5rem; line-height: 1.4; }
    .testimonial-card .author h5 { font-size: 0.75rem; }
    .testimonial-card .author span { font-size: 0.6rem; }
    .testimonial-card .avatar { width: 28px; height: 28px; font-size: 0.65rem; }
    .hero-content h1 { font-size: 2.25rem; }
    .classes-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .trainers-grid { grid-template-columns: repeat(2, 1fr); }
    .section-title { font-size: 1.5rem; }
    .cta-section h2 { font-size: 1.75rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .form-grid-2 { grid-template-columns: 1fr; }
    .tools-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; display: flex; flex-direction: column; }
    .blog-grid, .about-team-grid, .classes-listing-grid { grid-template-columns: 1fr; }
    .about-mission-grid { grid-template-columns: 1fr; text-align: center; }
    .page-hero h1 { font-size: 1.75rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
    /* Header layout changes */
    .nav-container { padding: 0 1rem; }
    .nav-logo { z-index: 60; position: relative; }
    .nav-logo span { font-size: 1.15rem !important; letter-spacing: 0 !important; }
    
    /* Hide desktop items, show mobile toggle */
    .nav-cta { display: none; }
    .mobile-nav-actions { display: flex; align-items: center; gap: 8px; z-index: 60; position: relative; }
    .menu-toggle { display: flex; }
    
    /* Mobile Dropdown Menu */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0 !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        border-bottom: 2px solid var(--brand-500);
        /* Hide by default, slide down on open */
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease-in-out;
    }
    
    .nav-links.is-open {
        max-height: 400px; /* Large enough to fit links */
        visibility: visible;
        opacity: 1;
        padding: 1rem 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    
    .nav-links.is-open li {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Staggered animation for links */
    .nav-links.is-open li:nth-child(1) { transition-delay: 0.05s; }
    .nav-links.is-open li:nth-child(2) { transition-delay: 0.1s; }
    .nav-links.is-open li:nth-child(3) { transition-delay: 0.15s; }
    .nav-links.is-open li:nth-child(4) { transition-delay: 0.2s; }
    .nav-links.is-open li:nth-child(5) { transition-delay: 0.25s; }
    .nav-links.is-open li:nth-child(6) { transition-delay: 0.3s; }
    
    .nav-links a {
        display: block;
        padding: 1rem;
        font-size: 1rem;
        border-bottom: 1px solid #f3f4f6;
    }
    
    .nav-links a.active, .nav-links a:hover {
        background: #f9fafb;
        color: var(--brand-600);
        border-bottom-color: #f3f4f6;
    }

    /* Mobile Buttons */
    .mobile-phone-btn { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: #f3f4f6; border-radius: 50%; color: #111; }
    .mobile-phone-btn i { font-size: 0.8rem; }
    .mobile-offer-btn { background: var(--brand-500); color: #000; font-weight: 800; font-size: 0.65rem; padding: 0 12px; height: 36px; border-radius: 20px; text-transform: uppercase; white-space: nowrap; line-height: 36px; }
    
    .bottom-mobile-nav { display: flex; }
    .site-footer { padding-bottom: 6rem; }
    .whatsapp-float { bottom: 96px; right: 16px; }
    .whatsapp-float .tooltip { display: none; }
    .trainers-grid, .gallery-grid, .stats-grid { grid-template-columns: 1fr; }
}

@media (min-width: 641px) {
    .hero-buttons {
        flex-direction: row;
    }
    .whatsapp-float .tooltip {
        display: block;
    }
    .whatsapp-float {
        bottom: 40px;
        right: 40px;
    }
}

/* ============================================
   CLASSES LISTING (inner page)
   ============================================ */
.class-listing-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.class-listing-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.class-listing-card .image-wrap {
    height: 192px;
    overflow: hidden;
    position: relative;
}

.class-listing-card .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.class-listing-card:hover .image-wrap img {
    transform: scale(1.1);
}

.class-listing-card .duration-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #facc15;
    color: #111827;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.class-listing-card .card-body {
    padding: 1.5rem;
}

.class-listing-card h3 {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.class-listing-card p {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.class-listing-card .meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #6b7280;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.class-listing-card .meta i {
    margin-right: 4px;
}

.class-listing-card .meta .schedule i { color: #8b5cf6; }
.class-listing-card .meta .intensity i { color: #ef4444; }

/* ============================================
   CONTACT INFO CARDS
   ============================================ */
.contact-info-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item i {
    color: #7c3aed;
    font-size: 1.25rem;
    margin-top: 2px;
    width: 32px;
    flex-shrink: 0;
}

.contact-info-item h3 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}

.contact-info-item p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* ============================================
   SPECIAL OFFER LANDING PAGE (FUNNEL)
   ============================================ */
body.landing-page-body {
    background: #000;
    color: #fff;
}

.landing-logo {
    height: 60px;
    margin: 0 auto 2rem;
}

/* Hero Section */
.landing-hero {
    position: relative;
    padding: 6rem 1rem 8rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    background-color: #111;
}

.landing-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.6) 0%, #000 100%);
    z-index: 1;
}

.landing-headline {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.landing-subhead {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--brand-200);
    max-width: 800px;
    margin: 0 auto 3rem;
    font-weight: 500;
}

/* Countdown Timer */
.landing-countdown {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 0 auto 2rem;
    max-width: 500px;
}

.time-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,168,67,0.3);
    border-radius: 12px;
    padding: 1rem;
    min-width: 90px;
    backdrop-filter: blur(10px);
}

.time-box .time-val {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--brand-500);
    line-height: 1;
}

.time-box .time-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ca3af;
    margin-top: 0.5rem;
}

/* Value Stack */
.landing-value-stack {
    background: #111;
    padding: 6rem 1rem;
}

.value-card {
    background: #18181b;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.value-features {
    list-style: none;
    text-align: left;
    margin: 0 auto 3rem;
    max-width: 500px;
    font-size: 1.2rem;
}

.value-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(0,0,0,0.3);
    border-radius: 16px;
}

.price-comparison div {
    display: flex;
    flex-direction: column;
}

.price-comparison span {
    font-size: 0.9rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.price-comparison del {
    font-size: 2rem;
    color: #ef4444;
    font-weight: 700;
}

.price-comparison .text-brand {
    font-size: 4rem;
    color: var(--brand-500);
    line-height: 1;
}

/* Landing Benefits */
.landing-benefits {
    padding: 6rem 1rem;
    background: #000;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Landing FAQ */
.landing-faq {
    padding: 6rem 1rem;
    background: #111;
}

.faq-item {
    background: #18181b;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255,255,255,0.02);
}

.faq-question i {
    color: var(--brand-500);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 1.5rem;
    color: #9ca3af;
    line-height: 1.6;
}

/* CTAs & Helpers */
.landing-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--brand-400), var(--brand-600));
    color: #000;
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 20px 48px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(212,168,67,0.3);
    transition: all 0.3s ease;
}

.landing-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212,168,67,0.5);
    color: #000;
}

.pulse-anim {
    animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
    0% { box-shadow: 0 0 0 0 rgba(212,168,67,0.7); }
    70% { box-shadow: 0 0 0 20px rgba(212,168,67,0); }
    100% { box-shadow: 0 0 0 0 rgba(212,168,67,0); }
}

.spots-left {
    margin-top: 1rem;
    color: #ef4444;
    font-weight: 700;
    font-size: 1.1rem;
}

.landing-floating-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    padding: 15px;
    z-index: 100;
    border-top: 1px solid rgba(212,168,67,0.3);
}

@media (max-width: 768px) {
    .landing-floating-cta { display: block; }
    .landing-countdown { gap: 0.5rem; }
    .time-box { min-width: 70px; padding: 0.75rem; }
    .time-box .time-val { font-size: 2rem; }
    .landing-cta-btn { font-size: 1rem; padding: 16px 32px; width: 100%; }
}
/* Blog Layout with Sidebar */
.blog-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1rem;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

.blog-main-content {
    min-width: 0;
}

.blog-sidebar-wrapper {
    position: sticky;
    top: 100px;
}

/* Sidebar Widgets */
.sidebar-area .widget {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

.sidebar-area .widget-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--brand-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Search Widget */
.widget_search .search-form {
    display: flex;
    gap: 0.5rem;
}

.widget_search .search-field {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.widget_search .search-field:focus {
    border-color: var(--brand-500);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212,168,67,0.2);
}

.widget_search .search-submit {
    background: var(--brand-600);
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
}

.widget_search .search-submit:hover {
    background: var(--brand-500);
}

/* List Widgets (Categories, Recent Posts) */
.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget ul li a {
    color: #4b5563;
    font-weight: 500;
    transition: all 0.2s;
    display: block;
}

.widget ul li a:hover {
    color: var(--brand-600);
    transform: translateX(5px);
}

/* Newsletter Widget */
.widget_newsletter p {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.widget_newsletter input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.widget_newsletter input[type="email"]:focus {
    border-color: var(--brand-500);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212,168,67,0.2);
}

/* Responsive Blog Container */
@media (max-width: 1024px) {
    .blog-container {
        grid-template-columns: 1fr;
    }
    .blog-sidebar-wrapper {
        position: relative;
        top: 0;
    }
}
