/* =============================================
   NEXABYTE — GLOBAL STYLES
   ============================================= */

:root {
    --accent: #4fd000;
    --accent-dark: #3ba600;
    --accent-glow: rgba(79, 208, 0, 0.25);
    --accent-subtle: rgba(79, 208, 0, 0.08);
    --bg-primary: #0a0e17;
    --bg-card: #111827;
    --bg-card-hover: #1a2332;
    --bg-surface: #0f1520;
    --text-primary: #e8edf5;
    --text-secondary: #8895a7;
    --border-color: rgba(79, 208, 0, 0.12);
    --border-subtle: rgba(255,255,255,0.06);
    --font-display: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

.text-accent { color: var(--accent) !important; }
.text-secondary-light { color: var(--text-secondary); }

.py-6 { padding-top: 6rem; padding-bottom: 6rem; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-dark); border-radius: 3px; }

/* =============================================
   NAVBAR
   ============================================= */
#mainNav {
    padding: 1rem 0;
    transition: all .4s ease;
    backdrop-filter: blur(12px);
    background: rgba(10, 14, 23, 0.85);
    border-bottom: 1px solid transparent;
}
#mainNav.scrolled {
    padding: .6rem 0;
    border-bottom-color: var(--border-color);
    background: rgba(10, 14, 23, 0.95);
}
.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}
.brand-icon {
    color: var(--accent);
    font-size: 1.3rem;
    margin-right: 2px;
}
.nav-link {
    font-weight: 500;
    font-size: .9rem;
    letter-spacing: 0.02em;
    padding: .5rem 1rem !important;
    color: var(--text-secondary) !important;
    transition: color .3s;
}
.nav-link:hover, .nav-link.active {
    color: var(--accent) !important;
}
.btn-accent {
    background: var(--accent);
    color: #0a0e17;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    transition: all .3s;
}
.btn-accent:hover {
    background: var(--accent-dark);
    color: #0a0e17;
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-1px);
}
.btn-outline-light {
    border-radius: var(--radius-sm);
    font-weight: 500;
    border-color: rgba(255,255,255,.2);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.3);
}

/* =============================================
   HERO
   ============================================= */
.hero-section {
    position: relative;
    background: var(--bg-primary);
    overflow: hidden;
    min-height: 100vh;
}
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(79,208,0,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79,208,0,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}
.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79,208,0,.10) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}
.hero-tag {
    font-family: var(--font-mono);
    font-size: .85rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
    50% { box-shadow: 0 0 0 8px transparent; }
}
.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}
.typed-text {
    position: relative;
    display: inline-block;
}
.typed-text::after {
    content: '';
    display: inline-block;
    width: 3px;
    height: .85em;
    background: var(--accent);
    margin-left: 4px;
    vertical-align: text-bottom;
    animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 2rem;
}
.hero-btns { margin-bottom: 1rem; }
.hero-stats {
    display: flex;
    gap: 2.5rem;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.stat-label {
    font-size: .78rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Hero visual */
.hero-visual {
    position: relative;
    height: 500px;
}
.hex {
    position: absolute;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transform: rotate(45deg);
    opacity: .5;
}
.hex-1 { width: 120px; height: 120px; top: 20px; right: 40px; animation: float 6s ease-in-out infinite; }
.hex-2 { width: 80px; height: 80px; top: 180px; right: 200px; animation: float 8s ease-in-out infinite; }
.hex-3 { width: 60px; height: 60px; bottom: 80px; right: 60px; animation: float 7s ease-in-out infinite; border-color: var(--accent); opacity: .3; }
@keyframes float {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(-20px); }
}

/* Terminal */
.terminal-card {
    position: absolute;
    top: 60px;
    left: 10px;
    width: 340px;
    background: #0d1117;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,.5), 0 0 40px var(--accent-glow);
    animation: float 6s ease-in-out infinite;
}
.terminal-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #161b22;
    border-bottom: 1px solid var(--border-subtle);
}
.term-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.term-dot.red { background: #ff5f57; }
.term-dot.yellow { background: #febc2e; }
.term-dot.green { background: var(--accent); }
.term-title {
    font-family: var(--font-mono);
    font-size: .72rem;
    color: var(--text-secondary);
    margin-left: auto;
}
.terminal-body {
    padding: 14px 18px;
    font-family: var(--font-mono);
    font-size: .78rem;
    line-height: 1.9;
}
.terminal-body p { margin: 0; }
.term-prompt { color: var(--accent); margin-right: 8px; }
.term-success { color: var(--accent); }
.term-cursor { animation: blink 1s step-end infinite; }

/* =============================================
   SECTIONS
   ============================================= */
.section-dark { background: var(--bg-surface); }
.section-pattern {
    background: var(--bg-primary);
    position: relative;
}
.section-tag {
    font-family: var(--font-mono);
    color: var(--accent);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: .5rem;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Service Cards */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity .4s;
}
.service-card:hover {
    border-color: var(--border-color);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-subtle);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 1.4rem;
}
.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .8rem;
}
.service-card p {
    color: var(--text-secondary);
    font-size: .92rem;
    margin-bottom: 1.2rem;
}
.service-tags {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1.2rem;
}
.service-tags li {
    font-family: var(--font-mono);
    font-size: .7rem;
    padding: 4px 10px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--accent);
}
.service-link {
    font-size: .88rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: gap .3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.service-link:hover { gap: 12px; color: var(--accent); }

/* Why Cards */
.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 1.8rem 1.4rem;
    transition: all .3s;
}
.why-card:hover {
    border-color: var(--border-color);
    transform: translateY(-4px);
}
.why-card i {
    font-size: 1.6rem;
    color: var(--accent);
    margin-bottom: .8rem;
    display: block;
}
.why-card h5 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: .5rem;
}
.why-card p {
    color: var(--text-secondary);
    font-size: .84rem;
    margin: 0;
}

/* Tech Marquee */
.tech-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}
.tech-track {
    display: flex;
    gap: 1rem;
    animation: scroll-left 25s linear infinite;
    width: max-content;
}
@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.tech-badge {
    font-family: var(--font-mono);
    font-size: .82rem;
    font-weight: 500;
    padding: 10px 24px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    white-space: nowrap;
    color: var(--text-secondary);
    transition: all .3s;
}
.tech-badge:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: var(--accent-subtle);
}

/* CTA */
.cta-section {
    position: relative;
    background: var(--bg-card);
    overflow: hidden;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79,208,0,.08), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--bg-surface);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-subtle);
}
.footer-brand {
    font-weight: 800;
    font-size: 1.3rem;
    text-decoration: none;
    color: var(--text-primary);
}
.footer-brand:hover { color: var(--text-primary); }
.footer-desc {
    color: var(--text-secondary);
    font-size: .88rem;
    max-width: 300px;
}
.footer-heading {
    font-weight: 700;
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: 0.12em;
    color: var(--text-primary);
    margin-bottom: 1rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: .5rem;
    font-size: .88rem;
    color: var(--text-secondary);
}
.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color .3s;
}
.footer-links a:hover { color: var(--accent); }
.social-links {
    display: flex;
    gap: 12px;
}
.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all .3s;
}
.social-links a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-subtle);
}
.footer-hr {
    border-color: var(--border-subtle);
    margin: 2rem 0 1.2rem;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.page-header {
    padding: 10rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header .hero-grid-bg {
    mask-image: radial-gradient(ellipse 60% 80% at 50% 30%, black 20%, transparent 70%);
}
.page-header-tag {
    font-family: var(--font-mono);
    color: var(--accent);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.timeline {
    position: relative;
    padding-left: 30px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), transparent);
}
.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 6px;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent-glow);
}
.timeline-year {
    font-family: var(--font-mono);
    color: var(--accent);
    font-size: .8rem;
    font-weight: 700;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all .3s;
}
.team-card:hover {
    border-color: var(--border-color);
    transform: translateY(-4px);
}
.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-subtle), var(--bg-card-hover));
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}
.team-card h5 { font-weight: 700; font-size: 1rem; }
.team-role {
    font-family: var(--font-mono);
    font-size: .75rem;
    color: var(--accent);
}

/* =============================================
   SERVICES PAGE
   ============================================= */
.service-detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin-bottom: 2rem;
    transition: all .3s;
}
.service-detail-card:hover {
    border-color: var(--border-color);
}
.service-detail-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-subtle);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-list li {
    padding: .6rem 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: .92rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}
.feature-list li:last-child { border: none; }
.feature-list li i {
    color: var(--accent);
    font-size: .75rem;
}

/* Pricing */
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all .3s;
    position: relative;
}
.pricing-card:hover {
    border-color: var(--border-color);
    transform: translateY(-6px);
}
.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 40px var(--accent-glow);
}
.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #0a0e17;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 16px;
    border-radius: 20px;
}
.pricing-label {
    font-family: var(--font-mono);
    font-size: .78rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.pricing-amount {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin: .5rem 0;
}
.pricing-period {
    font-size: .85rem;
    color: var(--text-secondary);
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}
.pricing-features li {
    padding: .5rem 0;
    font-size: .88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.pricing-features li i { color: var(--accent); }

/* =============================================
   PORTFOLIO PAGE
   ============================================= */
.portfolio-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}
.filter-btn {
    font-family: var(--font-mono);
    font-size: .78rem;
    padding: 8px 20px;
    border: 1px solid var(--border-subtle);
    border-radius: 30px;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all .3s;
}
.filter-btn:hover, .filter-btn.active {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-subtle);
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .4s;
}
.project-card:hover {
    border-color: var(--border-color);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.project-thumb {
    height: 220px;
    background: linear-gradient(135deg, var(--accent-subtle), var(--bg-card-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent);
    position: relative;
    overflow: hidden;
}
.project-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, var(--bg-card));
}
.project-info {
    padding: 1.5rem;
}
.project-info h5 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: .3rem;
}
.project-category {
    font-family: var(--font-mono);
    font-size: .7rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: .5rem;
    display: block;
}
.project-info p {
    color: var(--text-secondary);
    font-size: .85rem;
    margin: 0;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 3rem;
}
.form-control, .form-select {
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    padding: .75rem 1rem;
    font-family: var(--font-display);
    transition: all .3s;
}
.form-control:focus, .form-select:focus {
    background: var(--bg-primary);
    border-color: var(--accent);
    color: var(--text-primary);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-control::placeholder { color: var(--text-secondary); }
.form-label {
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: .4rem;
    color: var(--text-primary);
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all .3s;
}
.contact-info-card:hover {
    border-color: var(--border-color);
}
.contact-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--accent-subtle);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
}
.contact-info-card h6 {
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: .15rem;
}
.contact-info-card p {
    color: var(--text-secondary);
    font-size: .85rem;
    margin: 0;
}

/* =============================================
   PAGE-SPECIFIC HELPERS
   ============================================= */
.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
}
.value-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}
.value-card h5 { font-weight: 700; }
.value-card p {
    color: var(--text-secondary);
    font-size: .88rem;
    margin: 0;
}

.process-step {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}
.step-num {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--accent-subtle);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--accent);
}
.step-content h5 { font-weight: 700; font-size: 1rem; margin-bottom: .3rem; }
.step-content p { color: var(--text-secondary); font-size: .88rem; margin: 0; }

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}
.whatsapp-float .wa-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4), 0 0 0 0 rgba(37, 211, 102, .35);
    transition: all .3s ease;
    animation: wa-pulse 2.5s infinite;
}
.whatsapp-float .wa-icon svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}
.whatsapp-float:hover .wa-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, .55);
    animation: none;
}
.whatsapp-float .wa-label {
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: .82rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 4px 16px rgba(0,0,0,.3);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all .3s ease;
    pointer-events: none;
}
.whatsapp-float:hover .wa-label {
    opacity: 1;
    transform: translateX(0);
}
@keyframes wa-pulse {
    0%   { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.35); }
    70%  { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
    .hero-stats { gap: 1.5rem; }
    .py-6 { padding-top: 4rem; padding-bottom: 4rem; }
    .service-detail-card { padding: 2rem; }
    .contact-form-card { padding: 2rem; }
}
@media (max-width: 576px) {
    .hero-stats { flex-direction: column; gap: 1rem; }
    .hero-btns .btn { display: block; width: 100%; margin-bottom: .5rem; }
    .hero-btns .btn:first-child { margin-right: 0 !important; }
}
