/* =========================================
   VARIABLES & GLOBALS
   ========================================= */
:root {
    --bg-main: #060606;
    --bg-surface: #111111;
    --bg-surface-hover: #1a1a1a;
    --neon-green: #65f02c;
    --neon-hover: #7bff3d;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --border-color: #222222;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --fast-transition: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-large {
    max-width: 1440px;
}

.section {
    padding: 80px 0;
    overflow: hidden;
}

.text-neon {
    color: var(--neon-green);
}

.italic {
    font-style: italic;
}

.d-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mx-auto {
    margin: 0 auto;
}

/* =========================================
   PAGE LOADER & PROGRESS BAR
   ========================================= */
.loader-wrapper {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: var(--bg-main);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(101, 240, 44, 0.2);
    border-radius: 50%;
    border-top-color: var(--neon-green);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

#scroll-progress {
    position: fixed;
    top: 0; left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--neon-green);
    z-index: 10000;
    box-shadow: 0 0 10px var(--neon-green);
    transition: width 0.1s;
}

/* =========================================
   ANIMATION CLASSES (SCROLL REVEALS)
   ========================================= */
.reveal-up {
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
    transform: translateX(40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    transform: translateX(-40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-zoom {
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-span {
    display: inline-block;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.active.reveal-up, 
.active.reveal-left, 
.active.reveal-right, 
.active.reveal-zoom,
.active.reveal-span {
    transform: translate(0) scale(1);
    opacity: 1;
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-600 { transition-delay: 600ms; }
.delay-800 { transition-delay: 800ms; }

.stagger-1 { transition-delay: 100ms; }
.stagger-2 { transition-delay: 300ms; }
.stagger-3 { transition-delay: 500ms; }

/* =========================================
   HOVER UTILITIES & GLOWS
   ========================================= */
.glow-text {
    text-shadow: 0 0 20px rgba(101, 240, 44, 0.5);
}

.glow-text-hover {
    transition: var(--fast-transition);
}
.glow-text-hover:hover {
    text-shadow: 0 0 15px rgba(101, 240, 44, 0.6);
}

.btn-hover-glow:hover {
    box-shadow: 0 0 25px rgba(101, 240, 44, 0.6);
    transform: translateY(-2px);
}

.btn-hover-shadow:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    background-color: var(--text-main);
    color: #000;
    transform: translateY(-2px);
}

.hover-slide-right:hover {
    transform: translateX(8px);
    color: var(--neon-green);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(101, 240, 44, 0.7); }
    50% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(101, 240, 44, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(101, 240, 44, 0); }
}

.btn-pulse {
    animation: pulse 3s infinite;
}

.btn-pulse:hover {
    animation-play-state: paused;
}

@keyframes floating {
    0% { transform: translate(-50%, -100%) translateY(0px); }
    50% { transform: translate(-50%, -100%) translateY(-15px); }
    100% { transform: translate(-50%, -100%) translateY(0px); }
}

.floating-icon {
    animation: floating 4s ease-in-out infinite;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: var(--fast-transition);
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--neon-green);
    color: #000;
    border: 2px solid var(--neon-green);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 2px solid var(--text-main);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(6, 6, 6, 0.1);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.0);
    transition: background-color 0.4s ease, border-bottom 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled {
    background-color: rgba(6, 6, 6, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.6);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: height 0.4s ease;
}

.navbar.scrolled .nav-container {
    height: 70px;
}

.logo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-main);
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--neon-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
    box-shadow: 0 0 8px var(--neon-green);
}

.nav-buttons {
    display: flex;
    gap: 16px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(20px);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.mobile-link {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-weight: 600;
}

.mobile-btns {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mt-2 { margin-top: 8px; }

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-parallax {
    position: absolute;
    top: -10%; left: -10%;
    width: 120%; height: 120%;
    background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.animated-gradient {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(6,6,6,0.95) 0%, rgba(6,6,6,0.7) 40%, rgba(6,6,6,0.3) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtext {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-card {
    background-color: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(15px);
    border-left: 3px solid var(--neon-green);
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transform: translateY(-20px);
    transition: var(--transition);
}

.hero-card:hover {
    transform: translateY(-25px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    background-color: rgba(17, 17, 17, 0.8);
}

.hero-card-title {
    font-size: 0.75rem;
    color: var(--neon-green);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.hero-card-highlight {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.hero-card-time {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================
   SERVICES (ELITE DISCIPLINES)
   ========================================= */
.section-heading {
    margin-bottom: 48px;
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: inline-block;
}

.heading-line {
    width: 60px;
    height: 4px;
    background-color: var(--neon-green);
    margin-top: 16px;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background-color: var(--bg-surface);
    padding: 40px 32px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(101,240,44,0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--neon-green);
    background-color: var(--bg-surface-hover);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 15px rgba(101, 240, 44, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 24px;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-icon {
    transform: scale(1.2) translateY(-5px);
    text-shadow: 0 0 10px rgba(101, 240, 44, 0.5);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* =========================================
   EXPERIENCE SECTION
   ========================================= */
.experience-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 64px;
}

.experience-main-img-wrapper, .experience-small-img-wrapper {
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.experience-main-img {
    position: absolute;
    inset: -5%;
    background-image: url('https://images.unsplash.com/photo-1518611012118-696072aa579a?q=80&w=1200&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    transition: transform 1.5s ease;
}

.experience-main-img-wrapper {
    height: 500px;
}

.experience-main-img-wrapper:hover .experience-main-img {
    transform: scale(1.05);
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    z-index: 1;
}

.img-label {
    position: absolute;
    bottom: 32px;
    left: 32px;
    font-size: 1.8rem;
    font-weight: 800;
    z-index: 2;
}

.experience-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.green-card {
    background-color: var(--neon-green);
    color: #000;
    padding: 40px 32px;
    border-radius: 4px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
}

.green-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(101, 240, 44, 0.3);
}

.green-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.green-card p {
    font-weight: 600;
    font-size: 1.05rem;
}

.experience-small-img {
    position: absolute;
    inset: -5%;
    background-image: url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?q=80&w=800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    transition: transform 1.5s ease;
}

.experience-small-img-wrapper {
    height: 240px;
}

.experience-small-img-wrapper:hover .experience-small-img {
    transform: scale(1.1);
}

.quote-section {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.4;
    padding: 0 24px;
    color: #ddd;
}

/* =========================================
   CLASS SCHEDULE
   ========================================= */
.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
}

.schedule-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.schedule-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-top: 8px;
}

.schedule-days {
    font-weight: 700;
    color: var(--neon-green);
    letter-spacing: 2px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.schedule-card {
    background-color: var(--bg-surface);
    padding: 48px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.schedule-card:hover {
    border-color: rgba(101, 240, 44, 0.4);
    background-color: var(--bg-surface-hover);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.schedule-bg-icon {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    transition: all 0.5s ease;
}

.schedule-card:hover .schedule-bg-icon {
    color: rgba(101, 240, 44, 0.08);
    transform: translateY(-50%) rotate(15deg) scale(1.1);
}

.shift-label {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.shift-time {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.shift-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 80%;
    position: relative;
    z-index: 1;
}

/* =========================================
   FEATURES
   ========================================= */
.border-y {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-item {
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon-box {
    width: 64px;
    height: 64px;
    background-color: rgba(101, 240, 44, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.feature-item:hover .feature-icon-box {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 0 20px rgba(101, 240, 44, 0.3);
    background-color: rgba(101, 240, 44, 0.15);
}

.feature-item:hover .text-neon {
    text-shadow: 0 0 10px rgba(101, 240, 44, 0.6);
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================
   LOCATION
   ========================================= */
.location {
    padding: 0; 
}

.location-map-bg {
    position: relative;
    width: 100%;
    height: 600px;
    background-image: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-attachment: fixed;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(6, 6, 6, 0.85);
}

.location-card {
    position: relative;
    background-color: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--neon-green);
    padding: 48px;
    border-radius: 4px;
    text-align: center;
    z-index: 2;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    background-color: rgba(17, 17, 17, 0.95);
}

.card-pin {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: inline-block;
}

.location-card:hover .bounce-on-hover {
    animation: bounce 1s cubic-bezier(0.28, 0.84, 0.42, 1) infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); text-shadow: 0 10px 15px rgba(101, 240, 44, 0.5); }
}

.location-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.location-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--fast-transition);
}

.location-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.location-link i {
    transition: transform 0.3s;
}

.location-link:hover i {
    transform: translateX(8px);
}

/* =========================================
   FINAL CTA
   ========================================= */
.ultra-heading {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.cta-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.cta-phone {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin: 0 auto 48px auto;
    transition: transform 0.3s ease, color 0.3s ease;
    display: block;
}

.cta-phone:hover {
    transform: scale(1.05);
    color: #fff;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    padding-bottom: 40px;
    background-color: #030303;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 64px;
}

.footer-desc {
    color: var(--text-muted);
    margin: 24px 0;
    font-size: 0.9rem;
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-main);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--neon-green);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(101, 240, 44, 0.4);
}

.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: inline-block;
}

.d-flex-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.align-start {
    align-items: flex-start;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    color: #666;
    font-size: 0.85rem;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-side {
        flex-direction: row;
    }
    
    .experience-small-img-wrapper {
        flex: 1;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-buttons {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    
    .section-heading h2, .schedule-header h2 {
        font-size: 2rem;
    }
    
    .quote-section {
        font-size: 1.6rem;
    }
    
    .experience-side {
        flex-direction: column;
    }
    
    .shift-time {
        font-size: 2.5rem;
    }
    
    .ultra-heading {
        font-size: 2.5rem;
    }
    
    .cta-phone {
        font-size: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .schedule-card {
        padding: 32px 24px;
    }
    
    .cta-phone {
        font-size: 2.2rem;
    }
}

/* =========================================
   IMAGE GALLERY / SLIDER
   ========================================= */
.gallery-container {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-container::-webkit-scrollbar {
    display: none;
}

.gallery-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.gallery-container::-webkit-scrollbar-thumb {
    background-color: var(--neon-green);
    border-radius: 10px;
}

.gallery-track {
    display: flex;
    gap: 24px;
    width: max-content;
    padding: 0 24px;
    margin: 0 auto;
}

.gallery-item {
    width: 350px;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    filter: grayscale(80%);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(101, 240, 44, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

@media (max-width: 768px) {
    .gallery-item {
        width: 280px;
        height: 380px;
    }
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background-color: var(--bg-surface);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(101, 240, 44, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(101, 240, 44, 0.1);
}

.testimonial-rating {
    margin-bottom: 24px;
    font-size: 1.2rem;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #fff;
    font-style: italic;
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: rgba(101, 240, 44, 0.1);
    color: var(--neon-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* =========================================
   HIGH-CONVERSION & MICRO-INTERACTIONS
   ========================================= */

/* Floating WhatsApp Button */
.floating-wa-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    animation: wa-pulse 2s infinite;
}

.floating-wa-btn:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #1ebe5a;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-wa-btn .tooltip {
    position: absolute;
    right: 75px;
    background-color: #fff;
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.floating-wa-btn .tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.floating-wa-btn:hover .tooltip {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .floating-wa-btn {
        bottom: 90px;
        right: 24px;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    .floating-wa-btn .tooltip { display: none; }
}

/* Social Proof Popup */
.social-proof-popup {
    position: fixed;
    bottom: 32px;
    left: 32px;
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border-left: 3px solid var(--neon-green);
    border-radius: 4px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    z-index: 9998;
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-proof-popup.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.proof-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(101, 240, 44, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.proof-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.proof-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .social-proof-popup {
        bottom: 90px;
        left: 20px;
        right: 90px;
        padding: 12px 16px;
    }
    .proof-text { font-size: 0.8rem; }
}

/* Mobile Sticky CTA Bar */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(15px);
    padding: 12px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 9997;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
    .pb-sticky {
        padding-bottom: 80px;
    }
}

/* Urgency Badge */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 60, 60, 0.1);
    color: #ff3c3c;
    border: 1px solid rgba(255, 60, 60, 0.3);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pulse-badge {
    animation: flash-badge 2s infinite;
}

@keyframes flash-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 60, 60, 0); }
    50% { box-shadow: 0 0 15px rgba(255, 60, 60, 0.4); }
}

/* Ripple Micro-Interaction */
.ripple-btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* 3D Tilt Effect Utilities */
.tilt-card {
    will-change: transform;
    transition: transform 0.1s;
}
