/* ==========================================
   IRONFORGE - Gym Website
   Bold, Energetic, Powerful Design
   ========================================== */

:root {
    /* Colors - Electric & Powerful */
    --primary: #00f0ff;
    --primary-dark: #00c4cc;
    --secondary: #ff3e3e;
    --accent: #ffe600;
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --dark-card: #141414;
    --gray: #666;
    --gray-light: #888;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00f0ff 0%, #00c4cc 100%);
    --gradient-fire: linear-gradient(135deg, #ff3e3e 0%, #ff6b35 100%);
    --gradient-electric: linear-gradient(90deg, #00f0ff, #ff3e3e, #ffe600);
    
    /* Typography */
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;
    
    /* Effects */
    --transition: 0.3s ease;
    --glow: 0 0 30px rgba(0, 240, 255, 0.5);
    --glow-red: 0 0 30px rgba(255, 62, 62, 0.5);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* Selection */
::selection {
    background: var(--primary);
    color: var(--dark);
}

/* ==========================================
   PRELOADER
   ========================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.loader-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 4px solid;
    border-radius: 50%;
    animation: loader-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: var(--primary) transparent transparent transparent;
}

.loader-ring div:nth-child(1) { animation-delay: -0.45s; }
.loader-ring div:nth-child(2) { animation-delay: -0.3s; }
.loader-ring div:nth-child(3) { animation-delay: -0.15s; }

@keyframes loader-ring {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.preloader p {
    color: var(--gray-light);
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-top: 20px;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3 {
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

.section-title {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1;
    margin-bottom: 20px;
}

.text-gradient {
    background: var(--gradient-electric);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 3s linear infinite;
}

@keyframes gradient-flow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    padding-left: 50px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 2px;
    background: var(--primary);
}

/* ==========================================
   LAYOUT
   ========================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header p {
    color: var(--gray-light);
    font-size: 1.1rem;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-decoration: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark);
}

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

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--dark);
}

.btn-ghost {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.2);
}

.btn-lg {
    padding: 20px 48px;
    font-size: 1.2rem;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: 3px;
}

.logo-icon {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--dark-light);
    z-index: 999;
    padding: 100px 40px;
    transition: right var(--transition);
}

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

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.7) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: fade-in 0.8s ease;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 62, 62, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(255, 62, 62, 0); }
}

.hero-title {
    margin-bottom: 25px;
}

.hero-title .line {
    display: block;
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.9;
    animation: slide-up 0.8s ease forwards;
    opacity: 0;
}

.hero-title .line-1 {
    color: var(--white);
    animation-delay: 0.2s;
}

.hero-title .line-2 {
    background: var(--gradient-electric);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-delay: 0.4s;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fade-in 0.8s ease 0.6s forwards;
    opacity: 0;
}

@keyframes fade-in {
    to { opacity: 1; }
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fade-in 0.8s ease 0.8s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    animation: fade-in 0.8s ease 1s forwards;
    opacity: 0;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary);
}

.hero-stats .stat-label {
    font-size: 0.85rem;
    color: var(--gray-light);
    letter-spacing: 1px;
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--gray-light);
    font-size: 0.75rem;
    letter-spacing: 3px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 1; height: 60px; }
}

/* Hero Shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: -100px;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    transform: rotate(45deg);
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 15%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 62, 62, 0.1), transparent);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    background: var(--dark-light);
}

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

.about-content p {
    color: var(--gray-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.feature {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--dark-card);
    border-left: 3px solid var(--primary);
    transition: all var(--transition);
}

.feature:hover {
    transform: translateX(10px);
    box-shadow: var(--glow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary);
    stroke-width: 1.5;
    fill: none;
}

.feature h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.feature p {
    font-size: 0.9rem;
    color: var(--gray-light);
    margin: 0;
}

.about-images {
    position: relative;
}

.image-stack {
    position: relative;
}

.img-wrapper {
    overflow: hidden;
}

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

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

.img-1 {
    width: 100%;
    height: 500px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.img-2 {
    position: absolute;
    bottom: -50px;
    right: -30px;
    width: 60%;
    height: 300px;
    border: 5px solid var(--dark-light);
}

.experience-box {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--gradient-fire);
    padding: 30px;
    text-align: center;
    z-index: 10;
}

.exp-years {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
}

/* ==========================================
   PROGRAMS SECTION
   ========================================== */
.programs {
    background: var(--dark);
}

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

.program-card {
    background: var(--dark-card);
    overflow: hidden;
    transition: all var(--transition);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.program-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

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

.program-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 15px;
}

.program-tag {
    padding: 8px 16px;
    background: var(--primary);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.program-tag.hot {
    background: var(--gradient-fire);
    color: var(--white);
}

.program-content {
    padding: 30px;
}

.program-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.program-content p {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.program-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.program-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-light);
}

.program-meta svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
    stroke-width: 2;
    fill: none;
}

/* ==========================================
   TRAINERS SECTION
   ========================================== */
.trainers {
    background: var(--dark-light);
}

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

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

.trainer-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    margin-bottom: 25px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
}

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

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

.trainer-social {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: all var(--transition);
}

.trainer-card:hover .trainer-social {
    opacity: 1;
    bottom: 50px;
}

.trainer-social a {
    width: 40px;
    height: 40px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: all var(--transition);
}

.trainer-social a:hover {
    background: var(--white);
}

.trainer-social svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.trainer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.trainer-role {
    display: block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.trainer-info p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing {
    background: var(--dark);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    font-size: 1rem;
    color: var(--gray-light);
}

.pricing-toggle span.active {
    color: var(--white);
}

.toggle {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--dark-card);
    border: 2px solid var(--primary);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    left: 2px;
    top: 2px;
    background: var(--primary);
    border-radius: 50%;
    transition: var(--transition);
}

.toggle input:checked + .toggle-slider::before {
    transform: translateX(30px);
}

.save-badge {
    background: var(--secondary);
    color: var(--white);
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 3px;
    margin-left: 10px;
}

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

.pricing-card {
    background: var(--dark-card);
    padding: 40px;
    position: relative;
    transition: all var(--transition);
}

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

.pricing-card.popular {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(255, 62, 62, 0.1));
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--dark);
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.pricing-header p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.pricing-amount {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pricing-amount .currency {
    font-size: 1.5rem;
    color: var(--primary);
    vertical-align: top;
}

.pricing-amount .price {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--primary);
}

.pricing-amount .period {
    color: var(--gray-light);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
}

.pricing-features li.inactive {
    color: var(--gray);
    text-decoration: line-through;
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    stroke-width: 3;
    fill: none;
    flex-shrink: 0;
}

.pricing-features li.inactive svg {
    stroke: var(--secondary);
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* ==========================================
   TRANSFORMATION SECTION
   ========================================== */
.transformation {
    background: var(--dark-light);
}

.transformations-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.transformation-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--dark-card);
    overflow: hidden;
}

.before-after {
    position: relative;
}

.ba-image {
    height: 100%;
    min-height: 400px;
}

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

.ba-label {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--dark);
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.transformation-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.transformation-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

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

.t-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
}

.t-label {
    font-size: 0.8rem;
    color: var(--gray-light);
}

.transformation-content blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 25px;
    border-left: 3px solid var(--primary);
    padding-left: 20px;
}

.transformation-author strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.transformation-author span {
    font-size: 0.85rem;
    color: var(--gray-light);
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

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

.cta-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.95), rgba(10,10,10,0.8));
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1;
    margin-bottom: 20px;
}

.cta-content > p {
    color: var(--gray-light);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-form {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.1);
}

.cta-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.cta-form input,
.cta-form select {
    width: 100%;
    padding: 18px 20px;
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition);
}

.cta-form input:focus,
.cta-form select:focus {
    outline: none;
    border-color: var(--primary);
}

.cta-form input::placeholder {
    color: var(--gray);
}

.cta-form .btn {
    width: 100%;
    justify-content: center;
}

.cta-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--accent);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info p {
    color: var(--gray-light);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary);
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--gray-light);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition);
}

.social-btn:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.social-btn.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: var(--white);
}

.social-btn svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.contact-map {
    height: 500px;
    background: var(--dark-card);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--dark-light);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray-light);
    font-size: 0.95rem;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-newsletter h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-newsletter p {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 14px 20px;
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 0.95rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    color: var(--gray);
    font-size: 0.9rem;
}

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 99;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    box-shadow: var(--glow);
    transform: translateY(-5px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    stroke: var(--dark);
    stroke-width: 2;
    fill: none;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-images {
        order: -1;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trainers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .transformations-slider {
        grid-template-columns: 1fr;
    }
    
    .transformation-card {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .navbar .btn {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .trainers-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .cta-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title .line {
        font-size: 3.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-lg {
        padding: 16px 30px;
        width: 100%;
    }
}

/* Built by Vibhu Badge */
.built-by {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.built-by a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.built-by a:hover {
    color: rgba(255,255,255,0.9);
}

.built-by strong {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.built-by a:hover strong {
    background: linear-gradient(135deg, #a78bfa, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

