/* ===== PAGE LOADER ===== */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #060d1f;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

#page-loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.loading { overflow: hidden; }

/* ---- Background orbs ---- */
.loader-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.loader-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0;
    animation: orbPulse 4s ease-in-out infinite;
}
.loader-orb.orb-1 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, #2563eb 0%, transparent 70%);
    top: -120px; left: -100px;
    animation-delay: 0s;
}
.loader-orb.orb-2 {
    width: 320px; height: 320px;
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
    bottom: -80px; right: -80px;
    animation-delay: 1.5s;
}
.loader-orb.orb-3 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, #60a5fa 0%, transparent 70%);
    top: 50%; left: 55%;
    animation-delay: 0.8s;
}
@keyframes orbPulse {
    0%, 100% { opacity: 0.18; transform: scale(1); }
    50%       { opacity: 0.35; transform: scale(1.15); }
}

/* ---- Center content ---- */
.loader-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

/* ---- Logo + SVG ring ---- */
.loader-logo-wrap {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.loader-ring-track {
    fill: rgba(255,255,255,0.08);
    stroke: rgba(255,255,255,0.1);
    stroke-width: 4;
}

.loader-ring-fill {
    fill: none;
    stroke: url(#loaderGrad);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 339.3;
    stroke-dashoffset: 339.3;
    animation: ringDraw 2.2s cubic-bezier(0.4,0,0.2,1) forwards,
               ringGlow  2.2s ease forwards;
}

@keyframes ringDraw {
    0%   { stroke-dashoffset: 339.3; }
    100% { stroke-dashoffset: 0; }
}
@keyframes ringGlow {
    0%   { filter: drop-shadow(0 0 0px #3b82f6); }
    100% { filter: drop-shadow(0 0 10px #3b82f6); }
}

/* White filled circle behind logo */
.loader-logo-wrap::before {
    content: '';
    position: absolute;
    width: 185px;
    height: 185px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 30px rgba(59,130,246,0.4), 0 0 60px rgba(59,130,246,0.15);
    animation: logoBgPulse 2s ease-in-out infinite;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@keyframes logoBgPulse {
    0%, 100% { transform: translate(-50%,-50%) scale(1);    box-shadow: 0 0 20px rgba(59,130,246,0.3); }
    50%       { transform: translate(-50%,-50%) scale(1.04); box-shadow: 0 0 40px rgba(59,130,246,0.5); }
}

.loader-logo {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoFloat 2.5s ease-in-out infinite;
}
.loader-logo img {
    height: 140px;
    width: 140px;
    object-fit: contain;
    display: block;
}
@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-5px); }
}

/* ---- Brand name ---- */
.loader-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    animation: fadeSlideUp 0.6s ease 0.3s both;
}
.loader-brand-flex {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #ffffff;
    line-height: 1;
}
.loader-brand-sub {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

/* ---- Hero headline ---- */
.loader-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    animation: fadeSlideUp 0.6s ease 0.5s both;
}
.loader-hl-main {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #3b82f6;
    line-height: 1;
}
.loader-hl-sub {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.5);
}

/* ---- Animated dots row ---- */
.loader-dots-row {
    display: flex;
    gap: 8px;
    animation: fadeSlideUp 0.6s ease 0.7s both;
}
.loader-dots-row span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3b82f6;
    animation: dotBounce 1.2s ease-in-out infinite;
}
.loader-dots-row span:nth-child(1) { animation-delay: 0s;    background: #1d4ed8; }
.loader-dots-row span:nth-child(2) { animation-delay: 0.15s; background: #2563eb; }
.loader-dots-row span:nth-child(3) { animation-delay: 0.3s;  background: #3b82f6; }
.loader-dots-row span:nth-child(4) { animation-delay: 0.45s; background: #60a5fa; }
.loader-dots-row span:nth-child(5) { animation-delay: 0.6s;  background: #93c5fd; }

@keyframes dotBounce {
    0%, 80%, 100% { transform: scaleY(1);   opacity: 0.5; }
    40%            { transform: scaleY(1.8); opacity: 1; }
}

/* ---- Shared fade-up entry ---- */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* ===== END LOADER ===== */

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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --dark-color: #0f172a;
    --navy-dark: #1e293b;
    --light-color: #f8fafc;
    --white: #ffffff;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --blue-bright: #3b82f6;
    --blue-light: #60a5fa;
    --gradient-1: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-2: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    --gradient-3: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

/* Base Mobile-First Adjustments */
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

.hero .container {
    overflow: visible;
}

* {
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    min-height: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--blue-bright);
    position: relative;
    padding: 0.5rem 1rem;
}

.logo::before {
    display: none;
}

.logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.logo i {
    font-size: 1.8rem;
}

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

.nav-menu::before {
    display: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
    text-shadow: none;
    position: relative;
    padding-bottom: 5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-light);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.8);
}

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

.nav-menu a.active::after {
    width: 100%;
    background: var(--blue-light);
    box-shadow: 0 0 15px rgba(96, 165, 250, 1);
}

.nav-menu a:hover {
    color: var(--blue-light);
    text-shadow: none;
}

.btn-nav {
    background: rgba(59, 130, 246, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: none;
}

.btn-nav::after {
    display: none !important;
}

.btn-nav:hover {
    background: rgba(37, 99, 235, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.btn-nav-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border: 2px solid rgba(59, 130, 246, 0.6);
    border-radius: 25px;
    transition: var(--transition);
    text-shadow: none;
}

.btn-nav-secondary::after {
    display: none !important;
}

.btn-nav-secondary:hover {
    background: rgba(59, 130, 246, 0.9);
    color: var(--white) !important;
    border-color: rgba(59, 130, 246, 1);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.6) 50%, rgba(51, 65, 85, 0.6) 100%),
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    overflow: visible;
    z-index: 1;
    padding: 120px 0 40px;
    width: 100%;
    max-width: 100vw;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.2);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    line-height: 1.2;
    word-wrap: break-word;
}

.title-line {
    display: block;
}

.title-line:last-child {
    color: var(--blue-bright);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 100%;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    min-height: 48px;
    touch-action: manipulation;
    max-width: 100%;
}

.btn-primary {
    background: var(--blue-bright);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--blue-bright);
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

/* Stats Section */
.stats {
    background: #0f172a;
    color: var(--white);
    padding: clamp(3rem, 6vw, 4rem) 0;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--blue-bright);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: clamp(1rem, 2vw, 1.2rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* Section Styles */
section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

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

.section-tag {
    display: inline-block;
    color: var(--blue-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* About Section */
.about {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.85)),
                url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 5;
}

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

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-image {
    position: relative;
}

.image-placeholder {
    background: var(--gradient-2);
    border-radius: 20px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

/* Gyms Section */
.gyms {
    background: linear-gradient(rgba(15, 23, 42, 0.80), rgba(30, 41, 59, 0.80)),
                url('https://images.unsplash.com/photo-1540497077202-7c8a3999166f?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 5;
}

.gyms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gym-card {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.gym-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

/* Gym Card Images */
.gym-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.gym-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--blue-bright);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.gym-info {
    padding: 1.5rem;
}

.gym-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.gym-location {
    color: var(--blue-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.gym-location i {
    color: var(--blue-light);
}

.gym-description {
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Trainers Section */
.trainers {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.85)),
                url('https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 5;
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trainer-card {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.trainer-card:hover {
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
    border-color: rgba(59, 130, 246, 0.6);
}

/* Trainer Images */
.trainer-image {
    position: relative;
    margin-bottom: 1.5rem;
}

.trainer-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.trainer-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.trainer-specialty {
    color: var(--blue-light);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.trainer-location {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.trainer-rating {
    color: #ffc107;
    margin-bottom: 1.5rem;
}

/* Problem Solution Section */
.problem-solution {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.85)),
                url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 5;
}

.tabs {
    max-width: 900px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 1rem 2rem;
    background: var(--white);
    border: 2px solid var(--blue-bright);
    color: var(--blue-bright);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-button.active,
.tab-button:hover {
    background: var(--blue-bright);
    color: var(--white);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.comparison-item {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.comparison-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--white);
}

.old-way h3 {
    color: #e74c3c;
}

.new-way h3 {
    color: #27ae60;
}

.comparison-item ul {
    list-style: none;
}

.comparison-item li {
    padding: 0.8rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-weight: 500;
}

.comparison-item li:last-child {
    border-bottom: none;
}

.comparison-item i {
    margin-top: 0.2rem;
    font-size: 1.2rem;
}

.old-way .fa-times {
    color: #e74c3c;
}

.new-way .fa-check {
    color: #27ae60;
}

/* Features Section */
.features {
    background: linear-gradient(rgba(15, 23, 42, 0.80), rgba(30, 41, 59, 0.80)),
                url('https://images.unsplash.com/photo-1623874514711-0f321325f318?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-card p {
    color: var(--white);
    line-height: 1.6;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.85)),
                url('https://images.unsplash.com/photo-1599058917212-d750089bc07e?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    position: relative;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 100px;
    color: rgba(59, 130, 246, 0.2);
    font-family: Georgia, serif;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
    border-color: rgba(59, 130, 246, 0.5);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--white);
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--blue-light);
    font-weight: 500;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--white);
    line-height: 1.8;
    font-style: italic;
    font-weight: 500;
}

/* YouTube Shorts Section */
.shorts-section {
    background: linear-gradient(rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.92)),
                url('https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 5;
}

.shorts-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.shorts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.short-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    background: #000;
}

.short-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.4);
    border-color: rgba(59, 130, 246, 0.6);
}

.short-frame {
    position: relative;
    width: 100%;
    /* 9:16 aspect ratio for Shorts */
    padding-bottom: 177.78%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
}

.short-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

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

.shorts-channel .btn {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    gap: 0.8rem;
}

.shorts-channel .btn:hover {
    background: linear-gradient(135deg, #cc0000, #990000);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

.shorts-channel .btn i {
    font-size: 1.4rem;
}

/* Shorts Mobile */
@media (max-width: 968px) {
    .shorts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .short-card:last-child {
        grid-column: 1 / -1;
        max-width: 360px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .shorts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 320px;
        margin: 0 auto 2rem;
    }

    .short-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .shorts-subtitle {
        font-size: 1rem;
    }

    .shorts-channel .btn {
        width: 100%;
        justify-content: center;
    }
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(30, 64, 175, 0.7)),
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
    position: relative;
    z-index: 5;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    background: linear-gradient(rgba(15, 23, 42, 0.80), rgba(30, 41, 59, 0.80)),
                url('https://images.unsplash.com/photo-1556817411-31ae72fa3ea0?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 5;
}

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

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--blue-light);
    margin-top: 0.3rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact-item p {
    color: var(--white);
    line-height: 1.6;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--blue-bright);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

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

.contact-form {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(59, 130, 246, 0.3);
    background: rgba(30, 41, 59, 0.5);
    color: var(--white);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-bright);
    background: rgba(30, 41, 59, 0.7);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: #0f172a;
    color: var(--white);
    padding: 4rem 0 2rem;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--blue-bright);
    margin-bottom: 1rem;
    position: relative;
    padding: 0.5rem 1rem;
    width: fit-content;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 140%;
    background: radial-gradient(ellipse at center, 
                rgba(255, 255, 255, 0.3) 0%, 
                rgba(255, 255, 255, 0.15) 40%, 
                transparent 70%);
    filter: blur(15px);
    z-index: -1;
    opacity: 0.9;
}

.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--blue-bright);
    padding-left: 5px;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
}

.app-button:hover {
    background: var(--blue-bright);
    transform: translateX(5px);
}

.app-button i {
    font-size: 2rem;
}

.app-button small {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
}

.app-button strong {
    display: block;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: var(--blue-bright);
    color: var(--white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--blue-bright);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Mobile Phone Mockup - Hidden on Desktop */
.hero-mobile-mockup {
    display: none;
}

.mobile-phone-frame {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    border-radius: 35px;
    padding: 6px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px #ff6b35,
        0 0 15px rgba(255, 107, 53, 0.4);
    margin: 0 auto;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: #000;
}

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

.phone-notch {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 22px;
    background: #0f172a;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

.mobile-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #0f172a;
    animation: floatCard 4s ease-in-out infinite;
}

.mobile-floating-card i {
    font-size: 1.2rem;
    color: #3b82f6;
}

.card-mobile-1 {
    top: 20%;
    right: -15%;
    animation-delay: 0s;
}

.card-mobile-2 {
    top: 60%;
    left: -15%;
    animation-delay: 2s;
}

/* Responsive Design */
@media (max-width: 968px) {
    /* White navbar on mobile */
    .navbar {
        background: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-bottom: 1px solid #e2e8f0 !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
    }

    .hamburger {
        display: flex;
    }

    /* Hamburger lines dark on white bg */
    .hamburger span {
        background: #0f172a;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 40px;
        flex-direction: column;
        background: #ffffff;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        padding: 2rem 0;
        border-top: 1px solid #e2e8f0;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Nav links dark on white bg */
    .nav-menu li a {
        color: #0f172a !important;
    }
    .nav-menu li a:hover {
        color: #2563eb !important;
    }

    /* Hero Section Mobile */
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        display: none;
    }

    /* Show Mobile Mockup on Mobile */
    .hero-mobile-mockup {
        display: block;
        position: relative;
        margin: 3rem auto 2rem;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Position scroll indicator below mobile mockup */
    .scroll-down-indicator {
        margin-top: 2rem;
    }

    /* Stats Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    /* About Mobile */
    .about-content,
    .contact-grid,
    .comparison {
        grid-template-columns: 1fr;
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Gyms Grid Mobile */
    .gyms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Trainers Grid Mobile */
    .trainers-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    /* Features Grid Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Scroll Down Indicator */
    .scroll-down-indicator {
        margin-top: 2rem;
    }

    /* Tab Buttons Mobile */
    .tab-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .tab-button {
        width: 100%;
    }

    /* CTA Buttons Mobile */
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Contact Form Mobile */
    .contact-grid {
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    /* Container Padding */
    .container {
        padding: 0 15px;
    }

    /* Hero Mobile Small */
    .hero {
        min-height: 80vh;
        padding: 100px 0 2rem;
        background-attachment: scroll;
    }

    .hero-title {
        margin-top: 1.5rem;
    }

    /* Disable parallax on ALL sections on mobile - fixes scroll jitter */
    *,
    section,
    .hero,
    .about,
    .gyms,
    .trainers,
    .problem-solution,
    .features,
    .testimonials,
    .cta,
    .contact,
    .stats,
    .footer {
        background-attachment: scroll !important;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    /* Mobile Phone Mockup - Smaller */
    .mobile-phone-frame {
        width: 240px;
        height: 480px;
        border-radius: 30px;
        padding: 5px;
    }

    .phone-screen {
        border-radius: 25px;
    }

    .phone-notch {
        width: 80px;
        height: 20px;
        top: 12px;
    }

    .mobile-floating-card {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .mobile-floating-card i {
        font-size: 1.1rem;
    }

    .card-mobile-1 {
        right: -10%;
    }

    .card-mobile-2 {
        left: -10%;
    }

    /* Stats Mobile Small */
    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Section Padding */
    section {
        padding: 3rem 0;
    }

    /* Section Titles Small */
    .section-title {
        font-size: 1.8rem;
    }

    .section-tag {
        font-size: 0.8rem;
    }

    /* About Text */
    .about-text p {
        font-size: 1rem;
    }

    /* Gym Cards Mobile */
    .gym-card {
        margin-bottom: 1rem;
    }

    .gym-info {
        padding: 1.2rem;
    }

    .gym-info h3 {
        font-size: 1.2rem;
    }

    /* Trainer Cards Mobile */
    .trainers-grid {
        grid-template-columns: 1fr;
    }

    .trainer-image {
        width: 120px;
        height: 120px;
    }

    .trainer-info h3 {
        font-size: 1.2rem;
    }

    /* Feature Cards Mobile */
    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    /* Testimonial Cards Mobile */
    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    /* CTA Section Mobile */
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    /* Contact Section Mobile */
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-item i {
        font-size: 1.2rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
    }

    .footer-col {
        text-align: center;
        width: 100%;
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-col:last-child {
        border-bottom: none;
    }

    /* Logo col */
    .footer-logo {
        margin: 0 auto 1rem;
    }

    .footer-col > p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        color: rgba(255, 255, 255, 0.8);
    }

    /* App Buttons */
    .app-buttons {
        align-items: center;
        width: 100%;
        gap: 0.8rem;
    }

    .app-button {
        width: 100%;
        max-width: 260px;
        justify-content: center;
        padding: 0.8rem 1.2rem;
        border-radius: 12px;
    }

    .app-button i {
        font-size: 1.6rem;
    }

    /* Quick Links & Legal */
    .footer-col h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: var(--white);
        position: relative;
        display: inline-block;
    }

    .footer-col h4::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
        background: var(--blue-bright);
        border-radius: 2px;
    }

    .footer-col ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1.5rem;
    }

    .footer-col ul li {
        margin-bottom: 0;
    }

    .footer-col ul li a {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.75);
    }

    /* Social Links */
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem;
        margin-top: 1.2rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: row;
        max-width: 320px;
        margin: 0 auto;
    }

    .newsletter-form input {
        font-size: 0.9rem;
        padding: 0.7rem;
    }

    .newsletter-form button {
        padding: 0.7rem 1rem;
        flex-shrink: 0;
    }

    /* Footer Bottom */
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }

    /* Scroll Top Button */
    .scroll-top {
        width: 42px;
        height: 42px;
        bottom: 20px;
        right: 15px;
        font-size: 1rem;
    }

    /* Tab Content Mobile */
    .comparison {
        gap: 1.5rem;
    }

    .comparison-item {
        padding: 1.5rem;
    }

    .comparison-item h3 {
        font-size: 1.3rem;
    }

    /* Scroll Down Indicator Mobile */
    .scroll-arrow {
        width: 25px;
        height: 25px;
    }

    .scroll-text {
        font-size: 0.8rem;
    }

    /* Navigation Mobile */
    .logo {
        font-size: 1.3rem;
        padding: 0.4rem 0.8rem;
    }

    .logo img {
        height: 50px;
    }

    .nav-wrapper {
        padding: 1rem 0;
        min-height: 70px;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .nav-menu {
        top: 60px;
    }

    .nav-wrapper {
        padding: 0.8rem 0;
        min-height: 65px;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .trainer-image {
        width: 100px;
        height: 100px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    /* Mobile Phone Mockup - Extra Small */
    .mobile-phone-frame {
        width: 200px;
        height: 400px;
        border-radius: 25px;
        padding: 4px;
    }

    .phone-screen {
        border-radius: 22px;
    }

    .phone-notch {
        width: 70px;
        height: 18px;
        top: 10px;
    }

    .mobile-floating-card {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }

    .mobile-floating-card i {
        font-size: 1rem;
    }

    .card-mobile-1,
    .card-mobile-2 {
        display: none; /* Hide floating cards on very small screens */
    }
}

/* ===== ACCESSIBILITY: Screen-reader only utility ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
