/* Root Variables - Premium Sporty Palette */
:root {
    --primary-red: #da1c1c; /* Vibrant Sporty Red */
    --hover-red: #ff3333;
    --dark-bg: #0c0c0c; /* Deep Black */
    --card-bg: rgba(255, 255, 255, 0.05); /* Glassmorphism Base */
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-white: #ffffff;
    --text-grey: #cfcfcf; /* Brighter for better readability on black */
    --white: #ffffff;
    --font-main: 'Cairo', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3 {
    font-weight: 800;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(12, 12, 12, 0.8);
    backdrop-filter: blur(15px);
    transition: var(--transition-smooth);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 5px;
    transition: var(--transition-smooth);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .logo-img { height: 40px; }
}

.logo-img:hover {
    transform: scale(1.1);
}

.nav-menu ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-white);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: var(--transition-smooth);
}

.nav-menu a:hover {
    color: var(--primary-red);
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-small {
    background-color: var(--primary-red);
    padding: 8px 18px;
    border-radius: 5px;
    color: white !important;
}

.cta-small:hover {
    background-color: var(--hover-red);
    transform: translateY(-3px);
}

/* Mobile UI Helpers */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--white);
    padding: 10px;
    z-index: 1001; /* Above mobile menu overlay */
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../images/karate_hero_bg.jpg') no-repeat center/cover; /* Focused on the middle (Dojo area) */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--dark-bg) 20%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--primary-red);
    text-shadow: 0 0 20px rgba(218, 28, 28, 0.4);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-grey);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
    box-shadow: 0 10px 30px rgba(218, 28, 28, 0.5);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-primary:hover {
    background-color: var(--hover-red);
    transform: translateY(-5px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* Stats Bar */
.stats-bar {
    background-color: #111;
    padding: 40px 0;
    border-top: 2px solid var(--primary-red);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-grey);
    font-weight: 500;
    font-size: 1rem;
}

.text-red { color: var(--primary-red); }

/* Sections Styling */
section {
    padding: 100px 0;
}

.section-bg-alt {
    background-color: #111;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.text-center { text-align: center !important; }

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-red);
    margin: 15px auto 0;
    border-radius: 2px;
}

.text-left.section-title::after {
    margin-left: auto;
    margin-right: 0;
}

.section-sub-title {
    color: var(--text-grey);
    margin-top: -10px;
    margin-bottom: 50px;
}

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

.about-text p {
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-bottom: 30px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.value-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 48, 48, 0.1);
}

.value-card i {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.img-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: -20px 20px 0 var(--primary-red);
    max-height: 480px;
}

.img-frame img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    object-position: center 35%; /* About image is a landscape training shot — center on the action */
    display: block;
    transition: var(--transition-smooth);
}

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

/* Programs Section */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.program-card {
    background: var(--dark-bg);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.program-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.program-card:hover {
    background: #151515;
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.program-card:hover::after {
    transform: scaleX(1);
    box-shadow: 0 0 15px var(--primary-red);
}

.program-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.program-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.program-card p {
    color: var(--text-grey);
    margin-bottom: 20px;
}

.age-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid var(--glass-border);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--glass-border);
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-label {
    font-size: 0.9rem;
    color: var(--primary-red);
    font-weight: 600;
}

/* Locations Section */
.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.location-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.location-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(218, 28, 28, 0.2);
}

.location-card i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(218, 28, 28, 0.4);
}

.faq-question {
    width: 100%;
    text-align: right;
    padding: 20px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
}

.faq-question i {
    color: var(--primary-red);
    transition: var(--transition-smooth);
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--text-grey);
    margin: 0;
    line-height: 1.8;
}

/* Contact Section */
.contact-box {
    background: linear-gradient(135deg, #da1c1c, #9c1414);
    padding: 80px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(218, 28, 28, 0.3);
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-link {
    background: white;
    color: var(--dark-bg);
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-link.whatsapp {
    background: #25d366;
    color: white;
}

.contact-link:hover {
    transform: scale(1.05);
}

.promo-text {
    margin-top: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0.9;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px; /* Taller to show full subject without cutting off faces */
    border: 1px solid transparent;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* Default: slightly above center for full-body portraits */
    transition: var(--transition-smooth);
    display: block;
}

/* Per-image object-position tuning based on actual photo composition */
/* 1: player_boy_blue_gloves — full body, face in upper third */
.gallery-item:nth-child(1) img { object-position: center 15%; }
/* 2: player_boy_medals — full body with stage lights behind head */
.gallery-item:nth-child(2) img { object-position: center 15%; }
/* 3: player_boy_red_bg — full body centred, face upper area */
.gallery-item:nth-child(3) img { object-position: center 18%; }
/* 4: player_boys_twins — two subjects side-by-side, faces in upper quarter */
.gallery-item:nth-child(4) img { object-position: center 12%; }
/* 5: player_girl_focus — hijab girl with crossed arms, face in upper third */
.gallery-item:nth-child(5) img { object-position: center 15%; }
/* 6: player_girl_kata — kata stance, face is higher */
.gallery-item:nth-child(6) img { object-position: center 12%; }
/* 7: player_girl_smile — smiling hijab girl, face upper quarter */
.gallery-item:nth-child(7) img { object-position: center 12%; }
/* 8: coach_and_girl — two people, slightly taller composition */
.gallery-item:nth-child(8) img { object-position: center 10%; }

.gallery-item:hover {
    border-color: rgba(218, 28, 28, 0.5);
    box-shadow: 0 8px 30px rgba(218, 28, 28, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.07);
}

/* Permanent subtle bottom-fade for premium editorial look */
.gallery-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Hover reveal: stronger overlay */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.6) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
    z-index: 2;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Coaches Section */
.coaches {
    padding-top: 60px;
    padding-bottom: 60px;
}

.coaches .section-title {
    margin-bottom: 10px;
}

.coaches .section-sub-title {
    margin-bottom: 30px;
}

.coaches .container {
    max-width: 1400px;
}

.leadership-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.squad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    justify-content: center;
}

.coach-card {
    background: var(--card-bg);
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 0;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.leadership-grid .coach-card {
    max-width: 300px;
}

.squad-grid .coach-card {
    max-width: 280px;
}

.coach-card-img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 280px;
}

.leadership-grid .coach-card-img-wrap {
    height: 260px;
}

.coach-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(218, 28, 28, 0.75);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.squad-grid .coach-badge {
    font-size: 0.7rem;
    padding: 3px 8px;
    background: rgba(218, 28, 28, 0.65);
}

.coach-card-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    pointer-events: none;
}

.coach-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    display: block;
    transition: var(--transition-smooth);
}

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

.coach-card-info {
    padding: 12px 10px 16px;
}

.coach-card h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
    color: var(--primary-red);
}

.coach-card p {
    color: var(--text-grey);
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .coaches {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .coaches .section-title {
        margin-bottom: 20px;
    }
    .coaches .section-sub-title {
        margin-bottom: 50px;
    }
    .leadership-grid {
        gap: 40px;
        margin-bottom: 50px;
    }
    .leadership-grid .coach-card {
        max-width: 360px;
    }
    .leadership-grid .coach-card-img-wrap {
        height: 320px;
    }
    .squad-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 25px;
    }
    .squad-grid .coach-card {
        max-width: 100%;
    }
    .squad-grid .coach-card-img-wrap {
        height: 280px;
    }
    .coach-card-info {
        padding: 18px 16px 20px;
    }
    .coach-card h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    .coach-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .squad-grid .coach-card h3 {
        font-size: 1.15rem;
    }
    .squad-grid .coach-card p {
        font-size: 0.85rem;
        margin-bottom: 0;
    }
}

/* Per-coach image positioning based on photo composition */
.coach-mfarouk img { object-position: center 8%; }
.coach-jehan img { object-position: center 15%; }
.coach-malak img { object-position: center 15%; }
.coach-chico img { object-position: center 10%; }
.coach-omostafa img { object-position: center 12%; }
.coach-okhaled img { object-position: center 10%; }
.coach-ahesham img { object-position: center 15%; }
.coach-body img { object-position: center 10%; }
.coach-tayson img { object-position: center 12%; }
.coach-jersey img { object-position: center 15%; }
.coach-shaimaa img { object-position: center 15%; }

.coach-card:hover {
    transform: translateY(-8px);
    border-color: rgba(218, 28, 28, 0.6);
    box-shadow: 0 12px 35px rgba(218, 28, 28, 0.2);
}

/* Footer Section */
.footer {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    border: 1px solid var(--glass-border);
}

.social-links a:hover {
    background: var(--primary-red);
    color: white;
}

.copyright {
    color: var(--text-grey);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .section-title { font-size: 2.2rem; }
    .hero-title { font-size: 3.5rem; } 
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .coaches-grid { flex-direction: column; align-items: center; gap: 30px; }
    .coach-card { width: 100%; max-width: 500px; }
}

@media (max-width: 768px) {
    section { padding: 40px 0; }
    .section-title { font-size: 2rem; margin-bottom: 30px; }
    .header { padding: 10px 0; }
    
    .navbar {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        padding: 0 15px;
    }

    /* اللوجو يسار */
    .logo {
        order: 1;
    }

    /* إخفاء النص من جوار اللوجو وعرضه في المنتصف */
    .logo-text {
        display: none;
    }

    /* إضافة اسم الأكاديمية في المنتصف عبر pseudo element على الـ navbar */
    .navbar::after {
        content: 'أكاديمية أسباير';
        font-family: var(--font-main);
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--text-white);
        text-align: center;
        order: 2;
        pointer-events: none;
    }

    /* زر الهامبرغر على اليمين */
    .menu-toggle { 
        display: block;
        order: 3;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(12, 12, 12, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
        backdrop-filter: blur(20px);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

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

    .nav-menu ul {
        flex-direction: column;
        gap: 25px;
    }

    .nav-menu a {
        font-size: 1.3rem;
    }

    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; margin-bottom: 30px; }
    .hero-btns { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; gap: 15px; }
    .btn { width: 100%; justify-content: center; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 10px; }
    .section-title h2 { font-size: 2rem; }
    
    .testimonials-grid { grid-template-columns: 1fr; gap: 15px; padding: 0 10px; }
    
    .lightbox-prev { right: -10px; }
    .lightbox-next { left: -10px; }
    .lightbox-prev, .lightbox-next { background: rgba(0,0,0,0.5); border: none; }
    
    .coach-badge { font-size: 0.65rem; padding: 4px 8px; top: 8px; right: 8px; }
    .squad-grid .coach-badge { font-size: 0.6rem; padding: 3px 6px; }
    .stat-item { padding: 15px 0; border-bottom: 1px solid var(--glass-border); }
    .stat-item:last-child { border-bottom: none; }

    .about-values { grid-template-columns: 1fr; }
    .locations-grid { grid-template-columns: 1fr; }
    
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } 
    .gallery-item { height: 200px; border-radius: 12px; } 
    
    .coach-card img { height: 320px; border-radius: 15px 15px 0 0; }
    .coach-card { margin: 0 10px 30px; max-width: 100%; }
    
    .contact-links { flex-direction: column; gap: 12px; }
    .contact-box { padding: 50px 20px; }
    .contact-link { font-size: 1.1rem; justify-content: center; }
}

@media (max-width: 400px) {
    .gallery-grid { grid-template-columns: 1fr; } /* Back to 1 column only on very narrow phones */
    .gallery-item { height: 250px; }
    .hero-title { font-size: 1.8rem; }
}

/* Floating Contact Button */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 2000;
    transition: var(--transition-smooth);
    animation: pulse 2s infinite;
    text-decoration: none;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background: #128c7e;
}

@media (max-width: 480px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        bottom: 15px;
        right: 15px;
    }
}
.hero-content {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: var(--card-bg);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-5px);
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 14, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    z-index: 2001;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--primary-red);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.lightbox-prev { right: -60px; }
.lightbox-next { left: -60px; }

