/* 
    SYNSPACE — Futuristic Cyberpunk Design System
    Theme: Neon Dark / Holographic / Sci-Fi
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    --neon-cyan:    #00f5ff;
    --neon-purple:  #b54fff;
    --neon-blue:    #3d8bff;
    --neon-green:   #00ff88;
    --neon-pink:    #ff2d9e;

    --bg-void:      #020409;
    --bg-deep:      #060d1a;
    --bg-card:      rgba(8, 18, 38, 0.75);
    --bg-glass:     rgba(0, 245, 255, 0.03);

    --border-neon:  rgba(0, 245, 255, 0.2);
    --border-glow:  rgba(0, 245, 255, 0.5);

    --text-main:    #e2f4ff;
    --text-muted:   #7a9ab5;
    --text-dim:     #3a5270;

    --glow-cyan:    0 0 20px rgba(0, 245, 255, 0.4), 0 0 60px rgba(0, 245, 255, 0.15);
    --glow-purple:  0 0 20px rgba(181, 79, 255, 0.4), 0 0 60px rgba(181, 79, 255, 0.15);
    --glow-green:   0 0 20px rgba(0, 255, 136, 0.4), 0 0 60px rgba(0, 255, 136, 0.15);

    --glass-blur:   blur(16px);
    --transition:   all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-void);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.7;
}

/* Override Bootstrap text-muted */
.text-muted { color: var(--text-muted) !important; }

/* ============================================================
   ANIMATED GRID BACKGROUND
   ============================================================ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 10%, rgba(0, 245, 255, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 80% 90%, rgba(181, 79, 255, 0.06) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

/* Ensure all content is above pseudo-elements */
nav, section, footer, .floating-contact { position: relative; z-index: 1; }

/* ============================================================
   SCANLINE OVERLAY (subtle)
   ============================================================ */
.scanline-overlay {
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.04) 2px,
        rgba(0, 0, 0, 0.04) 4px
    );
    pointer-events: none;
    z-index: 9998;
}

/* ============================================================
   GLASSMORPHISM (Futuristic)
   ============================================================ */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-neon);
    border-radius: 16px;
    position: relative;
}

/* Top-left corner accent */
.glass-panel::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px;
    width: 40px; height: 40px;
    border-top: 2px solid var(--neon-cyan);
    border-left: 2px solid var(--neon-cyan);
    border-radius: 16px 0 0 0;
    pointer-events: none;
}

.glass-panel::after {
    content: '';
    position: absolute;
    bottom: -1px; right: -1px;
    width: 40px; height: 40px;
    border-bottom: 2px solid var(--neon-cyan);
    border-right: 2px solid var(--neon-cyan);
    border-radius: 0 0 16px 0;
    pointer-events: none;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    padding: 1.4rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    padding: 0.7rem 0;
    background: rgba(2, 4, 9, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-neon);
    box-shadow: 0 4px 30px rgba(0, 245, 255, 0.06);
}

.navbar-brand { letter-spacing: 1px; }

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    margin: 0 8px;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 1px;
    background: var(--neon-cyan);
    transition: width 0.3s ease;
    box-shadow: var(--glow-cyan);
}

.nav-link:hover {
    color: var(--neon-cyan) !important;
}

.nav-link:hover::after { width: 80%; }

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

/* Rotating ring decoration */
.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid transparent;
    pointer-events: none;
}

.hero-ring-1 {
    width: 600px; height: 600px;
    top: 50%; right: -200px;
    transform: translateY(-50%);
    border-color: rgba(0, 245, 255, 0.08);
    animation: spin-slow 40s linear infinite;
}

.hero-ring-2 {
    width: 400px; height: 400px;
    top: 50%; right: -100px;
    transform: translateY(-50%);
    border-color: rgba(181, 79, 255, 0.12);
    animation: spin-slow 28s linear infinite reverse;
}

@keyframes spin-slow {
    to { transform: translateY(-50%) rotate(360deg); }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, var(--neon-cyan) 50%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    animation: text-shimmer 4s ease infinite;
    background-size: 200% auto;
}

@keyframes text-shimmer {
    0%   { background-position: 0% center; }
    50%  { background-position: 100% center; }
    100% { background-position: 0% center; }
}

/* Badge Soft */
.badge-soft {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 245, 255, 0.07);
    color: var(--neon-cyan);
    padding: 7px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.82rem;
    border: 1px solid rgba(0, 245, 255, 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-soft::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan);
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

/* Stat Divider */
.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--neon-cyan), transparent);
}

/* Hero Image Wrapper */
.hero-img-wrapper {
    position: relative;
    border-radius: 20px;
}

.hero-img-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-blue));
    z-index: -1;
    opacity: 0.4;
    filter: blur(8px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-blue) 100%);
    border: none;
    padding: 12px 32px;
    border-radius: 10px;
    font-weight: 700;
    color: #020409;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 245, 255, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
    letter-spacing: 0.3px;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 245, 255, 0.5), 0 0 60px rgba(0, 245, 255, 0.15);
    color: #020409;
}

.btn-outline-neon {
    background: transparent;
    border: 1px solid var(--border-neon);
    color: var(--neon-cyan);
    padding: 12px 32px;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-outline-neon:hover {
    background: rgba(0, 245, 255, 0.08);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
    transform: translateY(-2px);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::before,
.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,245,255,0.3));
}

.section-label::after {
    background: linear-gradient(to left, transparent, rgba(0,245,255,0.3));
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.section-title span { color: var(--neon-cyan); }

/* ============================================================
   SERVICE / FEATURE CARDS
   ============================================================ */
.service-card {
    padding: 2.2rem;
    height: 100%;
    transition: var(--transition);
    cursor: pointer;
    background: var(--bg-glass);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,245,255,0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-glow);
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.12), inset 0 1px 0 rgba(0,245,255,0.1);
}

.service-icon {
    font-size: 2.2rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0, 245, 255, 0.08);
    border-radius: 14px;
    border: 1px solid rgba(0, 245, 255, 0.15);
    text-shadow: 0 0 20px var(--neon-cyan);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(0, 245, 255, 0.15);
    box-shadow: 0 0 25px rgba(0, 245, 255, 0.3);
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-card {
    position: relative;
    overflow: visible;
    transition: var(--transition);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 245, 255, 0.1);
    border-color: rgba(0, 245, 255, 0.3);
}

.pricing-card.featured {
    border: 1px solid rgba(0, 245, 255, 0.5) !important;
    background: rgba(0, 245, 255, 0.05) !important;
    transform: scale(1.04);
    box-shadow: 0 0 60px rgba(0, 245, 255, 0.12), 0 30px 80px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured::before { opacity: 1; }

.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }

/* Popular badge on pricing */
.popular-badge {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    color: #020409;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
}

.price-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--neon-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-check {
    color: var(--neon-green);
    text-shadow: 0 0 8px var(--neon-green);
}

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.review-card {
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: -15px; right: 20px;
    font-size: 9rem;
    color: rgba(0, 245, 255, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.1);
}

.review-card-featured {
    border-color: rgba(0, 245, 255, 0.35) !important;
    background: rgba(0, 245, 255, 0.04) !important;
}

.review-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.15);
}

.review-avatar span {
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}

.review-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 245, 255, 0.08);
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Stat card (used in reviews) */
.stat-card {
    transition: var(--transition);
}

.stat-card:hover {
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.08);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-icon-box {
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0, 245, 255, 0.07);
    border: 1px solid var(--border-neon);
    border-radius: 14px;
    transition: var(--transition);
    flex-shrink: 0;
}

.contact-icon-box:hover {
    background: rgba(0, 245, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

/* Form controls */
.form-control, .form-select {
    background: rgba(0, 245, 255, 0.03) !important;
    border: 1px solid var(--border-neon) !important;
    color: var(--text-main) !important;
    border-radius: 10px !important;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
}

.form-control::placeholder { color: var(--text-dim) !important; }

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 2px rgba(0, 245, 255, 0.2) !important;
    border-color: var(--neon-cyan) !important;
    background: rgba(0, 245, 255, 0.05) !important;
    outline: none !important;
}

.form-label { color: var(--text-muted); font-size: 0.85rem; font-weight: 500; }

/* form select options */
.form-select option { background: #060d1a; color: var(--text-main); }

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-section {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 245, 255, 0.2);
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05) 0%, rgba(181, 79, 255, 0.08) 100%);
}

.promo-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.promo-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(181, 79, 255, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--bg-deep) !important;
    border-top: 1px solid var(--border-neon) !important;
    position: relative;
    z-index: 1;
}

footer .footer-link {
    color: var(--text-muted) !important;
    text-decoration: none;
    transition: color 0.25s ease;
    display: block;
    margin-bottom: 10px;
    font-size: 0.92rem;
}

footer .footer-link:hover {
    color: var(--neon-cyan) !important;
}

.footer-social-btn {
    width: 38px; height: 38px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0, 245, 255, 0.06);
    border: 1px solid var(--border-neon);
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
}

.footer-social-btn:hover {
    background: rgba(0, 245, 255, 0.15);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
    transform: translateY(-2px);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.floating-contact {
    position: fixed;
    bottom: 30px; right: 30px;
    z-index: 1000;
}

.btn-floating {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: var(--transition);
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
}

.btn-floating:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    color: #fff;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animate-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

.animate-float { animation: float 5s ease-in-out infinite; }

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 15px rgba(0, 245, 255, 0.3); }
    50%       { box-shadow: 0 0 40px rgba(0, 245, 255, 0.6); }
}

/* ============================================================
   LANGUAGE DROPDOWN
   ============================================================ */
.dropdown-menu {
    background: rgba(6, 13, 26, 0.95) !important;
    border: 1px solid var(--border-neon) !important;
    backdrop-filter: blur(20px);
    border-radius: 12px !important;
}

.dropdown-item:hover {
    background: rgba(0, 245, 255, 0.08) !important;
    color: var(--neon-cyan) !important;
}

/* ============================================================
   FUTURISTIC "PALING POPULER" BADGE
   ============================================================ */
.popular-badge-futuristic {
    position: relative;
    display: inline-block;
}

/* Outer glow container */
.popular-badge-futuristic::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 40px;
    background: linear-gradient(90deg, #00f5ff, #b54fff, #00f5ff);
    background-size: 200% auto;
    animation: badge-border-spin 2.5s linear infinite;
    z-index: 0;
    filter: blur(3px);
    opacity: 0.7;
}

@keyframes badge-border-spin {
    to { background-position: 200% center; }
}

/* Inner badge pill */
.popular-badge-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #060d1a;
    border: 1px solid rgba(0, 245, 255, 0.4);
    border-radius: 30px;
    padding: 6px 18px;
    white-space: nowrap;
}

/* Animated dot indicators */
.popular-badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan);
    animation: badge-dot-pulse 1.8s ease infinite;
    flex-shrink: 0;
}

.popular-badge-dot:last-child {
    animation-delay: 0.9s;
    background: var(--neon-purple);
    box-shadow: 0 0 8px var(--neon-purple);
}

@keyframes badge-dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.3; transform: scale(0.6); }
}

/* Badge text */
.popular-badge-text {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #00f5ff, #b54fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Space Grotesk', sans-serif;
}

/* ============================================================
   MOBILE NAVBAR
   ============================================================ */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(2, 4, 9, 0.97);
        backdrop-filter: blur(20px);
        margin-top: 1rem;
        padding: 2rem;
        border-radius: 16px;
        border: 1px solid var(--border-neon);
    }
    .hero-section {
        padding: 120px 0 60px;
        text-align: center;
        min-height: auto;
    }
    .stat-divider { display: none; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-6px); }

    /* Hero image margin on mobile */
    .hero-img-wrapper { margin-top: 2rem; }

    /* Section label center on mobile */
    .section-label { justify-content: center !important; margin-left: auto; margin-right: auto; }

    /* Reviews stat bar */
    .stat-card { text-align: center; }
}

/* ============================================================
   RESPONSIVE — TABLET (≤768px)
   ============================================================ */
@media (max-width: 768px) {
    /* Hero */
    .hero-title { font-size: 2.4rem; }
    .hero-section { padding: 110px 0 50px; text-align: center; }

    /* Section titles */
    .section-title { font-size: 1.9rem; }

    /* Glass panels — reduce padding on smaller screens */
    .glass-panel { border-radius: 14px; }
    .glass-panel::before,
    .glass-panel::after { width: 24px; height: 24px; border-radius: 14px 0 0 0; }
    .glass-panel::after { border-radius: 0 0 14px 0; }

    /* Pricing cards stack full width */
    .pricing-card { margin-bottom: 1.5rem; }

    /* Contact section inner padding */
    #contact .glass-panel { padding: 2rem !important; }

    /* Promo banner padding */
    .promo-section { padding: 2.5rem 1.5rem !important; }

    /* Footer columns */
    footer .col-6 { width: 50%; }

    /* Floating WhatsApp smaller */
    .btn-floating { width: 50px; height: 50px; font-size: 1.2rem; }
    .floating-contact { bottom: 20px; right: 20px; }

    /* Review cards */
    .review-card { margin-bottom: 0; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤576px)
   ============================================================ */
@media (max-width: 576px) {
    /* Hero */
    .hero-title { font-size: 2rem; letter-spacing: -0.5px; }
    .section-title { font-size: 1.6rem; }

    /* Buttons full width on small screens */
    .hero-section .d-flex.flex-wrap { flex-direction: column; }
    .hero-section .btn-primary-custom,
    .hero-section .btn-outline-neon { width: 100%; text-align: center; }

    /* Hero stats row */
    .hero-section .d-flex.align-items-center.gap-4 { gap: 1.2rem !important; flex-wrap: wrap; justify-content: center; }

    /* Glass panel less padding */
    .service-card { padding: 1.5rem; }

    /* Pricing cards */
    .pricing-card { padding: 2rem 1.5rem !important; }
    .price-amount { font-size: 2rem; }

    /* Reviews stats */
    .stat-card { padding: 1.5rem !important; }

    /* Contact form */
    #contact .glass-panel { padding: 1.5rem !important; }
    .contact-icon-box { width: 48px !important; height: 48px !important; }

    /* Footer */
    footer { padding: 3rem 0 2rem !important; }
    footer .col-6 { width: 100%; }

    /* Navbar brand smaller */
    .navbar-brand .fw-black { font-size: 1.1rem !important; }

    /* Section padding reduce */
    section { padding-top: 4rem !important; padding-bottom: 4rem !important; }

    /* Popular badge wrapping fix */
    .popular-badge-text { letter-spacing: 2px; font-size: 0.62rem; }
    .popular-badge-inner { padding: 5px 12px; gap: 6px; }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-void); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--neon-cyan), var(--neon-purple));
    border-radius: 3px;
}

/* ============================================================
   HIDE GOOGLE TRANSLATE ARTIFACTS
   ============================================================ */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon,
.goog-te-gadget-simple { display: none !important; }
body { top: 0px !important; }
#goog-gt-tt, .goog-te-balloon-frame { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
.VIpgJd-ZVi9od-ORHb-OEVmcd { display: none !important; }
