/* ============================================
   VTRENDD FAMILY SALON — Premium Styles
   Aesthetic: Electric Lime × Deep Black × Gold
   Matched to logo: #C8F227 lime, #F0B800 gold, #0D0D0D black
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    /* ── Brand Core (from logo) ── */
    --lime: #C8F227;
    --lime-deep: #A8CC18;
    --lime-glow: #D6FF44;
    --lime-dim: #8AAA10;
    --gold: #F0B800;
    --gold-light: #FFD84D;
    --gold-dim: #B88C00;

    /* ── Backgrounds ── */
    --dark: #080808;
    --dark-2: #0D0D0D;
    --dark-3: #121212;
    --dark-card: #161616;
    --dark-card-2: #1C1C1C;
    --dark-raised: #202020;

    /* ── Text ── */
    --text-main: #F0F0F0;
    --text-mid: #AAAAAA;
    --text-muted: #666666;
    --white: #FFFFFF;

    /* ── Gradients ── */
    --gradient-lime: linear-gradient(135deg, #C8F227 0%, #A8CC18 60%, #8AAA10 100%);
    --gradient-gold: linear-gradient(135deg, #F0B800 0%, #D4A000 60%, #B88C00 100%);
    --gradient-dark: linear-gradient(180deg, #080808 0%, #0D0D0D 100%);
    --gradient-hero: linear-gradient(135deg, #080808 0%, #0F1200 50%, #080808 100%);
    --gradient-card: linear-gradient(145deg, #161616 0%, #111111 100%);

    /* ── Shadows ── */
    --shadow-lime: 0 0 40px rgba(200, 242, 39, 0.22);
    --shadow-lime-lg: 0 0 80px rgba(200, 242, 39, 0.15);
    --shadow-gold: 0 0 40px rgba(240, 184, 0, 0.22);
    --shadow-card: 0 24px 64px rgba(0, 0, 0, 0.7);
    --shadow-inset: inset 0 1px 0 rgba(200, 242, 39, 0.06);

    /* ── Borders ── */
    --border-subtle: 1px solid rgba(200, 242, 39, 0.12);
    --border-mid: 1px solid rgba(200, 242, 39, 0.25);
    --border-strong: 1px solid rgba(200, 242, 39, 0.45);
    --border-gold: 1px solid rgba(240, 184, 0, 0.35);
    --border-white: 1px solid rgba(255, 255, 255, 0.06);

    /* ── Typography ── */
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* ── Spacing / Shape ── */
    --radius: 10px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    /* ── Motion ── */
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.18s ease;
}

/* ============ RESET ============ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text-main);
    overflow-x: hidden;
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
    background: var(--lime);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(200, 242, 39, 0.5);
}

/* ── Grain Texture ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1001;
    opacity: 0.5;
}

/* ── Grid Line Bg ── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(200, 242, 39, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 242, 39, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* ============ PRELOADER ============ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--lime);
    letter-spacing: 0.25em;
    line-height: 1;
    animation: pulse-glow 1.4s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(200, 242, 39, 0.6);
}

.preloader-bar {
    width: 180px;
    height: 2px;
    background: rgba(200, 242, 39, 0.1);
    margin-top: 28px;
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    display: block;
    height: 100%;
    background: var(--gradient-lime);
    animation: load-bar 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    box-shadow: 0 0 20px rgba(200, 242, 39, 0.8);
}

@keyframes load-bar {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(200, 242, 39, 0.4);
    }

    50% {
        text-shadow: 0 0 60px rgba(200, 242, 39, 1), 0 0 120px rgba(200, 242, 39, 0.3);
    }
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0 5%;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(8, 8, 8, 0.82);
    backdrop-filter: blur(24px);
    border-bottom: var(--border-subtle);
    transition: var(--transition);
}

.navbar.scrolled {
    height: 62px;
    background: rgba(8, 8, 8, 0.97);
    border-bottom: var(--border-mid);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6), 0 0 80px rgba(200, 242, 39, 0.04);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--dark-card);
    border: 1px solid rgba(200, 242, 39, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--lime);
    font-weight: 400;
    box-shadow: 0 0 16px rgba(200, 242, 39, 0.2), inset 0 0 12px rgba(200, 242, 39, 0.06);
    transition: var(--transition);
}

.nav-logo:hover .nav-logo-icon {
    box-shadow: 0 0 28px rgba(200, 242, 39, 0.45);
    border-color: var(--lime);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.12em;
    line-height: 1;
}

.nav-logo-sub {
    font-family: var(--font-body);
    font-size: 0.52rem;
    letter-spacing: 0.35em;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    box-shadow: 0 0 8px rgba(200, 242, 39, 0.8);
}

.nav-links a:hover {
    color: var(--lime);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-book-btn {
    background: var(--lime) !important;
    color: #080808 !important;
    padding: 9px 22px;
    border-radius: 6px;
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase;
    transition: var(--transition) !important;
    box-shadow: 0 4px 20px rgba(200, 242, 39, 0.35);
}

.nav-book-btn:hover {
    background: var(--lime-glow) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200, 242, 39, 0.55) !important;
    color: #080808 !important;
}

.nav-book-btn::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--lime);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
    box-shadow: 0 0 6px rgba(200, 242, 39, 0.6);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.99);
    backdrop-filter: blur(24px);
    border-bottom: var(--border-mid);
    padding: 20px 5% 28px;
    z-index: 998;
    transform: translateY(-20px);
    opacity: 0;
    transition: var(--transition);
    flex-direction: column;
    gap: 0;
}

.mobile-menu.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    font-family: var(--font-body);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    padding: 13px 0;
    border-bottom: var(--border-subtle);
    transition: var(--transition);
    font-weight: 500;
}

.mobile-menu a:hover {
    color: var(--lime);
    padding-left: 10px;
}

.mobile-menu .nav-book-btn {
    margin-top: 18px;
    text-align: center;
    padding: 13px 24px !important;
    border-radius: 6px;
    display: block;
}

/* ============ SECTIONS BASE ============ */
section {
    position: relative;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ============ HERO ============ */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 76px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1600&q=80') center/cover no-repeat;
    opacity: 0.07;
    filter: grayscale(1);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 75% 40%, rgba(200, 242, 39, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 85%, rgba(240, 184, 0, 0.07) 0%, transparent 45%),
        radial-gradient(ellipse at 10% 10%, rgba(200, 242, 39, 0.05) 0%, transparent 40%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    animation: float-orb 10s ease-in-out infinite;
}

.hero-orb-1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(200, 242, 39, 0.12) 0%, transparent 70%);
    top: -15%;
    right: -8%;
}

.hero-orb-2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(240, 184, 0, 0.10) 0%, transparent 70%);
    bottom: 5%;
    left: 2%;
    animation-delay: -5s;
}

@keyframes float-orb {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(24px, -32px);
    }

    66% {
        transform: translate(-12px, 20px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 242, 39, 0.08);
    border: 1px solid rgba(200, 242, 39, 0.25);
    border-radius: 4px;
    padding: 6px 14px;
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 22px;
    animation: fade-up 0.8s ease 0.2s both;
    font-weight: 600;
}

.hero-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--lime);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--lime);
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 6.5vw, 6.5rem);
    font-weight: 400;
    line-height: 0.95;
    color: var(--white);
    animation: fade-up 0.8s ease 0.4s both;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.hero-title em {
    font-style: normal;
    color: var(--lime);
    text-shadow: 0 0 40px rgba(200, 242, 39, 0.35);
}

.hero-title .accent-line {
    display: block;
    color: var(--gold);
    text-shadow: 0 0 40px rgba(240, 184, 0, 0.3);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.85;
    color: var(--text-mid);
    max-width: 460px;
    animation: fade-up 0.8s ease 0.6s both;
    margin-bottom: 34px;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fade-up 0.8s ease 0.8s both;
}

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 48px;
    animation: fade-up 0.8s ease 1s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--lime);
    line-height: 1;
    letter-spacing: 0.03em;
    text-shadow: 0 0 20px rgba(200, 242, 39, 0.4);
}

.hero-stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 5px;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    animation: fade-left 1s ease 0.5s both;
}

.hero-img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    max-height: 580px;
    border: 1px solid rgba(200, 242, 39, 0.15);
    box-shadow: var(--shadow-card), var(--shadow-lime);
}

.hero-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) saturate(0.9) contrast(1.05);
}

.hero-img-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(8, 8, 8, 0.92) 100%);
    z-index: 1;
}

.hero-img-overlay {
    position: absolute;
    bottom: 24px;
    left: 20px;
    right: 20px;
    z-index: 2;
    background: rgba(8, 8, 8, 0.82);
    backdrop-filter: blur(16px);
    border: var(--border-subtle);
    border-radius: var(--radius);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-img-overlay-icon {
    width: 38px;
    height: 38px;
    background: var(--lime);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-img-overlay-text {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.hero-img-overlay-text strong {
    display: block;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 0.78rem;
}

.hero-deco {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 110px;
    height: 110px;
    border: 1px solid rgba(200, 242, 39, 0.22);
    border-radius: 50%;
    animation: spin-slow 22s linear infinite;
}

.hero-deco::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(240, 184, 0, 0.15);
    border-radius: 50%;
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-left {
    from {
        opacity: 0;
        transform: translateX(36px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============ OFFER TICKER ============ */
.offer-ticker {
    background: var(--lime);
    padding: 9px 0;
    overflow: hidden;
    white-space: nowrap;
}

.offer-ticker-inner {
    display: inline-flex;
    gap: 56px;
    animation: ticker 22s linear infinite;
}

.offer-ticker-item {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #080808;
    display: flex;
    align-items: center;
    gap: 12px;
}

.offer-ticker-item::before {
    content: '✦';
    font-size: 0.55rem;
    opacity: 0.5;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.btn:hover::before {
    transform: scaleX(1);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--lime);
    color: #080808;
    box-shadow: 0 6px 28px rgba(200, 242, 39, 0.35);
}

.btn-primary:hover {
    background: var(--lime-glow);
    box-shadow: 0 10px 40px rgba(200, 242, 39, 0.55);
    color: #080808;
}

.btn-outline {
    background: transparent;
    color: var(--lime);
    border: 1px solid rgba(200, 242, 39, 0.4);
}

.btn-outline:hover {
    background: rgba(200, 242, 39, 0.08);
    border-color: var(--lime);
    color: var(--lime);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #1DA851);
    color: white;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
}

/* ============ SECTION HEADER ============ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.62rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 14px;
    font-weight: 700;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--lime);
    opacity: 0.45;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 4.5vw, 4.2rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: 0.03em;
}

.section-title em {
    font-style: normal;
    color: var(--lime);
    text-shadow: 0 0 30px rgba(200, 242, 39, 0.3);
}

.section-desc {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.85;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
}

/* ============ ABOUT ============ */
#about {
    padding: 120px 0;
    background: var(--dark-2);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 520px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 68%;
    height: 80%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: var(--border-subtle);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.88) saturate(0.85);
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52%;
    height: 56%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: var(--border-subtle);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.88) saturate(0.85);
}

.about-badge-float {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--lime);
    border-radius: 50%;
    width: 76px;
    height: 76px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(200, 242, 39, 0.5), 0 0 80px rgba(200, 242, 39, 0.2);
    z-index: 3;
    text-align: center;
}

.about-badge-float span:first-child {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: #080808;
    line-height: 1;
}

.about-badge-float span:last-child {
    font-size: 0.48rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(8, 8, 8, 0.7);
}

.about-text h2 {
    margin-bottom: 22px;
    text-align: left;
}

.about-text p {
    font-size: 0.88rem;
    line-height: 1.9;
    color: var(--text-mid);
    margin-bottom: 18px;
    font-weight: 300;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 28px 0;
}

.about-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--dark-card);
    border-radius: var(--radius);
    border: var(--border-white);
    transition: var(--transition);
}

.about-highlight:hover {
    border-color: rgba(200, 242, 39, 0.25);
}

.about-highlight-icon {
    width: 34px;
    height: 34px;
    background: rgba(200, 242, 39, 0.10);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.about-highlight-text {
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
    letter-spacing: 0.03em;
}

.about-highlight-sub {
    font-size: 0.67rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ============ SERVICES ============ */
#services {
    padding: 120px 0;
    background: var(--dark);
}

.services-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.filter-btn {
    padding: 7px 22px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid rgba(200, 242, 39, 0.2);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--lime);
    color: #080808;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(200, 242, 39, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--dark-card);
    border: var(--border-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.service-card:hover {
    border-color: rgba(200, 242, 39, 0.35);
    box-shadow: var(--shadow-lime), 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.service-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.8) saturate(0.85) contrast(1.05);
}

.service-card:hover .service-img img {
    transform: scale(1.07);
}

.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(8, 8, 8, 0.9) 100%);
}

.service-category-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--lime);
    color: #080808;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 3px;
    font-weight: 800;
}

.service-body {
    padding: 22px;
}

.service-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 7px;
    font-weight: 600;
}

.service-desc {
    font-size: 0.77rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
    font-weight: 300;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--lime);
    font-weight: 400;
    letter-spacing: 0.03em;
    text-shadow: 0 0 16px rgba(200, 242, 39, 0.3);
}

.service-price span {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 400;
}

.service-book-btn {
    padding: 7px 16px;
    border-radius: 4px;
    background: rgba(200, 242, 39, 0.08);
    border: 1px solid rgba(200, 242, 39, 0.3);
    color: var(--lime);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.service-book-btn:hover {
    background: var(--lime);
    border-color: transparent;
    color: #080808;
}

/* ============ PRICING TABLE ============ */
#pricing {
    padding: 120px 0;
    background: var(--dark-2);
}

.pricing-table-wrap {
    background: var(--dark-card);
    border: var(--border-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.pricing-table-header {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 18px 30px;
    background: rgba(200, 242, 39, 0.06);
    border-bottom: var(--border-subtle);
}

.pricing-table-header span {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--lime);
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 16px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.035);
    align-items: center;
    transition: var(--transition);
    cursor: pointer;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:hover {
    background: rgba(200, 242, 39, 0.04);
    padding-left: 38px;
}

.pricing-service-name {
    font-family: var(--font-body);
    font-size: 0.87rem;
    color: var(--text-main);
    font-weight: 500;
}

.pricing-service-tag {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--lime);
    font-weight: 400;
    text-align: right;
    letter-spacing: 0.03em;
}

.pricing-amount small {
    font-size: 0.68rem;
    font-family: var(--font-body);
    color: var(--text-muted);
}

.pricing-offers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
}

.offer-card {
    background: var(--dark-card);
    border: 1px solid rgba(200, 242, 39, 0.25);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.offer-card:hover {
    border-color: rgba(200, 242, 39, 0.5);
    box-shadow: var(--shadow-lime);
}

.offer-card::before {
    content: '';
    position: absolute;
    right: -24px;
    top: -24px;
    width: 130px;
    height: 130px;
    background: rgba(200, 242, 39, 0.05);
    border-radius: 50%;
}

.offer-percent {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--lime);
    line-height: 1;
    text-shadow: 0 0 30px rgba(200, 242, 39, 0.4);
    letter-spacing: 0.02em;
}

.offer-text strong {
    font-size: 1rem;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
    color: var(--text-main);
}

.offer-text span {
    font-size: 0.74rem;
    color: var(--text-mid);
}

/* ============ GALLERY ============ */
#gallery {
    padding: 120px 0;
    background: var(--dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 1;
    border: var(--border-white);
    transition: var(--transition);
}

.gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.gallery-item.tall {
    grid-row: span 2;
    aspect-ratio: 1/2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.82) saturate(0.8) contrast(1.05);
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-item:hover {
    border-color: rgba(200, 242, 39, 0.35);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(8, 8, 8, 0.88) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 18px;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--lime);
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ============ ACADEMY ============ */
#academy {
    padding: 120px 0;
    background: var(--dark-2);
    position: relative;
    overflow: hidden;
}

#academy::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 242, 39, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.academy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.academy-courses {
    display: grid;
    gap: 14px;
}

.course-card {
    background: var(--dark-card);
    border: var(--border-white);
    border-radius: var(--radius);
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: var(--transition);
    cursor: pointer;
}

.course-card:hover {
    border-color: rgba(200, 242, 39, 0.3);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(200, 242, 39, 0.06);
    transform: translateX(5px);
}

.course-icon {
    width: 50px;
    height: 50px;
    background: rgba(200, 242, 39, 0.08);
    border: 1px solid rgba(200, 242, 39, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.course-info {
    flex: 1;
}

.course-name {
    font-family: var(--font-heading);
    font-size: 0.96rem;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 3px;
}

.course-detail {
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

.course-offer-badge {
    background: var(--lime);
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #080808;
    white-space: nowrap;
}

.academy-enroll-form {
    background: var(--dark-card);
    border: var(--border-white);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.academy-enroll-form h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-main);
    margin-bottom: 6px;
    letter-spacing: 0.04em;
}

.academy-enroll-form p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.65;
    font-weight: 300;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(200, 242, 39, 0.15);
    border-radius: var(--radius);
    padding: 11px 15px;
    font-family: var(--font-body);
    font-size: 0.84rem;
    color: var(--text-main);
    transition: var(--transition);
    outline: none;
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--lime);
    background: rgba(200, 242, 39, 0.04);
    box-shadow: 0 0 0 3px rgba(200, 242, 39, 0.08);
}

.form-group select option {
    background: var(--dark-card);
    color: var(--text-main);
}

.form-group textarea {
    resize: vertical;
    min-height: 76px;
}

/* ============ REVIEWS ============ */
#reviews {
    padding: 120px 0;
    background: var(--dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--dark-card);
    border: var(--border-white);
    border-radius: var(--radius-lg);
    padding: 26px;
    transition: var(--transition);
    position: relative;
}

.review-card:hover {
    border-color: rgba(200, 242, 39, 0.25);
    box-shadow: var(--shadow-lime);
    transform: translateY(-4px);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 14px;
    right: 18px;
    font-family: var(--font-display);
    font-size: 5rem;
    color: rgba(200, 242, 39, 0.08);
    line-height: 1;
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
    font-size: 0.82rem;
}

.review-text {
    font-size: 0.81rem;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 18px;
    font-style: italic;
    font-weight: 300;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 11px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(200, 242, 39, 0.25);
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
}

.reviewer-label {
    font-size: 0.62rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

/* ============ CONTACT & BOOKING ============ */
#contact {
    padding: 120px 0;
    background: var(--dark-2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

.contact-info h2 {
    margin-bottom: 14px;
}

.contact-info>p {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 32px;
    font-weight: 300;
}

.contact-items {
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: var(--dark-card);
    border: var(--border-white);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: rgba(200, 242, 39, 0.25);
}

.contact-item-icon {
    width: 42px;
    height: 42px;
    background: rgba(200, 242, 39, 0.08);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item-label {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 3px;
}

.contact-item-value {
    font-size: 0.86rem;
    color: var(--text-main);
    font-weight: 500;
}

.contact-item-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.hours-grid {
    display: grid;
    gap: 5px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.77rem;
}

.hours-row span:first-child {
    color: var(--text-muted);
}

.hours-row span:last-child {
    color: var(--text-main);
    font-weight: 600;
}

.booking-form {
    background: var(--dark-card);
    border: var(--border-white);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.booking-form h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-main);
    margin-bottom: 5px;
    letter-spacing: 0.04em;
}

.booking-form p {
    font-size: 0.77rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.65;
    font-weight: 300;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-submit-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
}

/* ============ MAP ============ */
.map-section {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(92%) hue-rotate(180deg) saturate(0.4) brightness(0.9);
}

.map-overlay-card {
    position: absolute;
    top: 22px;
    left: 22px;
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(16px);
    border: var(--border-mid);
    border-radius: var(--radius);
    padding: 18px 22px;
    max-width: 270px;
}

.map-overlay-card h4 {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    color: var(--text-main);
    margin-bottom: 5px;
    font-weight: 700;
}

.map-overlay-card p {
    font-size: 0.73rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

.map-direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lime);
    text-decoration: none;
    transition: var(--transition);
}

.map-direction-btn:hover {
    gap: 9px;
}

/* ============ FLOATING WHATSAPP ============ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 990;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.whatsapp-btn {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #25D366, #1DA851);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.35);
    animation: whatsapp-pulse 2.5s ease-out infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.whatsapp-tooltip {
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(12px);
    border: var(--border-subtle);
    border-radius: 50px;
    padding: 7px 16px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-main);
    white-space: nowrap;
    animation: tooltip-bounce 2s ease-in-out infinite;
}

@keyframes tooltip-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* ============ FOOTER ============ */
footer {
    background: var(--dark-2);
    border-top: var(--border-subtle);
    padding: 56px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 44px;
    margin-bottom: 44px;
}

.footer-brand p {
    font-size: 0.79rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin: 14px 0 22px;
    font-weight: 300;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 7px;
    border: var(--border-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.82rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--lime);
    border-color: transparent;
    color: #080808;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(200, 242, 39, 0.3);
}

.footer-col h5 {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 18px;
}

.footer-links {
    display: grid;
    gap: 9px;
    list-style: none;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 300;
}

.footer-links a::before {
    content: '›';
    color: var(--lime);
    font-size: 1rem;
    line-height: 1;
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--lime);
    padding-left: 4px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-bottom {
    border-top: var(--border-subtle);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copy {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.footer-copy span {
    color: var(--lime);
}

/* ============ SCROLL REVEAL ============ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ============ POPUP OFFER ============ */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-card {
    background: var(--dark-card);
    border: var(--border-mid);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: popup-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    box-shadow: var(--shadow-lime), var(--shadow-card);
}

@keyframes popup-in {
    from {
        transform: scale(0.8) translateY(20px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: var(--border-white);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.popup-close:hover {
    background: rgba(200, 242, 39, 0.15);
    color: var(--lime);
}

.popup-badge {
    display: inline-block;
    background: var(--lime);
    border-radius: 4px;
    padding: 3px 14px;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #080808;
    margin-bottom: 14px;
}

.popup-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--lime);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 0 40px rgba(200, 242, 39, 0.4);
    letter-spacing: 0.04em;
}

.popup-subtitle {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: 600;
}

.popup-desc {
    font-size: 0.79rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 26px;
    font-weight: 300;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-visual {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        height: 300px;
    }

    .academy-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.wide {
        grid-column: span 1;
        aspect-ratio: 1;
    }

    .gallery-item.tall {
        grid-row: span 1;
        aspect-ratio: 1;
    }

    .pricing-offers {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }

    .booking-form,
    .academy-enroll-form {
        padding: 24px 18px;
    }
}

@media (max-width: 425px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .offer-card {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 18px;
        right: 14px;
    }

    input, select, textarea {
        width: 100%;
        max-width: 100%;
    }
}