/* ============================================================
   EFEX MEDIA STUDIOS — Editorial / Luxury Design System
   Single source of truth for the whole site (marketing + portal).
   Extracted & generalized from shotbyefex.html.
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
    --black: #0a0a0a;
    --deep-black: #050505;
    --card-bg: #111111;
    --card-bg-2: #161616;
    --line: rgba(255, 255, 255, 0.08);
    --line-soft: rgba(255, 255, 255, 0.05);
    --white: #ffffff;
    --off-white: #e8e8e8;
    --grey: #888888;
    --grey-dim: rgba(255, 255, 255, 0.35);
    --accent: #FF2D2D;
    --accent-2: #ff6b6b;
    --accent-glow: rgba(255, 45, 45, 0.3);
    --gold: #C9A84C;
    --gold-glow: rgba(201, 168, 76, 0.3);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-impact: 'Bebas Neue', sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --nav-h: 84px;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--deep-black);
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep-black); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Shared section eyebrow label */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}
.eyebrow::before {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--accent);
}
.eyebrow.centered { justify-content: center; }

/* ---------- CUSTOM CURSOR ---------- */
.cursor-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed; pointer-events: none;
    z-index: 99999; transition: transform 0.1s;
    mix-blend-mode: difference;
}
.cursor-ring {
    width: 40px; height: 40px;
    border: 1.5px solid rgba(255, 45, 45, 0.5);
    border-radius: 50%;
    position: fixed; pointer-events: none;
    z-index: 99998; transition: all 0.15s ease-out;
    mix-blend-mode: difference;
}
.cursor-ring.hover {
    transform: scale(1.8);
    border-color: var(--accent);
    background: rgba(255, 45, 45, 0.08);
}

/* ---------- NOISE OVERLAY ---------- */
.noise {
    position: fixed; inset: 0; z-index: 9000;
    pointer-events: none; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat; background-size: 256px 256px;
}

/* ---------- LOADER ---------- */
.loader {
    position: fixed; inset: 0;
    background: var(--deep-black);
    z-index: 10000;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-logo { width: 300px; max-width: 70vw; animation: logoPulse 1.5s ease-in-out infinite; }
.loader-bar-track {
    width: 200px; height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 30px; border-radius: 2px; overflow: hidden;
}
.loader-bar {
    height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    border-radius: 2px; animation: loadBar 2s ease-out forwards;
}
@keyframes loadBar { to { width: 100%; } }
@keyframes logoPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.95); }
}

/* ---------- NAVBAR ---------- */
.site-nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 8000;
    height: var(--nav-h);
    display: flex; align-items: center;
    transition: background 0.4s ease, height 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
    border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
    height: 66px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(16px);
    border-bottom-color: var(--line-soft);
}
.site-nav .container {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img { height: 44px; width: auto; transition: height 0.4s ease; filter: drop-shadow(0 0 18px rgba(255, 45, 45, 0.25)); }
.site-nav.scrolled .nav-brand img { height: 34px; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
    font-size: 13px; font-weight: 500;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--off-white); position: relative;
    transition: color 0.3s ease;
}
.nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: -6px;
    width: 0; height: 1px; background: var(--accent);
    transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 24px; border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 12px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--white); transition: var(--transition);
    background: rgba(255, 255, 255, 0.03);
}
.nav-cta:hover {
    border-color: var(--accent);
    background: rgba(255, 45, 45, 0.12);
    box-shadow: 0 0 30px var(--accent-glow);
}
.nav-cta::after { display: none; }

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    background: transparent; border: 1px solid var(--line);
    border-radius: 10px; color: var(--white);
    font-size: 18px; cursor: pointer;
}

/* ---------- PAGE HEADER (inner pages) ---------- */
.page-header {
    position: relative;
    min-height: 52vh;
    display: flex; align-items: center;
    padding: calc(var(--nav-h) + 40px) 0 60px;
    overflow: hidden;
    text-align: center;
}
.page-header .ph-bg {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center;
    filter: brightness(0.22) saturate(0.4);
    transform: scale(1.08);
    animation: heroBgZoom 20s ease-in-out infinite alternate;
}
.page-header::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255, 45, 45, 0.10) 0%, transparent 60%),
        linear-gradient(180deg, transparent 40%, var(--black) 100%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 {
    font-family: var(--font-impact);
    font-size: clamp(48px, 8vw, 110px);
    letter-spacing: 6px; line-height: 0.95;
}
.page-header h1 em {
    font-family: var(--font-display); font-style: italic;
    font-weight: 700; letter-spacing: 0;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.page-header .breadcrumb {
    margin-top: 18px; font-size: 12px;
    letter-spacing: 3px; text-transform: uppercase; color: var(--grey);
}
.page-header .breadcrumb a:hover { color: var(--accent); }

@keyframes heroBgZoom { from { transform: scale(1.08); } to { transform: scale(1.18); } }

/* ---------- SECTION HEADER ---------- */
.section { padding: 110px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 700; margin-bottom: 12px;
}
.section-header h2 em { font-style: italic; color: var(--accent); }
.section-header p { color: var(--grey); font-size: 15px; max-width: 540px; margin: 0 auto; }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 38px; border-radius: 50px;
    font-family: var(--font-body); font-size: 13px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    cursor: pointer; border: none; transition: var(--transition);
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--white); box-shadow: 0 10px 40px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 60px var(--accent-glow); }
.btn-ghost {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15); color: var(--white);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    border-color: var(--accent); background: rgba(255, 45, 45, 0.1);
    box-shadow: 0 0 40px var(--accent-glow); transform: translateY(-2px);
}

/* ---------- MARQUEE ---------- */
.marquee-section {
    padding: 28px 0;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    overflow: hidden; background: var(--deep-black);
}
.marquee-track { display: flex; animation: marquee 30s linear infinite; width: max-content; }
.marquee-item { display: flex; align-items: center; gap: 20px; padding: 0 36px; white-space: nowrap; }
.marquee-item span {
    font-family: var(--font-impact); font-size: 24px;
    letter-spacing: 4px; color: rgba(255, 255, 255, 0.15);
}
.marquee-item .sep { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- CARDS (services / features / team) ---------- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.lux-card {
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 38px 32px;
    transition: var(--transition);
    position: relative; overflow: hidden;
}
.lux-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease;
}
.lux-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 45, 45, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.lux-card:hover::before { transform: scaleX(1); }
.lux-card .card-icon {
    width: 60px; height: 60px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 24px;
    background: rgba(255, 45, 45, 0.1); color: var(--accent);
    transition: var(--transition);
}
.lux-card:hover .card-icon { background: linear-gradient(135deg, var(--accent), var(--gold)); color: var(--white); }
.lux-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.lux-card p { color: var(--grey); font-size: 14px; line-height: 1.8; margin-bottom: 18px; }
.lux-card .card-link {
    font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    color: var(--accent); display: inline-flex; align-items: center; gap: 8px;
    transition: gap 0.3s ease;
}
.lux-card .card-link:hover { gap: 14px; }

/* Team member */
.team-card { text-align: center; }
.team-card .team-photo {
    width: 100%; aspect-ratio: 3/4; object-fit: cover;
    border-radius: var(--radius); margin-bottom: 18px;
    filter: grayscale(0.3) contrast(1.05); transition: var(--transition);
    border: 1px solid var(--line);
}
.team-card:hover .team-photo { filter: grayscale(0); transform: translateY(-4px); }
.team-card h3 { font-family: var(--font-display); font-size: 20px; }
.team-card .role { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-top: 4px; }
.team-card .team-socials { display: flex; justify-content: center; gap: 12px; margin-top: 14px; }
.team-card .team-socials a { color: var(--grey); transition: color 0.3s ease; }
.team-card .team-socials a:hover { color: var(--accent); }

/* Stat numbers */
.about-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat-item .stat-num {
    font-family: var(--font-impact); font-size: 48px; letter-spacing: 2px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-item .stat-label { font-size: 12px; color: var(--grey); letter-spacing: 1px; text-transform: uppercase; }

/* ---------- FORMS ---------- */
.lux-form { display: flex; flex-direction: column; gap: 18px; }
.lux-field label {
    display: block; font-size: 11px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase; color: var(--grey); margin-bottom: 8px;
}
.lux-field input, .lux-field select, .lux-field textarea {
    width: 100%; padding: 14px 16px;
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--white); font-family: var(--font-body); font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease; outline: none;
}
.lux-field textarea { min-height: 140px; resize: vertical; }
.lux-field select { appearance: none; cursor: pointer; }
.lux-field input:focus, .lux-field select:focus, .lux-field textarea:focus {
    border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255, 45, 45, 0.12);
}
.lux-field input::placeholder, .lux-field textarea::placeholder { color: rgba(255, 255, 255, 0.25); }
.form-hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-status { font-size: 14px; padding: 12px 16px; border-radius: var(--radius-sm); display: none; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.3); color: #86efac; }
.form-status.err { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.3); color: #fca5a5; }

/* Contact info cards */
.info-card {
    display: flex; gap: 18px; align-items: flex-start;
    background: var(--card-bg); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 24px; transition: var(--transition);
}
.info-card:hover { border-color: rgba(255, 45, 45, 0.3); transform: translateY(-3px); }
.info-card .ic-icon {
    width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 45, 45, 0.1); color: var(--accent); font-size: 18px;
}
.info-card h4 { font-family: var(--font-display); font-size: 17px; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--grey); font-size: 14px; line-height: 1.6; }
.info-card a:hover { color: var(--accent); }

/* ---------- MASONRY GALLERY + FILTER (portfolio) ---------- */
.filter-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 50px; }
.filter-btn {
    padding: 10px 24px; border: 1px solid var(--line); border-radius: 50px;
    background: transparent; color: var(--grey);
    font-family: var(--font-body); font-size: 13px; font-weight: 500;
    letter-spacing: 1px; text-transform: uppercase; cursor: pointer;
    transition: var(--transition); position: relative; overflow: hidden;
}
.filter-btn::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    opacity: 0; transition: opacity 0.4s; border-radius: 50px;
}
.filter-btn span { position: relative; z-index: 1; }
.filter-btn:hover { border-color: var(--accent); color: var(--white); }
.filter-btn.active { border-color: transparent; color: var(--white); }
.filter-btn.active::before { opacity: 1; }

.gallery-grid { columns: 4; column-gap: 16px; }
.gallery-item {
    break-inside: avoid; margin-bottom: 16px;
    border-radius: var(--radius); overflow: hidden;
    position: relative; cursor: pointer; transition: var(--transition);
}
.gallery-item.hide { display: none; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
.gallery-item img { width: 100%; display: block; transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0; transition: opacity 0.4s ease;
    display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay .cat-tag {
    display: inline-block; padding: 4px 12px; border-radius: 20px;
    background: var(--accent); color: var(--white); font-size: 10px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; width: fit-content;
}
.gallery-overlay .play-badge, .gallery-overlay .expand-icon {
    position: absolute; top: 20px; right: 20px;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 16px;
    transform: scale(0) rotate(-90deg);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gallery-item:hover .play-badge, .gallery-item:hover .expand-icon { transform: scale(1) rotate(0deg); }
.gallery-overlay .item-title { font-family: var(--font-display); font-size: 16px; }

@media (max-width: 1200px) { .gallery-grid { columns: 3; } }
@media (max-width: 768px) { .gallery-grid { columns: 2; column-gap: 10px; } .gallery-item { margin-bottom: 10px; } }

/* ---------- LIGHTBOX ---------- */
.lightbox {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(0, 0, 0, 0.95); backdrop-filter: blur(30px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-close, .lightbox-nav {
    position: absolute; width: 50px; height: 50px; border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.05);
    color: var(--white); font-size: 18px; cursor: pointer; transition: var(--transition);
    backdrop-filter: blur(10px); z-index: 3;
}
.lightbox-close { top: 30px; right: 30px; }
.lightbox-close:hover { background: var(--accent); border-color: var(--accent); transform: rotate(90deg); }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-nav:hover { background: var(--accent); border-color: var(--accent); }
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }
.lightbox img, .lightbox video {
    max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius);
    transform: scale(0.9); transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lightbox.active img, .lightbox.active video { transform: scale(1); }
.lightbox-counter {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    font-family: var(--font-impact); font-size: 16px; letter-spacing: 4px; color: var(--grey);
}
@media (max-width: 768px) { .lightbox-prev { left: 10px; } .lightbox-next { right: 10px; } }

/* ---------- FOOTER ---------- */
.site-footer { padding: 80px 0 36px; border-top: 1px solid var(--line-soft); background: var(--deep-black); }
.footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; margin-bottom: 50px;
}
.footer-brand img { width: 130px; margin-bottom: 18px; }
.footer-brand p { color: var(--grey); font-size: 14px; line-height: 1.8; max-width: 360px; }
.footer-col h4 {
    font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--white); margin-bottom: 20px;
}
.footer-col a { display: block; color: var(--grey); font-size: 14px; margin-bottom: 12px; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-socials { display: flex; gap: 14px; margin-top: 6px; }
.footer-socials a {
    width: 42px; height: 42px; border-radius: 50%;
    border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
    color: var(--grey); transition: var(--transition);
}
.footer-socials a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); box-shadow: 0 10px 30px var(--accent-glow); }
.footer-bottom {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    padding-top: 28px; border-top: 1px solid var(--line-soft);
    font-size: 13px; color: var(--grey-dim);
}
.footer-bottom a { color: var(--accent); }

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
    position: fixed; bottom: 28px; left: 28px; z-index: 7000;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 22px; border-radius: 50px;
    background: linear-gradient(135deg, #25d366, #128c7e); color: #fff;
    font-weight: 600; font-size: 14px; box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}
.wa-float i { font-size: 20px; }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(37, 211, 102, 0.55); }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
    .container { padding: 0 24px; }
    .cursor-dot, .cursor-ring { display: none; }
    .nav-links {
        position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 82vw);
        flex-direction: column; align-items: flex-start; justify-content: center;
        gap: 26px; padding: 40px;
        background: rgba(8, 8, 8, 0.98); backdrop-filter: blur(20px);
        border-left: 1px solid var(--line);
        transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links a { font-size: 16px; }
    .nav-toggle { display: flex; align-items: center; justify-content: center; z-index: 8500; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .section { padding: 80px 0; }
}
@media (max-width: 600px) {
    .container { padding: 0 18px; }
    .about-stats { gap: 24px; }
    .stat-item .stat-num { font-size: 38px; }
    .wa-float span { display: none; }
    .wa-float { padding: 14px; }
}
