/* ===================================
   CUSTOM PROPERTIES - COLOR PALETTE
   =================================== */
:root {
    /* Primary Colors */
    --deep-maroon: #5A0E12;
    --maroon-light: #7A1217;
    --black: #000000;
    --dark-grey: #1A1A1A;
    --white: #FFFFFF;
    --golden-yellow: #D4A237;
    --gold-light: #F2C94C;
    
    /* Accent Colors */
    --skin-tone: #C28A60;
    --skin-dark: #A66A42;
    --light-blue: #3B6EAA;
    --metallic-blue: #5C8FD3;
    --bright-yellow: #F4D158;
    --bright-yellow-glow: #F8E37A;
    
    /* Gradients */
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1A1A1A 50%, #2A2A2A 100%);
    --gradient-maroon: linear-gradient(135deg, #5A0E12 0%, #7A1217 100%);
    --gradient-gold: linear-gradient(135deg, #D4A237 0%, #F2C94C 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(212, 162, 55, 0.3);
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}

/* ===================================
   GLOBAL STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--gradient-dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent layout shift during image loading */
img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Add min-height to image containers to prevent layout shift */
.trainer-pose-card,
.gallery-card {
    min-height: 350px;
}

@media (max-width: 767px) {
    .trainer-pose-card,
    .gallery-card {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .trainer-pose-card,
    .gallery-card {
        min-height: 250px;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: 1px;
}

.gold-text {
    color: var(--golden-yellow);
    text-shadow: 0 0 20px rgba(212, 162, 55, 0.5);
}

.maroon-text {
    color: var(--maroon-light);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--black);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 50%, rgba(212, 162, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(59, 110, 170, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(90, 14, 18, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
}

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

/* Hero Image Column */
.hero-image-col {
    position: relative;
    background: linear-gradient(135deg, var(--deep-maroon) 0%, var(--black) 100%);
}

.trainer-hero-image {
    position: relative;
    height: 100vh;
    width: 100%;
}

.trainer-hero-image .image-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.main-trainer-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    background: linear-gradient(135deg, var(--deep-maroon) 0%, var(--black) 50%, var(--skin-dark) 100%);
}

.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

/* Achievement Badges */
.achievement-badges {
    position: absolute;
    bottom: 40px;
    left: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 3;
}

.achievement-badge {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--golden-yellow);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all var(--transition-fast);
    animation: slideInLeft 0.8s ease forwards;
    opacity: 0;
}

.achievement-badge:nth-child(1) {
    animation-delay: 0.3s;
}

.achievement-badge:nth-child(2) {
    animation-delay: 0.5s;
}

.achievement-badge:nth-child(3) {
    animation-delay: 0.7s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.achievement-badge:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 30px rgba(212, 162, 55, 0.4);
}

.achievement-badge.gold-badge {
    border-left-color: var(--golden-yellow);
}

.achievement-badge.maroon-badge {
    border-left-color: var(--maroon-light);
}

.achievement-badge.blue-badge {
    border-left-color: var(--light-blue);
}

.achievement-badge i {
    font-size: 1.8rem;
    color: var(--golden-yellow);
    flex-shrink: 0;
}

.achievement-badge.maroon-badge i {
    color: var(--maroon-light);
}

.achievement-badge.blue-badge i {
    color: var(--light-blue);
}

.achievement-badge span {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Hero Text Column */
.hero-text-col {
    position: relative;
    background: linear-gradient(135deg, var(--black) 0%, var(--deep-maroon) 100%);
    display: flex;
    align-items: center;
}

.hero-content-wrapper {
    padding: 4rem 5%;
    max-width: 650px;
}

.trainer-intro {
    animation: fadeInUp 0.8s ease forwards;
}

.trainer-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--white);
    letter-spacing: 4px;
    margin: 0;
    line-height: 1;
    text-shadow: 0 0 30px rgba(212, 162, 55, 0.3);
}

.trainer-tagline {
    font-size: 1.1rem;
    color: var(--golden-yellow);
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0.75rem 0 0 0;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 0.95;
    margin: 2rem 0 1.5rem;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(212, 162, 55, 0.2);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-cta {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

/* Hero Stats - New Design */
.stat-box-new {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 162, 55, 0.2);
    border-radius: 12px;
    padding: 1.25rem 0.75rem;
    text-align: center;
    transition: all var(--transition-fast);
    backdrop-filter: blur(5px);
}

.stat-box-new:hover {
    background: rgba(212, 162, 55, 0.08);
    border-color: var(--golden-yellow);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(212, 162, 55, 0.2);
}

.stat-box-new .stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--golden-yellow);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-box-new .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.3;
}

.hero-stats {
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.btn-primary-custom {
    background: var(--gradient-gold);
    border: none;
    color: var(--black);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-gold);
}

.btn-primary-custom:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(212, 162, 55, 0.5);
    color: var(--black);
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Hero Stats */
.hero-stats {
    padding: 2rem 0;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 162, 55, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
}

.stat-box:hover {
    background: rgba(212, 162, 55, 0.1);
    border-color: var(--golden-yellow);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--golden-yellow);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator a {
    color: var(--golden-yellow);
    font-size: 2.5rem;
    animation: bounce 2s infinite;
    display: block;
}

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

/* ===================================
   ANIMATIONS
   =================================== */
.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

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

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--bright-yellow-glow);
    font-weight: 300;
    letter-spacing: 1px;
}

/* ===================================
   TRAINER PROFILE SECTION
   =================================== */
.trainer-profile-section {
    background: var(--gradient-dark);
    padding: 5rem 0;
    border-top: 2px solid rgba(212, 162, 55, 0.3);
}

.trainer-pose-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all var(--transition-fast);
    height: 100%;
}

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

.pose-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid rgba(212, 162, 55, 0.3);
    background: linear-gradient(135deg, var(--deep-maroon) 0%, var(--black) 100%);
}

.pose-image-wrapper:hover {
    border-color: var(--golden-yellow);
    box-shadow: var(--shadow-gold);
}

.trainer-pose {
    width: 100%;
    height: 350px;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: all var(--transition-medium);
    background: transparent;
}

.trainer-pose-card:hover .trainer-pose {
    transform: scale(1.05);
}

.pose-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: all var(--transition-fast);
}

.trainer-pose-card:hover .pose-overlay {
    transform: translateY(0);
}

.pose-name {
    color: var(--golden-yellow);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.trainer-bio-card {
    background: var(--gradient-maroon);
    border: 2px solid var(--golden-yellow);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.trainer-bio-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 162, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.bio-content {
    position: relative;
    z-index: 2;
}

.bio-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.bio-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 162, 55, 0.3);
    transition: all var(--transition-fast);
}

.credential-item:hover {
    background: rgba(212, 162, 55, 0.1);
    border-color: var(--golden-yellow);
    transform: translateX(5px);
}

.credential-item i {
    font-size: 1.5rem;
    color: var(--golden-yellow);
}

.credential-item span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===================================
   EXPERTISE SECTION
   =================================== */
.expertise-section {
    background: linear-gradient(180deg, var(--black) 0%, var(--deep-maroon) 50%, var(--black) 100%);
    padding: 5rem 0;
}

.expertise-card {
    background: var(--gradient-maroon);
    border: 2px solid rgba(212, 162, 55, 0.2);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition-fast);
    height: 100%;
}

.expertise-card:hover {
    transform: translateY(-10px);
    border-color: var(--golden-yellow);
    box-shadow: var(--shadow-gold);
}

.expertise-icon {
    font-size: 3rem;
    color: var(--golden-yellow);
    margin-bottom: 1rem;
}

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

.expertise-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
    background: linear-gradient(180deg, var(--black) 0%, var(--deep-maroon) 50%, var(--black) 100%);
    padding: 5rem 0;
}

.service-card {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    height: 100%;
    backdrop-filter: blur(10px);
}

.service-card.featured {
    background: var(--gradient-maroon);
    border-color: var(--golden-yellow);
    box-shadow: var(--shadow-gold);
}

.service-card:hover {
    border-color: var(--golden-yellow);
    box-shadow: var(--shadow-lg);
}

.service-card.featured:hover {
    border-color: var(--golden-yellow);
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--light-blue);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

.service-badge.gold {
    background: var(--gradient-gold);
    color: var(--black);
}

.service-title {
    font-size: 1.8rem;
    margin: 1.5rem 0 1rem;
    color: var(--white);
}

.service-price {
    margin-bottom: 2rem;
}

.service-price .price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--golden-yellow);
}

.service-price .period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Service Price Options (Multiple Tiers) */
.service-price-options {
    margin-bottom: 2rem;
}

.price-option {
    display: flex;
    align-items: baseline;
    justify-content: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 162, 55, 0.2);
}

.price-option:last-child {
    border-bottom: none;
}

.price-option .price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--golden-yellow);
    margin-right: 0.5rem;
}

.price-option .period {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.service-features li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.service-features i {
    color: var(--golden-yellow);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.btn-service {
    width: 100%;
    background: var(--gradient-gold);
    border: none;
    color: var(--black);
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    text-decoration: none;
    display: inline-block;
}

.btn-service:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    color: var(--black);
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
    background: var(--gradient-dark);
    padding: 5rem 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 162, 55, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all var(--transition-fast);
    height: 100%;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    border-color: var(--golden-yellow);
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.testimonial-stars {
    color: var(--golden-yellow);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 2rem;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--black);
    flex-shrink: 0;
}

.author-info h5 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.author-info p {
    font-size: 0.85rem;
    color: var(--bright-yellow-glow);
    margin: 0;
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery-section {
    background: linear-gradient(180deg, var(--black) 0%, var(--deep-maroon) 50%, var(--black) 100%);
    padding: 5rem 0;
}

.gallery-card {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all var(--transition-fast);
    height: 100%;
}

.gallery-card:hover {
    transform: translateY(-10px);
    border-color: var(--golden-yellow);
    box-shadow: var(--shadow-gold);
}

.gallery-image {
    position: relative;
    overflow: hidden;
}

.transformation-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, var(--deep-maroon) 0%, var(--black) 50%, var(--light-blue) 100%);
    transition: all var(--transition-medium);
}

.gallery-card:hover .transformation-photo {
    transform: scale(1.05);
}

/* Split Transformation (Before/After side by side) */
.split-transformation .transformation-photo {
    height: 400px;
}

.split-transformation .col-6:first-child .transformation-photo {
    border-right: 2px solid rgba(212, 162, 55, 0.3);
}

/* Hide gallery info */
.gallery-info {
    display: none;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    background: var(--gradient-dark);
    padding: 5rem 0;
}

.cta-card {
    background: var(--gradient-maroon);
    border: 3px solid var(--golden-yellow);
    border-radius: 30px;
    padding: 4rem 2rem;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 162, 55, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.btn-cta-primary {
    background: var(--bright-yellow);
    border: none;
    color: var(--black);
    font-weight: 700;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    box-shadow: 0 0 30px rgba(244, 209, 88, 0.5);
    font-size: 1.2rem;
}

.btn-cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(244, 209, 88, 0.7);
    color: var(--black);
}

.urgency-box {
    background: rgba(244, 209, 88, 0.2);
    border: 2px solid var(--bright-yellow);
    border-radius: 15px;
    padding: 1rem 2rem;
    display: inline-block;
    font-weight: 600;
    color: var(--bright-yellow);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(244, 209, 88, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(244, 209, 88, 0.6);
    }
}

.social-proof {
    margin-top: 3rem;
}

.proof-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all var(--transition-fast);
}

.proof-item:hover {
    background: rgba(212, 162, 55, 0.1);
    transform: translateY(-5px);
}

.proof-item i {
    font-size: 2.5rem;
    color: var(--golden-yellow);
    margin-bottom: 1rem;
}

.proof-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 600;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--black);
    border-top: 2px solid rgba(212, 162, 55, 0.3);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    color: var(--golden-yellow);
    font-size: 1.5rem;
    transition: all var(--transition-fast);
}

.social-link:hover {
    color: var(--bright-yellow);
    transform: translateY(-3px);
}

/* ===================================
   FLOATING CTA BUTTON
   =================================== */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.float-btn {
    background: var(--bright-yellow);
    color: var(--black);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 5px 25px rgba(244, 209, 88, 0.5);
    transition: all var(--transition-fast);
}

.float-btn:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 35px rgba(244, 209, 88, 0.7);
}

.float-btn i {
    font-size: 1.5rem;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .hero-image-col {
        height: 1000px;
        min-height: 600px;
    }
    
    .trainer-hero-image {
        height: 750 px;
        min-height: 600px;
    }
    
    .main-trainer-photo {
        object-position: center top;
    }
    
    .hero-content-wrapper {
        padding: 3rem 2rem;
    }
    
    .trainer-name {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 4rem;
        margin: 1.5rem 0 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .achievement-badges {
        bottom: 20px;
        left: 20px;
        right: 20px;
        gap: 0.75rem;
    }
    
    .achievement-badge {
        padding: 0.75rem 1rem;
    }
    
    .achievement-badge i {
        font-size: 1.5rem;
    }
    
    .achievement-badge span {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
    .hero-image-col {
        height: 850px;
        min-height: 700px;
    }
    
    .trainer-hero-image {
        height: 600px;
        min-height: unset;
    }
    
    .main-trainer-photo {
        object-position: center 15%;
    }
    
    .hero-content-wrapper {
        padding: 2.5rem 1.5rem;
        text-align: center;
    }
    
    .trainer-name {
        font-size: 2rem;
    }
    
    .trainer-tagline {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: 2px;
        margin: 1.5rem 0 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .achievement-badges {
        position: static;
        margin-top: 2rem;
        padding: 0 1.5rem 2rem;
    }
    
    .achievement-badge {
        padding: 0.875rem 1.25rem;
    }
    
    .achievement-badge i {
        font-size: 1.4rem;
    }
    
    .achievement-badge span {
        font-size: 0.85rem;
    }
    
    .stat-box-new .stat-number {
        font-size: 2rem;
    }
    
    .stat-box-new .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    /* Trainer Profile Mobile */
    .main-trainer-photo {
        min-height: 400px;
    }
    
    .trainer-name {
        font-size: 2rem;
    }
    
    .trainer-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .trainer-pose {
        height: 300px;
        object-fit: contain;
    }
    
    .bio-title {
        font-size: 2rem;
    }
    
    .bio-text {
        font-size: 1rem;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-card {
        padding: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card.featured {
        transform: scale(1);
        margin-bottom: 2rem;
    }
    
    .cta-card {
        padding: 3rem 1.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .btn-cta-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .float-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .float-btn span {
        display: none;
    }
    
    .urgency-box {
        font-size: 0.85rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
    .hero-image-col {
        height: 850px;
        min-height: 700px;
    }
    
    .trainer-hero-image {
        height: 600px;
        min-height: unset;
    }
    
    .main-trainer-photo {
        object-position: center 10%;
    }
    
    .hero-content-wrapper {
        padding: 2rem 1.25rem;
    }
    
    .trainer-name {
        font-size: 1.75rem;
    }
    
    .trainer-tagline {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin: 1rem 0 0.75rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .achievement-badges {
        gap: 0.5rem;
        padding: 0 1.25rem 1.5rem;
    }
    
    .achievement-badge {
        padding: 0.75rem 1rem;
    }
    
    .achievement-badge i {
        font-size: 1.2rem;
    }
    
    .achievement-badge span {
        font-size: 0.75rem;
    }
    
    .stat-box-new {
        padding: 1rem 0.5rem;
    }
    
    .stat-box-new .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-box-new .stat-label {
        font-size: 0.65rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Trainer Profile Small Mobile */
    .main-trainer-photo {
        min-height: 350px;
    }
    
    .trainer-name {
        font-size: 1.75rem;
    }
    
    .intro-label {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .trainer-pose {
        height: 250px;
        object-fit: contain;
    }
    
    .bio-title {
        font-size: 1.75rem;
    }
    
    .trainer-bio-card {
        padding: 2rem 1.5rem;
    }
    
    .credential-item {
        padding: 0.75rem 1rem;
    }
    
    .credential-item i {
        font-size: 1.2rem;
    }
    
    .credential-item span {
        font-size: 0.85rem;
    }
    
    .expertise-icon {
        font-size: 2.5rem;
    }
    
    .service-price .price {
        font-size: 3rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .placeholder-image {
        height: 250px;
    }
    
    .transformation-photo {
        height: 300px;
    }
    
    .split-transformation .transformation-photo {
        height: 300px;
    }
}

/* iPad Pro and Large Tablets (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .gallery-card {
        margin-bottom: 2rem;
    }
}

/* Desktop Enhancements (min 1200px) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-title {
        font-size: 6rem;
    }
    
    .section-title {
        font-size: 4rem;
    }
}

/* Ultra-wide screens (min 1400px) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* ===================================
   SMOOTH SCROLL BEHAVIOR
   =================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .floating-cta,
    .scroll-indicator {
        display: none;
    }
}
