/* ====================================
   GOKUX3 - MAIN STYLESHEET
   Light Theme with Orange Accents
   ==================================== */

/* CSS Variables */
:root {
    /* Primary Colors */
    --secondary-red: #ff5757;
    --primary-orange: #FF6B35;
    --dark-orange: #E85A24;
    --light-orange: #FF8C5A;
    --orange-glow: rgba(255, 107, 53, 0.3);
    
    /* Light Theme Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f0f0f0;
    --bg-quaternary: #f2f2f2;
    
    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6c757d;
    --text-white: #ffffff;
    
    /* Gray Shades */
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --gray-cta: #523c2f;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-orange: 0 4px 20px rgba(255, 107, 53, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Spacing */
    --header-height: 80px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ====================================
   HEADER STYLES
   ==================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: 
        radial-gradient(
            ellipse at 20% 100%,
            rgba(255, 107, 53, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 80% 0%,
            rgba(220, 38, 38, 0.05) 0%,
            transparent 50%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fafafa 100%
        );
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: var(--transition-normal);
}

.header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-orange) 20%, var(--secondary-red) 50%, var(--primary-orange) 80%, transparent 100%);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
}

.logo-text {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0;
    position: relative;
}

.logo-first {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--gray-900);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-last {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    font-weight: 400;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.logo-last::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.logo a:hover .logo-last::after {
    transform: scaleX(1);
    transform-origin: left;
}

.logo a:hover .logo-first {
    color: var(--primary-orange);
}

.logo a:hover .logo-last {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav-list {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-medium);
    position: relative;
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Profile Container */
.profile-container {
    display: flex;
    align-items: center;
}

.profile-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: var(--text-white);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-orange);
    transition: var(--transition-normal);
}

.profile-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.profile-link i {
    font-size: 18px;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.lang-toggle:hover {
    border-color: var(--primary-orange);
}

.lang-toggle i:first-child {
    color: var(--primary-orange);
}

.lang-toggle i:last-child {
    font-size: 10px;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.lang-switcher.active .lang-toggle i:last-child {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: var(--bg-primary);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    z-index: 100;
    overflow: hidden;
}

.lang-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.lang-option:hover {
    background: var(--bg-tertiary);
}

.lang-option.active {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
}

.lang-flag {
    width: 21px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    vertical-align: middle;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-primary);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition-normal);
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-link {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-social {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.mobile-social a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-orange);
    font-weight: 500;
}

/* Mobile Language Switcher */
.mobile-lang {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.mobile-lang-title {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.mobile-lang-options {
    display: flex;
    gap: 10px;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 15px;
    background: var(--bg-tertiary);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.mobile-lang-btn:hover,
.mobile-lang-btn.active {
    border-color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
}

/* ====================================
   HERO SECTION
   ==================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.hero-background img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center 65%;
    filter: brightness(0.55) saturate(1.1);
    transition: filter 0.5s ease, transform 0.8s ease, opacity 0.3s ease;
    opacity: 0;
}

.hero-background img.loaded {
    opacity: 1;
}

.hero-background:hover img {
    filter: brightness(0.75) saturate(1.2);
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(
            ellipse at center top,
            transparent 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.6) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0.7) 100%
        );
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    font-size: 16px;
    margin-bottom: 20px;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.hero-instagram:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
}

.hero-instagram i {
    font-size: 20px;
    color: var(--primary-orange);
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 12vw, 140px);
    color: var(--text-white);
    letter-spacing: 8px;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    color: var(--primary-orange);
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: var(--text-white);
    border: none;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: var(--text-white);
    transform: translateY(-3px);
}

.program-card-buttons {
    display: flex;
    gap: 1em;
}
.btn-outline {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-outline:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--text-white);
    transform: translateY(-3px);
}

.btn-outline-green {
    background: transparent;
    color: #2ECC71;
    border: 2px solid #2ECC71;
}

.btn-outline-green:hover {
    background: #2ECC71;
    border-color: #2ECC71;
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Preview Lightbox */
.preview-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.preview-lightbox-overlay.active {
    display: flex;
}

.preview-lightbox {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 90vh;
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.preview-lightbox iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--primary-orange);
    transform: scale(1.1);
}

/* Hero Secondary Button (white version) */
.hero .btn-secondary {
    color: var(--text-white);
    border-color: var(--text-white);
}

.hero .btn-secondary:hover {
    background: var(--text-white);
    color: var(--text-dark);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    transition: var(--transition-normal);
}

.scroll-indicator a:hover {
    opacity: 1;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-white);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background: var(--text-white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* ====================================
   FOOTER STYLES
   ==================================== */

.footer {
    background: 
        radial-gradient(
            ellipse at 20% 0%,
            rgba(255, 107, 53, 0.15) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 80% 100%,
            rgba(220, 38, 38, 0.1) 0%,
            transparent 50%
        ),
        linear-gradient(
            180deg,
            var(--gray-900) 0%,
            #0f0f0f 100%
        );
    color: var(--text-white);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--primary-orange) 20%,
        var(--secondary-red) 50%,
        var(--primary-orange) 80%,
        transparent 100%
    );
}

.footer::after {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(255, 107, 53, 0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

/* Footer Brand */
.footer-brand .footer-logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text .logo-first {
    color: var(--text-white);
}

.footer-brand .logo-text .logo-last {
    background: linear-gradient(135deg, var(--primary-orange), #ff8c5a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand .logo-text .logo-last::after {
    display: none;
}

.footer-brand .footer-logo:hover .logo-first {
    color: var(--primary-orange);
}

.footer-brand .footer-logo:hover .logo-last {
    background: linear-gradient(135deg, var(--text-white), var(--gray-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--gray-400);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-white);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

/* Footer Titles */
.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: var(--transition-normal);
}

.payment-item:hover {
    background: rgba(255, 107, 53, 0.1);
}

.payment-item i {
    font-size: 22px;
    color: var(--primary-orange);
    width: 30px;
}

.payment-item span {
    color: var(--gray-300);
    font-size: 14px;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 14px;
}

/* Footer Language Switcher */
.footer-lang {
    display: flex;
    gap: 10px;
}

.footer-lang-btn {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 13px;
    color: var(--gray-400);
    transition: var(--transition-fast);
}

.footer-lang-btn:hover,
.footer-lang-btn.active {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.1);
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--gray-500);
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--primary-orange);
}

/* ====================================
   RESPONSIVE STYLES
   ==================================== */

@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .header-container {
        padding: 0 20px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .profile-container {
        display: none;
    }
    
    .lang-switcher {
        display: none;
    }
}

@media (max-width: 768px) {
    .program-card-buttons {
        width:100%;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-lang {
        order: -1;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .payment-methods {
        align-items: center;
    }
    
    .payment-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 70px;
    }
    
    .hero-title {
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        letter-spacing: 2px;
    }
}

/* ====================================
   CONTAINER & SECTION STYLES
   ==================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.2));
    color: var(--primary-orange);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 6vw, 56px);
    color: var(--text-dark);
    letter-spacing: 3px;
}

.section-title span {
    color: var(--primary-orange);
}

.section-description {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    margin: 15px auto 0;
}

/* ====================================
   ABOUT PREVIEW SECTION
   ==================================== */

.about-preview {
    padding: 100px 0;
    background: 
        radial-gradient(
            ellipse at 100% 0%,
            rgba(255, 107, 53, 0.1) 0%,
            transparent 45%
        ),
        radial-gradient(
            ellipse at 0% 100%,
            rgba(220, 38, 38, 0.06) 0%,
            transparent 45%
        ),
        radial-gradient(
            circle at 50% 50%,
            rgba(255, 255, 255, 0.5) 0%,
            transparent 60%
        ),
        linear-gradient(
            135deg,
            var(--bg-primary) 0%,
            #fff8f5 50%,
            var(--bg-primary) 100%
        );
    position: relative;
    overflow: hidden;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 107, 53, 0.25) 50%,
        transparent 100%
    );
}

.about-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 107, 53, 0.25) 50%,
        transparent 100%
    );
}

.about-preview-content {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: flex-start;
    justify-content: center;
}

.about-preview-text {
    text-align: left;
    flex: 1;
    max-width: 500px;
}

.about-preview-text h3 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.about-age {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-orange);
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.about-description {
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-description strong {
    color: var(--primary-orange);
}

.about-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-primary);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    flex: 1;
}

.stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--primary-orange);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* About Gallery */
.about-preview-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 25px;
    flex: 1;
    max-width: 450px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center 60%;
    display: block;
}

.gallery-item .image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px dashed var(--gray-400);
}

.gallery-item .image-placeholder span {
    color: var(--text-light);
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

/* Featured image - spans full width */
.gallery-item.featured {
    grid-column: 1 / -1;
}

.gallery-item.featured img {
    height: 350px;
}

.gallery-item.featured .image-placeholder {
    height: 250px;
}

.gallery-item.featured:hover {
    transform: translateY(-10px);
}

/* About CTA */
.about-preview-cta {
    margin-top: 30px;
}

/* ====================================
   LIGHTBOX
   ==================================== */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1;
}

.lightbox-blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(50px) brightness(0.3);
    transform: scale(1.2);
    z-index: 2;
}

.lightbox-content {
    position: relative;
    z-index: 3;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 130vh;
    object-fit: contain;
    border-radius: 8px;
    transform: scale(1.1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    animation: lightboxZoomIn 0.3s ease;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(1);
        opacity: 0;
    }
    to {
        transform: scale(1.1);
        opacity: 1;
    }
}

.lightbox-content img.home {
    transform: scale(1.3);
    animation: lightboxZoomIn2 0.3s ease;
}

@keyframes lightboxZoomIn2 {
    from {
        transform: scale(1.2);
        opacity: 0;
    }
    to {
        transform: scale(1.3);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
}

/* Make gallery items clickable */
.gallery-item {
    cursor: pointer;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

.gallery-item .zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-900);
    font-size: 18px;
    transition: transform 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.gallery-item:hover .zoom-icon {
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ====================================
   PROGRAMS SECTION
   ==================================== */

.programs-section {
    padding: 100px 0;
    background: 
        radial-gradient(
            ellipse at 0% 0%,
            rgba(255, 107, 53, 0.12) 0%,
            transparent 40%
        ),
        radial-gradient(
            ellipse at 100% 100%,
            rgba(220, 38, 38, 0.08) 0%,
            transparent 40%
        ),
        radial-gradient(
            ellipse at 50% 50%,
            rgba(255, 255, 255, 0.02) 0%,
            transparent 50%
        ),
        linear-gradient(
            180deg,
            var(--bg-quaternary) 0%,
            #fafafa 50%,
            var(--bg-quaternary) 100%
        );
    position: relative;
    overflow: hidden;
}

.programs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 107, 53, 0.3) 50%,
        transparent 100%
    );
}

.programs-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 107, 53, 0.3) 50%,
        transparent 100%
    );
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Program Card */
.program-card {
    background: var(--bg-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-red));
    opacity: 1;
    transition: opacity 0.3s ease;
}

.program-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.25);
}

.program-card:hover::before {
    opacity: 1;
}

.program-card.coming-soon {
    opacity: 0.85;
}

.program-card.coming-soon::before {
    background: var(--gray-400);
}

.program-card.coming-soon:hover {
    transform: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.program-image {
    position: relative;
    height: 320px;
    min-height: 320px;
    max-height: 320px;
    overflow: hidden;
}

.program-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-position: center 50%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.08);
}

.program-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-bottom: 2px dashed var(--gray-400);
}

.program-image .image-placeholder span {
    color: var(--text-light);
    font-size: 14px;
    text-align: center;
}

.program-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.program-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
}

.program-placeholder i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.15);
    animation: pulsePlaceholder 2s ease-in-out infinite;
}

@keyframes pulsePlaceholder {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.1); opacity: 0.25; }
}

.program-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FF6B35, #E85A24);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    z-index: 2;
}

.program-badge.soon {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.program-content {
    padding: 20px;
    position: relative;
}

.program-title {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.program-description {
    color: var(--text-medium);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.program-features {
    margin-bottom: 15px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), rgba(220, 38, 38, 0.03));
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.08);
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-medium);
    font-size: 13px;
    padding: 5px 0;
}

.program-features li i {
    color: var(--text-white);
    font-size: 10px;
    min-width: 22px;
    width: 22px;
    height: 22px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.program-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--gray-100);
    border-radius: 16px;
}

.program-price .price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--primary-orange);
    line-height: 1;
}

.program-price .price-note {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
}

.program-buttons {
    display: flex;
    gap: 12px;
}

.program-buttons .btn {
    flex: 1;
}

.btn-sm {
    padding: 14px 22px;
    font-size: 13px;
    border-radius: 12px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-disabled {
    background: var(--gray-300);
    color: var(--text-light);
    border: none;
    cursor: not-allowed;
}

.program-badge.diet {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    color: var(--text-white);
    border: none;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46, 204, 113, 0.5);
}

/* Diet Program Card Green Theme */
.program-card.diet {
    border: 1px solid rgba(46, 204, 113, 0.1);
}

.program-card.diet::before {
    background: linear-gradient(90deg, #2ECC71, #27AE60);
}

.program-card.diet:hover {
    box-shadow: 0 25px 60px rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.2);
}

.program-card.diet .program-features {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.03), rgba(39, 174, 96, 0.03));
    border: 1px solid rgba(46, 204, 113, 0.08);
}

.program-card.diet .program-features li i {
    background: #2ECC71;
}

.program-card.diet .program-price .price {
    color: #2ECC71;
}

.program-card.diet .program-title {
    color: #27AE60;
}
.program-badge.diet {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    color: var(--text-white);
    border: none;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46, 204, 113, 0.5);
}

/* ====================================
   COMPACT PROGRAM CARDS (Homepage)
   ==================================== */

.programs-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 768px) {
    .programs-grid-compact {
        grid-template-columns: 1fr;
    }
}

/* Homepage Program Cards - More Detailed */
.programs-grid-home {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .programs-grid-home {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
}

.program-card-home {
    background: var(--bg-primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
}

.program-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-red));
    opacity: 1;
    z-index: 999;
    transition: opacity 0.3s ease;
}

.program-card-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.18);
    border-color: rgba(255, 107, 53, 0.25);
}

.program-card-home .program-image {
    height: 220px;
    min-height: 220px;
    max-height: 220px;
}

.program-card-home .program-content {
    padding: 15px;
}

.program-card-home .program-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--primary-orange);
}

.program-card-home .program-description-short {
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.program-card-home .program-features-short {
    margin-bottom: 18px;
    padding: 12px 15px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), rgba(220, 38, 38, 0.03));
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.08);
}

.program-card-home .program-features-short li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-medium);
    font-size: 13px;
    padding: 4px 0;
}

.program-card-home .program-features-short li i {
    color: var(--text-white);
    font-size: 9px;
    min-width: 20px;
    width: 20px;
    height: 20px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.program-card-home .program-price {
    padding: 15px 18px;
    margin-bottom: 18px;
    border-radius: 14px;
    background: var(--gray-100);
}

.program-card-home .program-price .price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    color: var(--primary-orange);
    line-height: 1;
}

.program-card-home .program-buttons {
    display: flex;
    gap: 12px;
}

.program-card-home .program-buttons.program-buttons-single {
    justify-content: center;
}

.program-card-home .program-buttons.program-buttons-single .btn {
    flex: none;
    width: 100%;
}

.program-card-home .program-buttons .btn {
    flex: 1;
    justify-content: center;
    padding: 14px 20px;
    font-size: 13px;
}

/* Minimal Program Cards for Homepage */
.program-card-minimal {
    cursor: pointer;
}

.program-card-minimal .program-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.program-card-minimal .program-content {
    text-align: left;
    padding: 20px 25px 25px;
}

.program-card-minimal .program-title {
    margin-bottom: 10px;
    font-size: 22px;
}

.program-card-minimal .program-description-short {
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.program-card-minimal .program-features-mini {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.program-card-minimal .program-features-mini li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-medium);
    font-size: 13px;
}

.program-card-minimal .program-features-mini li i {
    color: var(--text-white);
    font-size: 8px;
    min-width: 18px;
    width: 18px;
    height: 18px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.program-card-minimal.diet .program-features-mini li i {
    background: #2ECC71;
}

.program-card-minimal.bundle .program-features-mini li i {
    background: #9B59B6;
}

.program-card-minimal.coaching .program-features-mini li i {
    background: #3498DB;
}

.program-card-minimal .btn {
    display: inline-flex;
    transition: all 0.3s ease;
}

.program-card-minimal .program-minimal-footer .btn {
    pointer-events: auto;
}

.program-card-minimal .program-minimal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
}

.program-card-minimal .program-minimal-footer .price-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.program-card-minimal .program-minimal-footer .price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--primary-orange);
}

.program-card-minimal .program-minimal-footer .price-original {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: line-through;
}

.program-card-minimal .program-minimal-footer .program-buttons {
    display: flex;
    gap: 8px;
}

.program-card-minimal .program-minimal-footer .btn {
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 12px;
}

.program-card-minimal .btn-outline-light {
    background: rgba(235, 235, 235, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--text-dark);
}

.program-card-minimal .btn-outline-light:hover {
    background: rgb(255, 255, 255);
    border-color: rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.program-card-minimal .program-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.program-card-minimal .program-buttons .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.program-card-minimal .program-buttons .btn-bundle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 89, 182, 0.4);
}

.program-card-minimal .program-buttons .btn-coaching:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.program-card-minimal.diet .program-minimal-footer .price {
    color: #2ECC71;
}

.program-card-minimal.bundle .program-minimal-footer .price {
    color: #9B59B6;
}

.program-card-minimal.coaching .program-minimal-footer .price {
    color: #3498DB;
}

.programs-grid-minimal {
    gap: 30px;
}

/* Diet Card Home */
.program-card-home.diet {
    border: 1px solid rgba(46, 204, 113, 0.1);
}

.program-card-home.diet::before {
    background: linear-gradient(90deg, #2ECC71, #27AE60);
}

.program-card-home.diet:hover {
    box-shadow: 0 25px 60px rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.2);
}

.program-card-home.diet .program-price .price {
    color: #2ECC71;
}

.program-card-home.diet .program-title {
    color: #27AE60;
}

.program-card-home.diet .program-features-short {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.03), rgba(39, 174, 96, 0.03));
    border: 1px solid rgba(46, 204, 113, 0.08);
}

.program-card-home.diet .program-features-short li i {
    background: #2ECC71;
}

/* Bundle Card Home */
.program-card-home.bundle {
    border: 1px solid rgba(156, 89, 182, 0.1);
}

.program-card-home.bundle::before {
    background: linear-gradient(90deg, #9B59B6, #8E44AD);
}

.program-card-home.bundle:hover {
    box-shadow: 0 25px 60px rgba(156, 89, 182, 0.15);
    border-color: rgba(156, 89, 182, 0.2);
}

.program-card-home.bundle .program-price .price {
    color: #9B59B6;
}

.program-card-home.bundle .program-title {
    color: #8E44AD;
}

.program-card-home.bundle .program-features-short {
    background: linear-gradient(135deg, rgba(156, 89, 182, 0.03), rgba(142, 68, 173, 0.03));
    border: 1px solid rgba(156, 89, 182, 0.08);
}

.program-card-home.bundle .program-features-short li i {
    background: #9B59B6;
}

/* Bundle Composite Image (Split with + in center) */
.bundle-image-composite {
    position: relative;
    display: flex;
    overflow: hidden;
}

.bundle-image-composite .bundle-split-left,
.bundle-image-composite .bundle-split-right {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.bundle-image-composite .bundle-split-left img {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.bundle-image-composite .bundle-split-right img {
    position: absolute;
    top: 0;
    right: 0;
    width: 200%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.bundle-image-composite .bundle-plus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9B59B6, #8E44AD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(155, 89, 182, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.bundle-image-composite .bundle-plus i {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

/* Divider line between the two images */
.bundle-image-composite::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(155, 89, 182, 0.8), rgba(255,255,255,0.1));
    z-index: 5;
}

/* Hover effect */
.program-card-home.bundle:hover .bundle-split-left img,
.program-card-home.bundle:hover .bundle-split-right img,
.program-card-large.bundle:hover .bundle-split-left img,
.program-card-large.bundle:hover .bundle-split-right img {
    transform: scale(1.08);
}

/* Coaching Card Home */
.program-card-home.coaching {
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.program-card-home.coaching::before {
    background: linear-gradient(90deg, #3498DB, #2980B9);
}

.program-card-home.coaching:hover {
    box-shadow: 0 25px 60px rgba(52, 152, 219, 0.15);
    border-color: rgba(52, 152, 219, 0.2);
}

.program-card-home.coaching .program-price .price {
    color: #3498DB;
}

.program-card-home.coaching .program-title {
    color: #2980B9;
}

.program-card-home.coaching .program-features-short {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.03), rgba(41, 128, 185, 0.03));
    border: 1px solid rgba(52, 152, 219, 0.08);
}

.program-card-home.coaching .program-features-short li i {
    background: #3498DB;
}

.program-card-compact {
    background: var(--bg-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
}

.program-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-red));
    opacity: 1;
    transition: opacity 0.3s ease;
}

.program-card-compact:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.program-card-compact .program-image {
    height: 180px;
    min-height: 180px;
    max-height: 180px;
}

.program-card-compact .program-content {
    padding: 18px;
}

.program-card-compact .program-title {
    font-size: 18px;
    margin-bottom: 12px;
}

.program-card-compact .program-price {
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 12px;
}

.program-card-compact .program-price .price {
    font-size: 32px;
}

.program-card-compact .program-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.program-card-compact .program-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 12px;
}

/* Diet Card Compact */
.program-card-compact.diet {
    border: 1px solid rgba(46, 204, 113, 0.1);
}

.program-card-compact.diet::before {
    background: linear-gradient(90deg, #2ECC71, #27AE60);
}

.program-card-compact.diet:hover {
    box-shadow: 0 20px 50px rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.2);
}

.program-card-compact.diet .program-price .price {
    color: #2ECC71;
}

.program-card-compact.diet .program-title {
    color: #27AE60;
}

/* Bundle Card Styles */
.program-card-compact.bundle,
.program-card-large.bundle {
    border: 1px solid rgba(156, 89, 182, 0.1);
}

.program-card-compact.bundle::before,
.program-card-large.bundle::before {
    background: linear-gradient(90deg, #9B59B6, #8E44AD);
}

.program-card-compact.bundle:hover,
.program-card-large.bundle:hover {
    box-shadow: 0 20px 50px rgba(156, 89, 182, 0.15);
    border-color: rgba(156, 89, 182, 0.2);
}

.program-card-compact.bundle .program-price .price,
.program-card-large.bundle .program-card-price .price {
    color: #9B59B6;
}

.program-card-compact.bundle .program-title,
.program-card-large.bundle .program-card-title {
    color: #8E44AD;
}

.program-badge.bundle {
    background: linear-gradient(135deg, #9B59B6, #8E44AD) !important;
    box-shadow: 0 4px 15px rgba(156, 89, 182, 0.4) !important;
}

.btn-bundle {
    background: linear-gradient(135deg, #9B59B6, #8E44AD);
    color: var(--text-white);
    border: none;
    box-shadow: 0 4px 15px rgba(156, 89, 182, 0.4);
}

.btn-bundle:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(156, 89, 182, 0.5);
}

.program-card-large.bundle .program-card-features li i {
    background: #9B59B6;
}


/* Coaching Card Styles */
.program-card-compact.coaching,
.program-card-large.coaching {
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.program-card-compact.coaching::before,
.program-card-large.coaching::before {
    background: linear-gradient(90deg, #3498DB, #2980B9);
}

.program-card-compact.coaching:hover,
.program-card-large.coaching:hover {
    box-shadow: 0 20px 50px rgba(52, 152, 219, 0.15);
    border-color: rgba(52, 152, 219, 0.2);
}

.program-card-compact.coaching .program-price .price,
.program-card-large.coaching .program-card-price .price {
    color: #3498DB;
}

.program-card-compact.coaching .program-title,
.program-card-large.coaching .program-card-title {
    color: #2980B9;
}

.program-badge.coaching {
    background: linear-gradient(135deg, #3498DB, #2980B9) !important;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4) !important;
}

.btn-coaching {
    background: linear-gradient(135deg, #3498DB, #2980B9);
    color: var(--text-white);
    border: none;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.btn-coaching:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.5);
}

.program-card-large.coaching .program-card-features li i {
    background: #3498DB;
}

/* Outline Button Styles */
.btn-outline-primary {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-outline-primary:hover {
    background: var(--primary-orange);
    color: var(--text-white);
    transform: translateY(-3px);
}

.btn-outline-success {
    background: transparent;
    color: #2ECC71;
    border: 2px solid #2ECC71;
}

.btn-outline-success:hover {
    background: #2ECC71;
    color: var(--text-white);
    transform: translateY(-3px);
}

.btn-outline-bundle {
    background: transparent;
    color: #9B59B6;
    border: 2px solid #9B59B6;
}

.btn-outline-bundle:hover {
    background: #9B59B6;
    color: var(--text-white);
    transform: translateY(-3px);
}

.btn-outline-coaching {
    background: transparent;
    color: #3498DB;
    border: 2px solid #3498DB;
}

.btn-outline-coaching:hover {
    background: #3498DB;
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Price savings tag */
.price-savings {
    color: #9B59B6 !important;
    font-weight: 600;
}

/* Original price strikethrough */
.price-original {
    font-size: 18px;
    color: var(--text-light);
    text-decoration: line-through;
}

/* Secondary Outline Button */
.btn-secondary-outline {
    background: transparent;
    color: var(--text-medium);
    border: 1px solid var(--gray-300);
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
    color: var(--text-dark);
}

/* ====================================
   SHOPPING CART STYLES
   ==================================== */

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 1999;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 25px;
    background: radial-gradient(ellipse at 20% 100%, rgba(255, 107, 53, 0.08) 0%, transparent 50%), radial-gradient(ellipse at 80% 0%, rgba(220, 38, 38, 0.05) 0%, transparent 50%), linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border-bottom: 2px solid var(--primary-orange);
}

.cart-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-header h3 i {
    color: var(--primary-orange);
}

.cart-close {
    width: 38px;
    height: 38px;
    background: #fff;
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-medium);
    transition: all 0.2s ease;
}

.cart-close:hover {
    background: var(--gray-100);
    color: var(--text-dark);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #fff;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty i {
    font-size: 50px;
    color: var(--gray-300);
    margin-bottom: 15px;
    display: block;
}

.cart-empty p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cart-browse-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 10px;
    background: var(--bg-tertiary);
    color: var(--text-dark);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
}

.cart-browse-btn:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

.cart-browse-btn i {
    font-size: 14px;
    color: inherit;
    margin-bottom: 0;
}

/* Workout Program - Orange Theme */
.cart-item.workout {
    border-left: 4px solid var(--primary-orange);
}

.cart-item.workout .cart-item-image {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.2);
}

.cart-item.workout .cart-item-image i {
    color: var(--primary-orange);
}

.cart-item.workout .cart-item-price {
    color: var(--primary-orange);
}

.cart-item.workout .cart-item-type {
    color: var(--primary-orange);
}

/* Diet Program - Green Theme */
.cart-item.diet {
    border-left: 4px solid #27ae60;
}

.cart-item.diet .cart-item-image {
    background: rgba(39, 174, 96, 0.1);
    border-color: rgba(39, 174, 96, 0.2);
}

.cart-item.diet .cart-item-image i {
    color: #27ae60;
}

.cart-item.diet .cart-item-price {
    color: #27ae60;
}

.cart-item.diet .cart-item-type {
    color: #27ae60;
}

/* Bundle Pack - Purple Theme */
.cart-item.bundle {
    border-left: 4px solid #9B59B6;
}

.cart-item.bundle .cart-item-image {
    background: rgba(155, 89, 182, 0.1);
    border-color: rgba(155, 89, 182, 0.2);
}

.cart-item.bundle .cart-item-image i {
    color: #9B59B6;
}

.cart-item.bundle .cart-item-price {
    color: #9B59B6;
}

.cart-item.bundle .cart-item-type {
    color: #9B59B6;
}

/* Online Coaching - Blue Theme */
.cart-item.coaching {
    border-left: 4px solid #3498DB;
}

.cart-item.coaching .cart-item-image {
    background: rgba(52, 152, 219, 0.1);
    border-color: rgba(52, 152, 219, 0.2);
}

.cart-item.coaching .cart-item-image i {
    color: #3498DB;
}

.cart-item.coaching .cart-item-price {
    color: #3498DB;
}

.cart-item.coaching .cart-item-type {
    color: #3498DB;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: #fafafa;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    margin-bottom: 12px;
    position: relative;
    transition: all 0.2s ease;
}

.cart-item:hover {
    border-color: var(--gray-300);
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.cart-item-image {
    width: 70px;
    height: 70px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-item-image i {
    font-size: 26px;
    color: var(--text-medium);
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.cart-item-type {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.cart-item-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.cart-item-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: var(--gray-400);
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cart-item-remove:hover {
    background: #fee2e2;
    color: #ef4444;
}

.cart-footer {
    padding: 20px 25px;
    background: linear-gradient(180deg, var(--gray-50) 0%, rgba(255, 107, 53, 0.06) 100%);
    border-top: 2px solid var(--gray-200);
}

.cart-summary {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 15px 18px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-discount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.08), rgba(155, 89, 182, 0.04));
    border: 1px dashed rgba(155, 89, 182, 0.3);
    border-radius: 10px;
}

.cart-discount-label {
    color: #9B59B6;
    font-size: 13px;
    font-weight: 600;
}

.cart-discount-label i {
    margin-right: 6px;
}

.cart-discount-amount {
    color: #9B59B6;
    font-weight: 700;
    font-size: 15px;
}

.cart-total span:first-child {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 14px;
}

.total-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    color: var(--text-dark);
}

.cart-footer .btn-primary {
    min-width: 100%;
    padding: 16px 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
}

.cart-footer .btn-primary i {
    margin-right: 8px;
}

/* Cart Toggle Button */
.cart-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    z-index: 1000;
    transition: all 0.2s ease;
}

.cart-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 22px;
    height: 22px;
    padding: 0 5px;
    background: var(--text-dark);
    color: #fff;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ====================================
   RESPONSIVE - ABOUT & PROGRAMS
   ==================================== */

@media (max-width: 992px) {
    .about-preview-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-preview-text {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .about-preview-gallery {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .gallery-item .image-placeholder {
        height: 250px;
    }
    
    .gallery-item.featured img {
        height: 350px;
        width: 550px;
    }
    
    .gallery-item.featured .image-placeholder {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .about-preview-gallery {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .logo-text {
        justify-content: center;
    }
    .gallery-item img,
    .gallery-item.featured img {
        height: 300px;
    }
    
    .gallery-item .image-placeholder,
    .gallery-item.featured .image-placeholder {
        height: 300px;
    }
    
    .gallery-item.featured {
        grid-column: auto;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 480px) {
    .about-preview-gallery {
        max-width: 100%;
        gap: 15px;
        margin: 0 15px;
    }
    
    .gallery-item img,
    .gallery-item.featured img {
        height: 280px;
    }
    
    .gallery-item .image-placeholder,
    .gallery-item.featured .image-placeholder {
        height: 280px;
    }
    
    
    .program-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ====================================
   NOTIFICATION STYLES
   ==================================== */

.notification {
    position: fixed;
    top: 20px;
    right: 30px;
    background: var(--bg-primary);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2000;
    transform: translateX(150%);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary-orange);
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: #27ae60;
}

.notification-success i {
    color: #27ae60;
}

.notification-info {
    border-left-color: var(--primary-orange);
}

.notification-info i {
    color: var(--primary-orange);
}

.notification i {
    font-size: 20px;
}

.notification span {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
}

/* ====================================
   ABOUT PAGE STYLES
   ==================================== */

/* About Hero */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: var(--header-height);
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center 40%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-hero-bg img.loaded {
    opacity: 1;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(
            ellipse at center top,
            transparent 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.6) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0.7) 100%
        );
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.about-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.2);
    color: var(--text-white);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.about-hero-tag i {
    color: var(--primary-orange);
    font-size: 18px;
}

.about-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 10vw, 100px);
    color: var(--text-white);
    letter-spacing: 6px;
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
}

.about-hero-title span {
    color: var(--primary-orange);
}

.about-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* About Story Section */
.about-story {
    padding: 100px 0;
    background: radial-gradient(ellipse at 100% 0%, rgba(255, 107, 53, 0.1) 0%, transparent 45%), radial-gradient(ellipse at 0% 100%, rgba(220, 38, 38, 0.06) 0%, transparent 45%), radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.5) 0%, transparent 60%), linear-gradient(135deg, var(--bg-primary) 0%, #fff8f5 50%, var(--bg-primary) 100%);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-story-image {
    position: relative;
}

.about-story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center 10%;
    border-radius: 20px;
}

.about-story-image .image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px dashed var(--gray-400);
}

.about-story-image .image-placeholder span {
    color: var(--text-light);
    font-size: 14px;
}

.story-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: var(--text-white);
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-orange);
}

.badge-years {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-story-content .section-tag {
    display: inline-block;
    margin-bottom: 15px;
}

.about-story-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    color: var(--text-dark);
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.about-story-title span {
    color: var(--primary-orange);
}

.about-story-text {
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-story-text strong {
    color: var(--primary-orange);
}

.about-story-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-200);
}

.story-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.story-stat i {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.story-stat .stat-value {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--text-dark);
    line-height: 1;
}

.story-stat .stat-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Approach Section */
.about-approach {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 50% 50%, transparent 0%, rgba(255, 107, 53, 0.04) 50%),
        var(--bg-quaternary);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.approach-card {
    background: var(--bg-primary);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-200);
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.approach-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: var(--text-white);
    box-shadow: var(--shadow-orange);
}

.approach-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.approach-card p {
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.7;
}

/* Transformation Section */
.transformation-section {
    padding: 100px 0;
    background: radial-gradient(ellipse at 100% 0%, rgba(255, 107, 53, 0.1) 0%, transparent 45%), radial-gradient(ellipse at 0% 100%, rgba(220, 38, 38, 0.06) 0%, transparent 45%), radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.5) 0%, transparent 60%), linear-gradient(135deg, var(--bg-primary) 0%, #fff8f5 50%, var(--bg-primary) 100%);
}

.transformation-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.transformation-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.column-header {
    text-align: center;
    padding: 15px 0;
}

.column-label {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 30px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.transformation-column.before .column-label {
    background: rgba(150, 150, 150, 0.2);
    color: var(--gray-400);
    border: 2px solid var(--gray-600);
}

.transformation-column.after .column-label {
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.transformation-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.transformation-photos .transform-photo:first-child {
    grid-column: span 2;
}

.transform-photo {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    cursor: pointer;
}

.transform-photo:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.transform-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: var(--transition-normal);
    pointer-events: none;
}

.transform-photo:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

.transform-photo .zoom-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-normal);
    z-index: 2;
}

.transform-photo:hover .zoom-icon {
    opacity: 1;
    transform: scale(1);
}

.transform-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center 70%;
    display: block;
}

.transformation-photos .transform-photo:first-child img {
    aspect-ratio: 4 / 5;
}

.transformation-column.before .transform-photo {
    filter: grayscale(40%);
}

.transformation-column.before .transform-photo:hover {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .transformation-gallery {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .transformation-photos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .transformation-photos {
        grid-template-columns: 1fr;
    }
    
    .transformation-photos .transform-photo:first-child {
        grid-column: span 1;
    }
}

/* About Gallery Section */
.about-gallery {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 50% 50%, transparent 0%, rgba(255, 107, 53, 0.04) 50%),
        var(--bg-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-photo {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.gallery-photo:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-photo .image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--gray-400);
}

.gallery-photo .image-placeholder span {
    color: var(--text-light);
    font-size: 13px;
    text-align: center;
}

.gallery-photo.large {
    grid-column: span 2;
}

.gallery-photo.large img {
    height: 300px;
}

.gallery-photo.large .image-placeholder {
    height: 300px;
}

/* About CTA Section */
.about-cta {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 50% 50%, transparent 20%, rgba(255, 107, 53, 0.1) 100%),
        var(--gray-cta);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 6vw, 56px);
    color: var(--text-white);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--gray-400);
    font-size: 16px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary-dark {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--gray-600);
}

.btn-secondary-dark:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
    margin-top: 20px;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.5);
}

.btn-instagram i {
    font-size: 18px;
}

/* About Page Responsive */
@media (max-width: 1200px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-story-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .story-image-badge {
        bottom: -15px;
        right: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-photo.large {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .about-story-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .about-hero-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .story-image-badge {
        padding: 15px 20px;
    }
    
    .badge-years {
        font-size: 32px;
    }
}

/* ====================================
   PROGRAMS PAGE STYLES
   ==================================== */

/* Programs Hero */
.programs-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: var(--header-height);
}

.programs-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.programs-hero-bg img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transform-origin: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.programs-hero-bg img.loaded {
    opacity: 1;
}

.programs-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(
            ellipse at center top,
            transparent 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.6) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0.7) 100%
        );
    z-index: 1;
}

.programs-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.programs-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.2);
    color: var(--text-white);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.programs-hero-tag i {
    color: var(--primary-orange);
    font-size: 18px;
}

.programs-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 10vw, 100px);
    color: var(--text-white);
    letter-spacing: 6px;
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
}

.programs-hero-title span {
    color: var(--primary-orange);
}

.programs-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Programs Introduction */
.programs-intro {
    padding: 100px 0;
    background: radial-gradient(ellipse at 100% 0%, rgba(255, 107, 53, 0.1) 0%, transparent 45%), radial-gradient(ellipse at 0% 100%, rgba(220, 38, 38, 0.06) 0%, transparent 45%), radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.5) 0%, transparent 60%), linear-gradient(135deg, var(--bg-primary) 0%, #fff8f5 50%, var(--bg-primary) 100%);
}

.intro-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text .section-tag {
    display: inline-block;
    margin-bottom: 15px;
}

.intro-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    color: var(--text-dark);
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.intro-title span {
    color: var(--primary-orange);
}

.intro-description {
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.intro-description strong {
    color: var(--primary-orange);
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-medium);
    font-size: 14px;
}

.intro-feature i {
    color: var(--primary-orange);
    font-size: 16px;
}

.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center 45%;
    border-radius: 20px;
}

.intro-image .image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px dashed var(--gray-400);
}

.intro-image .image-placeholder span {
    color: var(--text-light);
    font-size: 14px;
}

/* All Programs Section */
.programs-all {
    padding: 100px 0;
    background: radial-gradient(ellipse at 0% 0%, rgba(255, 107, 53, 0.12) 0%, transparent 40%), radial-gradient(ellipse at 100% 100%, rgba(220, 38, 38, 0.08) 0%, transparent 40%), radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 50%), linear-gradient(180deg, var(--bg-quaternary) 0%, #fafafa 50%, var(--bg-quaternary) 100%);
}

.programs-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 1100px) {
    .programs-list {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Large Program Card */
.program-card-large {
    position: relative;
    display: flex;
    flex-direction: column;
    background: 
        linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, transparent 40%),
        var(--bg-primary);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 107, 53, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 107, 53, 0.15);
}

.program-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #E85A24, #FF8C5A, #FF6B35);
    background-size: 300% 100%;
    animation: gradientShift 3s ease infinite;
    z-index: 1;
}

.program-card-large::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.program-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2), 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

/* Diet Program Card Large - Green Theme */
.program-card-large.diet {
    background: 
        linear-gradient(135deg, rgba(46, 204, 113, 0.08) 0%, transparent 40%),
        var(--bg-primary);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.15);
}

.program-card-large.diet::before {
    background: linear-gradient(90deg, #2ECC71, #27AE60, #58D68D, #2ECC71);
    background-size: 300% 100%;
}

.program-card-large.diet::after {
    background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
}

.program-card-large.diet:hover {
    box-shadow: 0 25px 50px rgba(46, 204, 113, 0.2), 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(46, 204, 113, 0.3);
}

.program-card-large.diet .program-card-content::before {
    background: linear-gradient(180deg, #2ECC71, #27AE60);
}

.program-card-large.diet .program-card-title {
    color: #2ECC71;
}

.program-card-large.diet .program-card-features li i {
    color: #2ECC71;
    background: rgba(46, 204, 113, 0.1);
}

.program-card-large.diet .program-card-price .price {
    color: #2ECC71;
}

/* Bundle Program Card Large - Purple Theme */
.program-card-large.bundle {
    background: 
        linear-gradient(135deg, rgba(155, 89, 182, 0.08) 0%, transparent 40%),
        var(--bg-primary);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(155, 89, 182, 0.1);
    border: 1px solid rgba(155, 89, 182, 0.15);
}

.program-card-large.bundle::before {
    background: linear-gradient(90deg, #9B59B6, #8E44AD, #A569BD, #9B59B6);
    background-size: 300% 100%;
}

.program-card-large.bundle::after {
    background: radial-gradient(circle, rgba(155, 89, 182, 0.1) 0%, transparent 70%);
}

.program-card-large.bundle:hover {
    box-shadow: 0 25px 50px rgba(155, 89, 182, 0.2), 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(155, 89, 182, 0.3);
}

.program-card-large.bundle .program-card-content::before {
    background: linear-gradient(180deg, #9B59B6, #8E44AD);
}

.program-card-large.bundle .program-card-title {
    color: #9B59B6;
}

.program-card-large.bundle .program-card-features li i {
    color: #9B59B6;
    background: rgba(155, 89, 182, 0.1);
}

.program-card-large.bundle .program-card-price .price {
    color: #9B59B6;
}

/* Coaching Program Card Large - Blue Theme */
.program-card-large.coaching {
    background: 
        linear-gradient(135deg, rgba(52, 152, 219, 0.08) 0%, transparent 40%),
        var(--bg-primary);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.15);
}

.program-card-large.coaching::before {
    background: linear-gradient(90deg, #3498DB, #2980B9, #5DADE2, #3498DB);
    background-size: 300% 100%;
}

.program-card-large.coaching::after {
    background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
}

.program-card-large.coaching:hover {
    box-shadow: 0 25px 50px rgba(52, 152, 219, 0.2), 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(52, 152, 219, 0.3);
}

.program-card-large.coaching .program-card-content::before {
    background: linear-gradient(180deg, #3498DB, #2980B9);
}

.program-card-large.coaching .program-card-title {
    color: #3498DB;
}

.program-card-large.coaching .program-card-features li i {
    color: #3498DB;
    background: rgba(52, 152, 219, 0.1);
}

.program-card-large.coaching .program-card-price .price {
    color: #3498DB;
}

.program-card-large.coming-soon {
    opacity: 0.7;
    background: var(--bg-primary);
    border-color: var(--gray-200);
    box-shadow: var(--shadow-lg);
}

.program-card-large.coming-soon::before {
    background: linear-gradient(90deg, var(--gray-400), var(--gray-500), var(--gray-400));
}

.program-card-large.coming-soon::after {
    display: none;
}

.program-card-large.coming-soon:hover {
    transform: none;
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-200);
}

.program-card-image {
    position: relative;
    height: 350px;
    min-height: 350px;
    overflow: hidden;
}

.program-card-image .program-placeholder {
    width: 100%;
    height: 100%;
    min-height: 250px;
    background: linear-gradient(135deg, #bbbbbb 0%, #888888 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.program-card-image .program-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
}

.program-card-image .program-placeholder i {
    font-size: 100px;
    color: rgba(255, 255, 255, 1.0);
    animation: pulsePlaceholder 2s ease-in-out infinite;
}

.program-card-image img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
}

.program-card-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.program-card-image .image-placeholder span {
    color: var(--text-light);
    font-size: 14px;
    text-align: center;
}

.program-card-image .program-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: inline-block;
    width: auto;
    background: linear-gradient(135deg, #FF6B35, #E85A24);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.program-card-image .program-badge.soon {
    background: linear-gradient(135deg, var(--gray-500), var(--gray-600));
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.program-card-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.program-card-content::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, #FF6B35, #E85A24);
    border-radius: 0 4px 4px 0;
}

.program-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: #FF6B35;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.program-card-description {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.program-card-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.program-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-medium);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.program-card-features li:hover {
    transform: translateX(5px);
}

.program-card-features li i {
    color: var(--primary-orange);
    font-size: 12px;
    width: 20px;
    height: 20px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid var(--gray-200);
}

.program-card-price .price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--primary-orange);
    line-height: 1;
}

.program-card-price .price-note {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 5px;
}

/* What's Included Section */
.programs-included {
    padding: 100px 0;
    background: radial-gradient(ellipse at 100% 0%, rgba(255, 107, 53, 0.1) 0%, transparent 45%), radial-gradient(ellipse at 0% 100%, rgba(220, 38, 38, 0.06) 0%, transparent 45%), radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.5) 0%, transparent 60%), linear-gradient(135deg, var(--bg-primary) 0%, #fff8f5 50%, var(--bg-primary) 100%);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.included-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--bg-primary);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-200);
}

.included-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.included-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--text-white);
    box-shadow: var(--shadow-orange);
}

.included-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.included-card p {
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.6;
}

/* FAQ Section */
.programs-faq {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 50% 100%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
        var(--bg-tertiary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-primary);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--primary-orange);
    transition: var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.7;
}

/* Programs CTA Section */
.programs-cta {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 50% 50%, transparent 20%, rgba(255, 107, 53, 0.1) 100%),
        var(--gray-cta);
}

/* Programs Page Responsive */
@media (max-width: 1200px) {
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-image {
        order: -1;
        max-width: 500px;
    }
    
    .program-card-large {
        grid-template-columns: 1fr;
    }
    
    .program-card-image {
        height: 320px;
        min-height: 320px;
        max-height: 320px;
    }
    
    .program-card-content {
        padding: 30px;
    }
    
    .program-card-features {
        grid-template-columns: 1fr;
    }
    
    .program-card-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .programs-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .program-card-image {
        height: 320px;
        min-height: 320px;
        max-height: 320px;
    }
    
    .program-card-image img,
    .program-card-image .program-placeholder {
        min-height: 320px;
        max-height: 320px;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .programs-hero-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .program-card-content {
        padding: 25px;
    }
    
    .program-card-title {
        font-size: 26px;
    }
}

/* ====================================
   CONTACT PAGE STYLES
   ==================================== */

/* Contact Hero */
.contact-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: var(--header-height);
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.contact-hero-bg img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center 55%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-hero-bg img.loaded {
    opacity: 1;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.contact-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.2);
    color: var(--text-white);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.contact-hero-tag i {
    color: var(--primary-orange);
    font-size: 18px;
}

.contact-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 10vw, 100px);
    color: var(--text-white);
    letter-spacing: 6px;
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-hero-title span {
    color: var(--primary-orange);
}

.contact-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Contact Main Section */
.contact-main {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 50% 50%, transparent 0%, rgba(255, 107, 53, 0.04) 50%),
        var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
    background: var(--bg-primary);
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FF6B35, #E85A24, #FF8C5A);
}

.contact-form-wrapper::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.contact-form-wrapper .section-tag {
    display: inline-block;
    margin-bottom: 15px;
}

.contact-form-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    color: var(--text-dark);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.contact-form-title span {
    color: var(--primary-orange);
}

.contact-form-description {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--bg-secondary);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    position: relative;
    background: var(--bg-primary);
    padding: 40px;
    border-radius: 25px;
    color: var(--text-dark);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FF6B35, #E85A24, #FF8C5A);
}

.contact-info-card::after {
    content: '\f0e0';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 120px;
    color: rgba(255, 107, 53, 0.05);
    pointer-events: none;
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-info-card > p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-orange);
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-info-text .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.contact-info-text a,
.contact-info-text span:not(.label) {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.contact-info-text a:hover {
    color: var(--primary-orange);
}

.contact-social {
    padding-top: 25px;
    border-top: 1px solid var(--gray-200);
}

.contact-social > span {
    display: block;
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--text-medium);
}

.contact-social .social-links {
    display: flex;
    gap: 12px;
}

.contact-social .social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-orange);
    transition: var(--transition-normal);
}

.contact-social .social-link:hover {
    background: var(--primary-orange);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Contact FAQ Section */
.contact-faq {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 50% 50%, transparent 0%, rgba(255, 107, 53, 0.04) 50%),
        var(--bg-quaternary);
}

/* Contact CTA */
.contact-cta {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 50% 50%, transparent 20%, rgba(255, 107, 53, 0.1) 100%),
        var(--gray-cta);
}

.contact-cta .cta-content h2 span {
    color: var(--primary-orange);
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 35px;
    }
    
    .contact-info-wrapper {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .contact-info-card {
        padding: 30px;
    }
}

/* ====================================
   LEGAL PAGES STYLES (Privacy & Terms)
   ==================================== */

.legal-hero {
    position: relative;
    height: 45vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(
            ellipse at 30% 20%,
            rgba(255, 107, 53, 0.15) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 70% 80%,
            rgba(220, 38, 38, 0.1) 0%,
            transparent 50%
        ),
        linear-gradient(
            135deg,
            var(--gray-900) 0%,
            #0f0f0f 100%
        );
    overflow: hidden;
}

.legal-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.legal-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.legal-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-orange);
    margin-bottom: 25px;
}

.legal-hero-tag i {
    font-size: 1rem;
}

.legal-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    color: white;
    line-height: 1;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.legal-hero-title span {
    color: var(--primary-orange);
}

.legal-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
}

/* Legal Content Section */
.legal-content {
    padding: 80px 0 100px;
    background: var(--bg-primary);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-last-updated {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-tertiary);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.legal-last-updated i {
    color: var(--primary-orange);
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.legal-section h2 i {
    color: var(--primary-orange);
    font-size: 1.4rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.legal-section ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 50%;
}

.legal-section ul li strong {
    color: var(--text-dark);
}

/* Legal Contact Info */
.legal-contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.legal-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-tertiary);
    border-radius: 10px;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition-normal);
    text-decoration: none;
}

.legal-contact-link:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

.legal-contact-link i {
    font-size: 1.1rem;
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
    .legal-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .legal-hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .legal-content {
        padding: 50px 0 70px;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h2 i {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .legal-contact-info {
        flex-direction: column;
    }
    
    .legal-contact-link {
        justify-content: center;
    }
}

/* RTL Support for Legal Pages */
[dir="rtl"] .legal-section ul li {
    padding-left: 0;
    padding-right: 30px;
}

[dir="rtl"] .legal-section ul li::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .legal-section h2 {
    flex-direction: row-reverse;
}

@media (max-width: 480px) {
    .contact-hero-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .contact-info-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .contact-info-text a,
    .contact-info-text span:not(.label) {
        font-size: 14px;
    }
}

/* ====================================
   PROMO BANNER STYLES
   ==================================== */

.promo-banner {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #FF6B35 0%, #E85A24 50%, #FF8C5A 100%);
    color: white;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.promo-banner:not(.hidden) {
    animation: slideDown 0.5s ease-out;
}

.promo-banner.hidden {
    display: none !important;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.promo-banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.promo-banner-text {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-banner-text i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.promo-banner-code {
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 14px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    border: 1px dashed rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-fast);
}

.promo-banner-code:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.02);
}

.promo-banner-discount {
    margin-left: 6px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
}

.promo-banner-close {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition-fast);
    padding: 5px;
    font-size: 16px;
}

.promo-banner-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Adjust body padding when banner is visible */
body.promo-banner-visible .checkout-page,
body.promo-banner-visible .hero-section,
body.promo-banner-visible .contact-hero,
body.promo-banner-visible .about-hero,
body.promo-banner-visible .programs-hero,
body.promo-banner-visible .legal-hero {
    padding-top: calc(var(--header-height) + 50px);
}

@media (max-width: 768px) {
    .promo-banner {
        padding: 10px 40px 10px 15px;
    }
    
    .promo-banner-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .promo-banner-text {
        font-size: 13px;
    }
    
    .promo-banner-code {
        font-size: 14px;
        padding: 5px 12px;
    }
    
    .promo-banner-discount {
        font-size: 13px;
    }
}

/* ====================================
   PROMO CODE SECTION (CHECKOUT)
   ==================================== */

.promo-code-section {
    margin-bottom: 5px;
}

.promo-code-section label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.promo-code-input-wrapper {
    display: flex;
    gap: 10px;
}

.promo-code-input-wrapper input {
    flex: 1;
    padding: 12px 15px;
    font-size: 14px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.promo-code-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.promo-code-input-wrapper input::placeholder {
    text-transform: none;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0;
}

.btn-apply-promo {
    padding: 12px 20px;
    background: var(--gray-800);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.btn-apply-promo:hover {
    background: var(--primary-orange);
    transform: translateY(-1px);
}

.btn-apply-promo:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-apply-promo.loading {
    pointer-events: none;
}

.promo-message {
    margin-top: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    display: none;
}

.promo-message.success {
    display: block;
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.promo-message.error {
    display: block;
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.promo-message i {
    margin-right: 8px;
}

/* Discount Row in Order Summary */
.order-row.discount-row {
    color: #27ae60;
}

.order-row.discount-row .discount-amount {
    font-weight: 600;
}

.order-row.bundle-discount-row {
    color: #9B59B6;
}

.order-row.bundle-discount-row i {
    margin-right: 6px;
}

.order-row.bundle-discount-row .discount-amount {
    font-weight: 600;
    color: #9B59B6;
}

#appliedPromoCode {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    background: rgba(39, 174, 96, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 5px;
}

@media (max-width: 480px) {
    .promo-code-input-wrapper {
        flex-direction: column;
    }
    
    .btn-apply-promo {
        width: 100%;
    }
}

