/* =============================================
   YEMEN FIGHT CLUB - Stylesheet
   Modern, Fast, Responsive
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --primary-light: #ff6b6b;
    --accent: #f4a261;
    --dark: #0a0a0a;
    --dark-2: #111111;
    --dark-3: #1a1a1a;
    --dark-4: #222222;
    --dark-5: #2a2a2a;
    --gray: #888888;
    --gray-light: #aaaaaa;
    --white: #ffffff;
    --white-soft: #f0f0f0;
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-dark));
    --gradient-dark: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 30px rgba(230, 57, 70, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--white-soft);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Preloader ---------- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    animation: loaderPulse 1.5s infinite;
}

.loader-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary);
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--white);
    letter-spacing: 6px;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(230, 57, 70, 0.3);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    filter: drop-shadow(0 0 6px rgba(230, 57, 70, 0.4));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1;
    letter-spacing: 3px;
    color: var(--white);
}

.logo-text small {
    font-size: 14px;
    color: var(--primary);
    letter-spacing: 4px;
}

.nav-menu {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-light);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(230, 57, 70, 0.15);
}

.nav-link.active {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: 
        linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 50%, rgba(230,57,70,0.15) 100%),
        url('../img/gym-13.jpg') center 20%/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(230,57,70,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(230, 57, 70, 0.15);
    border: 1px solid rgba(230, 57, 70, 0.3);
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary-light);
    margin-bottom: 32px;
}

.hero-title {
    font-family: var(--font-heading);
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-size: clamp(48px, 10vw, 120px);
    line-height: 1;
    letter-spacing: 8px;
    color: var(--white);
}

.title-accent {
    color: var(--primary);
    text-shadow: 0 0 60px rgba(230, 57, 70, 0.4);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(230, 57, 70, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(230, 57, 70, 0.08);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 20px 48px;
    font-size: 16px;
}

/* ---------- Hero Stats ---------- */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    display: flex;
    align-items: center;
    color: var(--primary);
}

.stat strong {
    display: block;
    font-size: 16px;
    color: var(--white);
}

.stat small {
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* ---------- Hero Scroll Indicator ---------- */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* ---------- Sections ---------- */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    color: var(--white);
    letter-spacing: 2px;
}

.text-accent {
    color: var(--primary);
}

.section-desc {
    font-size: 17px;
    color: var(--gray);
    max-width: 500px;
    margin: 16px auto 0;
}

/* ---------- About Section ---------- */
.about {
    background: var(--dark-2);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-content h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray-light);
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.feature:hover {
    background: rgba(230, 57, 70, 0.08);
    border-color: rgba(230, 57, 70, 0.2);
}

.feature-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.feature span {
    font-size: 14px;
    font-weight: 500;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    border: 3px solid var(--primary);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.exp-icon {
    display: flex;
    align-items: center;
    color: var(--white);
}

.experience-badge strong {
    display: block;
    font-size: 16px;
}

.experience-badge small {
    font-size: 12px;
    opacity: 0.8;
}

/* ---------- Programs Section ---------- */
.programs {
    background: var(--dark);
}

/* ---------- Coach Story Section ---------- */
.coach-story {
    background: var(--dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.coach-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--primary));
}

.coach-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 48px 40px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(230, 57, 70, 0.12);
    border-radius: var(--radius-lg);
}

.coach-quote-mark {
    font-family: Georgia, serif;
    font-size: 120px;
    line-height: 1;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: -10px;
    left: 30px;
    pointer-events: none;
}

.coach-quote {
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--white-soft);
    line-height: 1.9;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.coach-quote strong {
    color: var(--primary-light);
    font-weight: 600;
    font-style: normal;
}

.coach-sign {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 24px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: var(--radius-xl);
}

.coach-sign-icon {
    display: flex;
    align-items: center;
    color: var(--primary);
}

.coach-sign strong {
    display: block;
    font-size: 15px;
    color: var(--white);
}

.coach-sign small {
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 1px;
}


.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.programs-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

.program-card {
    position: relative;
    padding: 40px 32px;
    background: var(--dark-3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    will-change: transform;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    will-change: transform;
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(230, 57, 70, 0.2);
}

.program-card.featured {
    background: linear-gradient(180deg, rgba(230,57,70,0.08) 0%, var(--dark-3) 100%);
    border-color: rgba(230, 57, 70, 0.2);
}

.program-card.featured::before {
    transform: scaleX(1);
}

.program-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 14px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-xl);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.program-icon {
    color: var(--primary);
    margin-bottom: 24px;
}

.program-title {
    font-family: var(--font-heading);
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 16px;
}

.program-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.program-features {
    text-align: left;
    margin-bottom: 28px;
}

.program-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
}

.program-btn {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(230, 57, 70, 0.1);
    color: var(--primary);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.program-btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

/* ---------- Motivation Banner ---------- */
.motivation-banner {
    position: relative;
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(10,10,10,0.85), rgba(230,57,70,0.15)),
        url('../img/gym-2.jpg') center/cover no-repeat fixed;
    text-align: center;
    overflow: hidden;
}

.motivation-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--dark) 80%);
}

.motivation-content {
    position: relative;
    z-index: 2;
}

.motivation-quote {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.motivation-author {
    font-size: 18px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 16px;
}

.motivation-sub {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ---------- Gallery Section ---------- */
.gallery {
    background: var(--dark-2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 12px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-lg {
    grid-column: span 2;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--white);
}

.gallery-cta {
    text-align: center;
    margin-top: 48px;
}

.gallery-cta p {
    color: var(--gray);
    margin-bottom: 16px;
}

/* ---------- Contact Section ---------- */
.contact {
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--dark-3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(230, 57, 70, 0.2);
    background: rgba(230, 57, 70, 0.05);
}

.contact-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 57, 70, 0.1);
    border-radius: var(--radius-md);
    color: var(--primary);
    flex-shrink: 0;
}

.contact-detail h3 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: normal;
    text-transform: none;
}

.contact-detail p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.7;
}

.phone-note {
    display: block;
    margin-top: 6px;
    font-size: 12px !important;
    color: var(--gray) !important;
}

.phone-revealed {
    font-size: 18px !important;
    font-weight: 600;
    color: var(--white) !important;
    direction: ltr;
    unicode-bidi: bidi-override;
}

.phone-revealed a {
    color: var(--white);
}

.phone-revealed a:hover {
    color: var(--primary);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    color: var(--primary) !important;
    font-size: 13px;
    font-weight: 500;
}

.map-link:hover {
    color: var(--primary-light) !important;
}

.social-link {
    display: inline-block;
    color: var(--primary) !important;
    font-weight: 600;
    font-size: 16px;
}

.social-link:hover {
    color: var(--primary-light) !important;
}

/* Map */
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-wrapper {
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.8) brightness(0.7) contrast(1.1);
    transition: filter 0.4s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0) brightness(1) contrast(1);
}

.map-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    color: var(--gray);
    font-size: 13px;
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* ---------- Footer ---------- */
.footer {
    background: var(--dark-2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 48px 0 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    letter-spacing: 3px;
    color: var(--white);
}

.footer-brand p {
    width: 100%;
    font-size: 13px;
    color: var(--gray);
    margin-top: -8px;
    padding-left: 44px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--gray);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray);
}

/* ---------- Animations (AOS-like) ---------- */
[data-aos] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-down"] {
    transform: translateY(-40px);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .about-grid {
        gap: 48px;
    }

    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .programs-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-item-lg {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 70px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 8px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 18px;
        padding: 14px 20px;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        order: -1;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        left: 20px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .programs-grid-2 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }

    .gallery-item-lg {
        grid-column: span 1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 80px 0;
    }

    .motivation-banner {
        padding: 60px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-brand p {
        padding-left: 0;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .title-line {
        letter-spacing: 4px;
    }

    .hero-badge {
        font-size: 11px;
        letter-spacing: 2px;
        padding: 6px 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .map-wrapper {
        height: 300px;
    }

    .contact-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ---------- Print Styles ---------- */
@media print {
    .navbar, .whatsapp-float, .hero-particles, #preloader, .hero-scroll {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .section {
        padding: 20px 0;
    }
}

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    z-index: 10002;
    padding: 10px;
    line-height: 1;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 24px;
    z-index: 10002;
}

.lightbox-nav:hover {
    background: var(--primary);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Video Thumbnail Styling in Grid */
.gallery-item.video-item::before {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(230, 57, 70, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    z-index: 2;
    pointer-events: none;
    transition: transform 0.3s ease;
    padding-left: 4px; /* Optical adjustment */
}

.gallery-item.video-item:hover::before {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary);
}


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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}
