/* 
   -----------------------------------------------------------------------------------
   COACH COUMI - ELITE BOXING WEBSITE (Multi-Page)
   Theme: Dark, Intense, Premium, Athletic
   Colors: Matte Black (#0a0a0a), Blood Red (#D80032), Gold (#D4AF37), White
   -----------------------------------------------------------------------------------
*/

/* ============================
   PRELOADER
   ============================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.preloader-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Glove Animations */
.preloader-gloves {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 3.5rem;
    height: 80px;
}

.glove-left {
    animation: punchLeft 1s ease-in-out infinite;
    transform-origin: right center;
}

.glove-right {
    animation: punchRight 1s ease-in-out infinite 0.25s;
    transform-origin: left center;
    transform: scaleX(-1);
}

@keyframes punchLeft {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    30% {
        transform: translateX(18px) rotate(-8deg) scale(1.15);
    }

    50% {
        transform: translateX(12px) rotate(-4deg) scale(1.05);
    }
}

@keyframes punchRight {

    0%,
    100% {
        transform: scaleX(-1) translateX(0) rotate(0deg);
    }

    30% {
        transform: scaleX(-1) translateX(18px) rotate(-8deg) scale(1.15);
    }

    50% {
        transform: scaleX(-1) translateX(12px) rotate(-4deg) scale(1.05);
    }
}











/* Brand */
.preloader-brand {
    animation: brandPulse 2s ease-in-out infinite;
}

.preloader-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    letter-spacing: 8px;
    color: #fff;
}

.preloader-logo span {
    color: #D4AF37;
    margin-left: 15px;
}

@keyframes brandPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.03);
    }
}

/* Loading Bar */
.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.preloader-bar-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #D4AF37, #FFFFFF, #D4AF37);
    background-size: 200% 100%;
    animation: barFill 1.8s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes barFill {
    0% {
        background-position: 100% 0;
        transform: scaleX(0.3);
        transform-origin: left;
    }

    50% {
        transform: scaleX(1);
        transform-origin: left;
    }

    100% {
        background-position: 0 0;
        transform: scaleX(0.3);
        transform-origin: right;
    }
}

/* Loading Text */
.preloader-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 700;
    animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes textPulse {

    0%,
    100% {
        opacity: 0.3;
        letter-spacing: 6px;
    }

    50% {
        opacity: 0.7;
        letter-spacing: 10px;
    }
}

:root {
    --primary-color: #D4AF37;
    --primary-dark: #aa8c2c;
    --secondary-color: #FFFFFF;
    --secondary-dark: #e0e0e0;
    --bg-black: #0a0a0a;
    --bg-dark: #111111;
    --bg-card: #1a1a1a;
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-gray: #999999;
    --text-muted: #666666;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.6);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================
   RESET & BASE
   ============================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

/* ============================
   UTILITIES
   ============================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-primary {
    color: var(--primary-color);
}

.text-gold {
    color: var(--secondary-color);
}

.text-muted {
    color: var(--text-muted);
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.bg-black {
    background-color: var(--bg-black);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.mt-5 {
    margin-top: 3rem;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: white;
    color: black;
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: black;
    padding: 10px 24px;
    font-weight: bold;
    border-radius: 2px;
}

.btn-gold:hover {
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-1px);
}

.btn-outline {
    border: 2px solid var(--text-gray);
    color: var(--text-gray);
    padding: 14px 32px;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* ============================
   NAVIGATION
   ============================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    letter-spacing: 3px;
}

.logo span {
    margin-left: 10px;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-gray);
    letter-spacing: 1px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav-btn {
    display: none;
    /* Hidden on desktop by default */
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: white;
    margin: 6px auto;
    transition: 0.3s;
}

/* Hamburger animation */
.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================
   HERO SECTION (Home)
   ============================ */
.hero {
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background: url('4.jpeg') no-repeat center 20%/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.65) 40%, rgba(0, 0, 0, 0.35) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 8px 18px;
    margin-bottom: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
}

.hero-title {
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.85;
    margin-bottom: 12px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 2rem);
    color: var(--secondary-color);
    margin-bottom: 18px;
    font-family: var(--font-heading);
    letter-spacing: 3px;
}

.hero-text {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    margin-bottom: 30px;
    max-width: 550px;
    color: var(--text-light);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
    max-width: fit-content;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-color);
    letter-spacing: 2px;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.12);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    opacity: 0.4;
}

.mouse {
    width: 22px;
    height: 34px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 11px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 7px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 5px;
    }

    100% {
        opacity: 0;
        top: 18px;
    }
}

.scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

.delay-4 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================
   PAGE HEADERS (Subpages)
   ============================ */
.page-header {
    padding: 160px 0 80px;
    position: relative;
    background: url('A4.jpeg') no-repeat center 20%/cover;
}

.page-header-programs {
    background-image: url('A2.jpeg');
}

.page-header-results {
    background-image: url('A3.jpeg');
}

.page-header-gallery {
    background-image: url('A2.jpeg');
    background-position: center 20%;
}

.page-header-contact {
    background-image: url('A4.jpeg');
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6));
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    margin-bottom: 10px;
}

.page-header-content p {
    color: var(--text-gray);
    font-size: 1.05rem;
    max-width: 500px;
}

/* ============================
   SECTION HEADERS
   ============================ */
.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 15px;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0 auto 30px;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--text-gray);
    font-size: 1rem;
}

/* ============================
   ABOUT PREVIEW (Home)
   ============================ */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: center;
}

.about-preview-img {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: var(--shadow-heavy);
}

.about-preview-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s;
}

.about-preview-img:hover img {
    transform: scale(1.03);
}

.about-preview-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-preview-text p {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.about-preview-text strong {
    color: var(--text-white);
}

.preview-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.preview-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(212, 175, 55, 0.08);
    border-left: 3px solid var(--secondary-color);
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.preview-badge i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* ============================
   6 WEEK SHRED PROMO BANNER (Home)
   ============================ */
.shred-promo-banner {
    position: relative;
    background: linear-gradient(135deg, #0d0d0d 0%, #141010 50%, #0d0d0d 100%);
    border-top: 3px solid var(--primary-color);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    overflow: hidden;
    padding: 40px 0;
}

.shred-promo-pulse {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    animation: shredPulseGlow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shredPulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.05); }
}

.shred-promo-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.shred-promo-left { flex: 0 0 auto; }

.shred-promo-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.shred-promo-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
}

.shred-promo-sub {
    font-size: 0.82rem;
    color: var(--text-gray);
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.shred-promo-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 0 0 auto;
}

.shred-promo-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 14px;
    transition: var(--transition);
}

.shred-promo-pill i { color: var(--primary-color); font-size: 0.85rem; }

.shred-promo-pill:hover {
    background: rgba(212, 175, 55, 0.18);
    border-color: var(--primary-color);
}

.shred-promo-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex: 0 0 auto;
}

.shred-promo-urgency {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    background: rgba(216, 0, 50, 0.15);
    border: 1px solid rgba(216, 0, 50, 0.4);
    padding: 5px 14px;
    animation: urgencyBlink 2s ease-in-out infinite;
}

@keyframes urgencyBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.6; }
}

.shred-promo-btn { white-space: nowrap; }

.shred-promo-learn {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.shred-promo-learn:hover { color: var(--primary-color); }

@media (max-width: 900px) {
    .shred-promo-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }
    .shred-promo-right {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
    }
}

/* ============================
   ABOUT (Full Page)
   ============================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.about-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.flag-badge {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 18px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.about-content strong {
    color: var(--text-white);
}

.achievements-list {
    margin-top: 30px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 16px 18px;
    border-left: 3px solid var(--secondary-color);
    transition: var(--transition);
}

.achievement-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
}

.achievement-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    flex-shrink: 0;
}

.achievement-icon i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.achievement-icon.red {
    background: rgba(216, 0, 50, 0.1);
    border-color: rgba(216, 0, 50, 0.2);
}

.achievement-icon.red i {
    color: var(--primary-color);
}

.achievement-icon.gold {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.2);
}

.achievement-item h4 {
    font-size: 1.15rem;
    margin-bottom: 2px;
}

.achievement-item p {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* ============================
   TIMELINE (About Page)
   ============================ */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: -33px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--bg-black);
    z-index: 2;
}

.timeline-content {
    background: var(--bg-card);
    padding: 25px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
}

.timeline-year {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================
   PROGRAMS CARDS (Home)
   ============================ */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.program-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
    display: block;
    color: inherit;
    text-decoration: none;
}

.program-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.program-card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.program-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s;
}

.program-card:hover .program-card-img img {
    transform: scale(1.1);
}

.program-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent, var(--bg-card));
}

.program-card-content {
    padding: 20px 18px;
}

.program-icon-i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.program-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.program-card p {
    color: var(--text-gray);
    font-size: 0.88rem;
}

/* ============================
   PROGRAM DETAILS (Programs Page)
   ============================ */
.program-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.program-detail.reverse {
    direction: rtl;
}

.program-detail.reverse>* {
    direction: ltr;
}

.program-detail-img {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: var(--shadow-heavy);
}

.program-detail-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s;
}

.program-detail-img:hover img {
    transform: scale(1.03);
}

.program-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.program-detail-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.feature-list {
    margin-bottom: 25px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-light);
    font-size: 0.92rem;
}

.feature-list i {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.section-spacer {
    height: 60px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 60px;
}

/* ============================
   TRANSFORMATIONS
   ============================ */
.transformations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.transformation-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: var(--transition);
}

.transformation-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.before-after {
    display: flex;
    gap: 3px;
}

.img-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 280px;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.transformation-card:hover .img-container img {
    transform: scale(1.05);
}

.badg-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 3px 10px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    z-index: 2;
}

.after-label {
    background: rgba(212, 175, 55, 0.85);
}

.transformation-info {
    padding: 18px 20px;
}

.stars {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 6px;
    letter-spacing: 2px;
}

.transformation-info h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.transformation-info p {
    color: var(--text-gray);
    font-size: 0.88rem;
    margin-bottom: 4px;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 30px 25px;
    border: 1px solid var(--border-subtle);
    border-top: 3px solid var(--primary-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-quote {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    opacity: 0.6;
}

.testimonial-card>p {
    color: var(--text-gray);
    font-size: 0.92rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    border-top: 1px solid var(--border-subtle);
    padding-top: 15px;
}

.testimonial-stars {
    color: var(--secondary-color);
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ============================
   GALLERY (Home - Small)
   ============================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 6px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) contrast(1.1);
    transition: all 0.5s;
}

.gallery-item:hover img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.08);
}

.item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.item-1 img {
    height: 100%;
}

/* ============================
   GALLERY FULL (Gallery Page)
   ============================ */
.gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-full-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
}

.gallery-full-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
    filter: grayscale(30%);
}

.gallery-full-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.06);
}

.gallery-full-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-full-item:hover .gallery-full-overlay {
    transform: translateY(0);
}

.gallery-full-overlay span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: white;
}

/* ============================
   CTA BANNER
   ============================ */
.cta-banner {
    position: relative;
    padding: 80px 0;
    background: url('4.jpeg') no-repeat center center/cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 10px;
}

.cta-content p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 1rem;
}

/* ============================
   CONTACT
   ============================ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: start;
}

.contact-info>p {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 1rem;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.contact-item h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-gray);
    font-size: 0.88rem;
    margin-bottom: 2px;
}

.contact-item strong {
    color: var(--text-light);
}

.map-container {
    margin-top: 20px;
    border: 1px solid var(--border-subtle);
    overflow: hidden;
}

.contact-form-container {
    background: var(--bg-card);
    padding: 35px;
    border: 1px solid var(--border-subtle);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 16px;
}

input,
select,
textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 13px 15px;
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

select {
    cursor: pointer;
    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='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

select option {
    background: #1a1a1a;
    color: white;
}

/* ============================
   FOOTER
   ============================ */
footer {
    padding: 50px 0 0;
    border-top: 1px solid var(--border-subtle);
    background: #050505;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-subtle);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 5px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.82rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-social a {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-left: 15px;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding: 18px;
    color: var(--text-muted);
    font-size: 0.78rem;
}

/* ============================
   FEATURED VIDEOS
   ============================ */
.featured-videos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.featured-video-item {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.featured-video-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
}

.featured-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.featured-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================
   VIDEO PLAY OVERLAY
   ============================ */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    cursor: pointer;
    transition: var(--transition);
    z-index: 3;
}

.video-play-overlay:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.15));
}

.play-btn-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.85);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.play-btn-circle.small {
    width: 56px;
    height: 56px;
}

.video-play-overlay:hover .play-btn-circle {
    transform: scale(1.12);
    background: rgba(212, 175, 55, 1);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
}

.play-btn-circle i {
    color: #fff;
    font-size: 1.4rem;
    margin-left: 3px;
}

.play-btn-circle.small i {
    font-size: 1.1rem;
    margin-left: 2px;
}

.video-label {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ============================
   VIDEO GALLERY GRID
   ============================ */
.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.video-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 9 / 16;
    background: #000;
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: var(--transition);
}

.video-gallery-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
}

.video-gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* ============================
   VIDEO LIGHTBOX
   ============================ */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
}

.lightbox-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content video {
    width: 100%;
    max-height: 85vh;
    border-radius: 4px;
    background: #000;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 5;
}

.lightbox-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* ============================
   PHOTO GALLERY GRID
   ============================ */
.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.photo-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1 / 1;
    background: #000;
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: var(--transition);
}

.photo-gallery-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
}

.photo-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.photo-gallery-item:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay i {
    color: var(--primary-color);
    font-size: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ============================
   PHOTO LIGHTBOX
   ============================ */
.photo-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.photo-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content img {
    width: 100%;
    max-height: 85vh;
    border-radius: 4px;
    background: #000;
    display: block;
}

/* ============================
   RESPONSIVE — TABLET
   ============================ */
@media (max-width: 992px) {
    .section-padding {
        padding: 80px 0;
    }

    .about-grid,
    .about-preview,
    .contact-wrapper,
    .program-detail,
    .program-detail.reverse {
        grid-template-columns: 1fr;
        gap: 35px;
        direction: ltr;
    }

    .about-image img,
    .about-preview-img img {
        height: 350px;
    }

    .program-detail-img img {
        height: 300px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .item-1 {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .gallery-item,
    .gallery-item img {
        height: 220px;
    }

    .gallery-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-videos {
        grid-template-columns: 1fr;
    }

    .video-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .photo-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================
   RESPONSIVE — MOBILE
   ============================ */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .container {
        padding: 0 16px;
    }

    /* Nav */
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        height: 100dvh;
        width: 100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        justify-content: center;
        gap: 0;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 18px 0;
        font-size: 1.3rem;
        text-align: center;
    }

    .nav-link::after {
        display: none;
    }

    .btn-gold {
        margin-top: 10px;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: row;
        gap: 15px;
        padding: 15px;
        width: 100%;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .stat-divider {
        width: 1px;
        height: 30px;
    }

    .scroll-indicator {
        display: none;
    }

    /* Page Header */
    .page-header {
        padding: 120px 0 50px;
    }

    /* About Preview */
    .about-preview {
        grid-template-columns: 1fr;
    }

    .about-preview-img img {
        height: 300px;
    }

    .preview-badges {
        gap: 8px;
    }

    /* Programs */
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .program-card-img {
        height: 160px;
    }

    .program-card-img img.shift-mobile {
        object-position: center 13%;
    }

    /* Program Detail */
    .program-detail,
    .program-detail.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .program-detail-img img {
        height: 250px;
    }

    .section-spacer {
        height: 40px;
        margin-bottom: 40px;
    }

    /* Transformations */
    .transformations-grid {
        grid-template-columns: 1fr;
    }

    .img-container {
        height: 200px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 180px);
    }

    .item-1 {
        grid-column: 1 / 3;
    }

    .gallery-item,
    .gallery-item img {
        height: 180px;
    }

    .gallery-full-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-full-item {
        height: 200px;
    }

    .video-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .photo-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .play-btn-circle {
        width: 56px;
        height: 56px;
    }

    .play-btn-circle.small {
        width: 44px;
        height: 44px;
    }

    .video-label {
        font-size: 1rem;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 25px 18px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-social a {
        margin: 0 10px;
    }

    /* CTA */
    .cta-banner {
        padding: 60px 0;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================
   RESPONSIVE — SMALL MOBILE
   ============================ */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-badge {
        font-size: 0.6rem;
        padding: 6px 12px;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .before-after {
        flex-direction: column;
        gap: 10px;
    }

    .img-container {
        height: 220px;
        /* Increased height for better visibility */
    }

    .badg-label {
        font-size: 0.65rem;
        padding: 4px 10px;
    }

    .transformation-card {
        margin-bottom: 30px;
        background: var(--bg-card);
        /* Ensure contrast */
        border: 1px solid var(--border-subtle);
        border-radius: 8px;
        overflow: hidden;
    }

    .transformation-info {
        padding: 20px 15px;
    }

    .gallery-full-grid {
        grid-template-columns: 1fr;
    }

    .gallery-full-item {
        height: 250px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .item-1 {
        grid-column: auto;
    }

    .gallery-item,
    .gallery-item img {
        height: 200px;
    }

    .program-detail-content h2 {
        font-size: 1.8rem;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-dot {
        left: -23px;
        width: 12px;
        height: 12px;
    }

    .timeline-content {
        padding: 18px;
    }

    /* Mobile Header Layout */
    .nav-container {
        padding: 0 10px;
        /* Reduced padding for more space */
    }

    .mobile-nav-btn {
        display: inline-flex;
        padding: 8px 16px;
        font-size: 0.85rem;
        margin-left: auto;
        /* Push to right */
        margin-right: 15px;
        white-space: nowrap;
        height: auto;
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo-img {
        height: 45px;
    }

    /* Mobile Menu Book Now Button (Large) */
    .nav-menu .btn-gold {
        display: block;
        /* Ensure it is visible */
        width: auto;
        /* Allow button to grow with text */
        min-width: 200px;
        padding: 15px 30px;
        /* Add horizontal padding */
        text-align: center;
        margin-top: 20px;
        font-size: 1.2rem;
        letter-spacing: 2px;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        white-space: nowrap !important;
        background: #ffffff !important;
        color: #000000;
    }
}

/* ============================
   HIGHLIGHTED OFFER SECTION
   ============================ */
.highlighted-offer {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.highlighted-offer-img-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.highlighted-offer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.highlighted-offer:hover .highlighted-offer-img {
    transform: scale(1);
}

.highlighted-offer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.75) 50%,
            rgba(0, 0, 0, 0.35) 100%);
}

.highlighted-offer-content {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
    max-width: 680px;
}

.highlighted-offer-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #000;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 3px;
    padding: 7px 20px;
    margin-bottom: 22px;
    text-transform: uppercase;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
    animation: ribbonPulse 2.5s ease-in-out infinite;
}

@keyframes ribbonPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
    }

    50% {
        box-shadow: 0 4px 36px rgba(212, 175, 55, 0.65);
    }
}

.highlighted-offer-title {
    font-size: clamp(2.4rem, 6vw, 4rem);
    margin-bottom: 18px;
    line-height: 1;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
}

.highlighted-offer-desc {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 540px;
}

@media (max-width: 600px) {
    .highlighted-offer {
        min-height: 420px;
    }

    .highlighted-offer-content {
        padding: 60px 20px;
    }

    .highlighted-offer-title {
        font-size: 2.2rem;
    }
}

/* ============================
   6 WEEK SHRED OFFER (programs.html)
   ============================ */
.shred-offer {
    min-height: 640px;
    align-items: center;
    justify-content: center;
}

.shred-overlay {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.80) 60%,
            rgba(0, 0, 0, 0.88) 100%) !important;
}

.shred-offer-content {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
    width: 100%;
}

.shred-offer-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.shred-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

.shred-title {
    font-size: clamp(3rem, 9vw, 6rem);
    line-height: 0.9;
    margin: 0;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.shred-subtitle {
    font-size: 0.95rem;
    color: var(--text-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

.shred-mission {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}

.shred-mission i {
    color: var(--primary-color);
    font-size: 1rem;
}

.shred-mission strong {
    color: var(--primary-color);
}

/* 4-Pillar Grid */
.shred-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 700px;
}

.shred-pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 3px solid var(--primary-color);
    transition: var(--transition);
}

.shred-pillar:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

.shred-pillar i {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.shred-pillar span {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.3;
}

/* Online + In-Person Hybrid Box */
.shred-hybrid-box {
    width: 100%;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-left: 4px solid var(--primary-color);
    padding: 20px 24px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 10px 18px;
    text-align: left;
}

.shred-hybrid-icon {
    grid-row: 1 / 3;
    display: flex;
    align-items: flex-start;
    padding-top: 4px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.shred-hybrid-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 6px;
}

.shred-hybrid-text p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
    font-family: var(--font-body);
    text-transform: none;
    letter-spacing: 0;
}

.shred-hybrid-tags {
    grid-column: 2;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.shred-hybrid-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--primary-color);
}

.shred-hybrid-tag--local {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
}

@media (max-width: 600px) {
    .shred-hybrid-box {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .shred-hybrid-icon {
        grid-row: auto;
        font-size: 1.2rem;
    }
    .shred-hybrid-tags {
        grid-column: 1;
    }
}

/* CTA Row */
.shred-cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.shred-btn {
    font-size: 1.3rem;
    padding: 16px 44px;
    letter-spacing: 2px;
}

.shred-urgency {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-gray);
    border-left: 2px solid var(--primary-color);
    padding-left: 14px;
}

/* Responsive */
@media (max-width: 768px) {

    /* Keep background image style — just less zoomed */
    .shred-offer {
        min-height: unset;
        flex-direction: row;
        /* reset — keep overlapping layout */
        background: #0a0a0a;
        align-items: center;
    }

    .shred-offer .highlighted-offer-img-wrap {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .shred-offer .highlighted-offer-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 62% center;
        /* shift right to show the fighter */
        transform: none;
        /* remove the scale zoom */
        transition: none;
    }

    .shred-offer .highlighted-offer-overlay {
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.82) 0%,
                rgba(0, 0, 0, 0.75) 50%,
                rgba(0, 0, 0, 0.88) 100%) !important;
    }

    .shred-offer-content {
        position: relative;
        z-index: 2;
        background: transparent;
        padding: 50px 18px 50px;
        width: 100%;
        border-top: none;
    }

    .shred-offer-inner {
        gap: 16px;
    }

    .shred-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 100%;
    }

    .shred-cta-row {
        flex-direction: column;
        gap: 14px;
    }

    .shred-urgency {
        border-left: none;
        border-top: 2px solid var(--primary-color);
        padding-left: 0;
        padding-top: 10px;
        text-align: center;
    }

    .shred-title {
        font-size: 2.8rem;
    }

    .shred-tagline {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .shred-mission {
        font-size: 0.95rem;
        padding: 10px 16px;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .shred-title {
        font-size: 2.3rem;
    }

    .shred-btn {
        font-size: 1.05rem;
        padding: 14px 28px;
        width: 100%;
        justify-content: center;
    }

    .shred-pillar {
        padding: 14px 8px;
    }
}

/* ============================
   FIGHT RECORD / EXPERIENCE
   ============================ */
.fight-record-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.fight-card {
    display: flex;
    align-items: stretch;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-left: 4px solid var(--border-subtle);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.fight-card.fight-win {
    border-left-color: #4caf50;
}

.fight-card.fight-loss {
    border-left-color: #e74c3c;
}

.fight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.5);
}

.fight-card.fight-win:hover {
    border-color: #4caf50;
}

.fight-card.fight-loss:hover {
    border-color: #e74c3c;
}

.fight-num {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.3);
    padding: 0 10px;
    flex-shrink: 0;
}

.fight-result-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 900;
    flex-shrink: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.fight-result-badge.win {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
}

.fight-result-badge.loss {
    background: rgba(231, 76, 60, 0.12);
    color: #e74c3c;
}

.fight-details {
    padding: 16px 14px;
    flex: 1;
}

.fight-details h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--text-white);
    font-family: var(--font-heading);
    letter-spacing: 1px;
    line-height: 1.2;
}

.fight-details p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.fight-method {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--secondary-color);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 4px 10px;
}

.fight-method i {
    font-size: 0.7rem;
}

/* Record Summary Bar */
.fight-record-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-top: 3px solid var(--secondary-color);
    padding: 28px 20px;
    margin-top: 10px;
}

.record-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 30px;
}

.record-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: 2px;
}

.record-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
}

.record-divider {
    width: 1px;
    height: 55px;
    background: var(--border-subtle);
}

@media (max-width: 768px) {
    .fight-record-grid {
        grid-template-columns: 1fr;
    }

    .fight-record-summary {
        gap: 20px;
    }

    .record-divider {
        display: none;
    }

    .record-stat {
        padding: 10px 20px;
    }
}