:root {
    --bg-main: #0a0f1c; 
    --deep-purple: #36013F; 
    --glass-dark: #341539; 
    --text-main: #f1f5f9;
    --text-muted: #cbd5e1;
    --primary: #FFC107; 
    --primary-dark: #FFB300;
    --btn-text: #2D0135; 
    --radius: 20px; 
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Hind Siliguri', sans-serif;
    scroll-behavior: smooth;
    cursor: none !important;
}

html, body {
    width: 100%;
    min-height: 100vh;
    background: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.global-cursor {
    position: fixed;
    top: 0; 
    left: 0;
    width: 25px; 
    height: 25px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transform: translate3d(-50%, -50%, 0);
    transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                height 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                background 0.3s ease, border 0.3s ease, opacity 0.3s;
    will-change: transform, width, height, background;
    opacity: 0;
}

.global-cursor.active {
    opacity: 1;
}

.global-cursor.hovering {
    width: 75px; 
    height: 75px;
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid var(--primary);
    mix-blend-mode: normal;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

/* HARDWARE ACCELERATION APPLIED HERE */
a, button, .btn, .icon-btn, .location-card, .contact-card, .price-card, .btn-glass, .btn-gradient, .btn-Store, .btn-card, .tab-btn, .chip, .chat-launcher, .close-chat, .btn-submit, .btn-check-status, .btn-speed {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
    transform: translateZ(0);
    will-change: transform, box-shadow;
}

#network-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(circle at top right, #1e293b, #0a0f1c 80%);
    will-change: transform;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5%;
    background: transparent; 
    border-bottom: none;
    height: 85px;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 15, 28, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; display: inline-block; }
.logo img, .logo video { height: 55px; width: auto; object-fit: contain; filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.3)); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); will-change: transform; }
.logo:hover img, .logo:hover video { transform: scale(1.1); }

.nav-center { display: flex; gap: 2.5rem; }
.nav-center a { color: #cbd5e1; text-decoration: none; font-size: 1.05rem; font-weight: 500; position: relative; display: inline-block; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s; will-change: transform; }
.nav-center a:hover { color: var(--primary); text-shadow: 0 0 10px rgba(255, 193, 7, 0.4); transform: scale(1.25); }

.nav-actions { display: flex; align-items: center; gap: 15px; }
.icon-btn { width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); display: inline-flex; align-items: center; justify-content: center; color: #94a3b8; border: 1px solid rgba(255, 255, 255, 0.1); text-decoration: none; }
.icon-btn:hover { background: rgba(255, 193, 7, 0.15); color: var(--primary); border-color: var(--primary); transform: translateY(-3px) scale(1.15); }

.btn-glass { padding: 0.6rem 1.2rem; border-radius: 50px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.15); color: #e2e8f0; text-decoration: none; font-size: 0.95rem; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.btn-glass:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; color: #fff; transform: scale(1.1); }

.btn-gradient { padding: 0.6rem 1.5rem; border-radius: 50px; background: var(--primary); color: var(--btn-text) !important; text-decoration: none; font-weight: 700; font-size: 0.95rem; border: none; box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3); white-space: nowrap; display: inline-block; }
.btn-gradient:hover { background: var(--primary-dark); transform: translateY(-3px) scale(1.1); box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5); }

.btn-Store { padding: 0.6rem 1.2rem; border-radius: 50px; background: rgba(255, 193, 7, 0.08); border: 1px solid var(--primary); color: var(--primary); text-decoration: none; font-size: 0.95rem; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.btn-Store:hover { background: var(--primary); color: var(--btn-text); box-shadow: 0 0 20px rgba(255, 193, 7, 0.5); transform: translateY(-3px) scale(1.1); }

.menu-icon { display: none; color: #fff; font-size: 1.8rem; transition: transform 0.3s; }
.menu-icon:hover { transform: scale(1.1); }

.nav-links { position: fixed; top: 0; right: 0; transform: translate3d(100%, 0, 0); width: 280px; height: 100vh; background: rgba(10, 15, 28, 0.98); backdrop-filter: blur(20px); display: flex; flex-direction: column; padding-top: 80px; gap: 1.5rem; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5); z-index: 999; border-left: 1px solid rgba(255,255,255,0.1); will-change: transform; }
.nav-links.active { transform: translate3d(0, 0, 0); }
.nav-links a { color: #cbd5e1; text-decoration: none; font-size: 1.1rem; padding: 10px 30px; }
.nav-links a:hover { color: var(--primary); background: rgba(255,255,255,0.03); padding-left: 35px; transform: scale(1.02); }

@media (max-width: 850px) { .nav-center, .nav-actions { display: none; } .menu-icon { display: block; z-index: 1000; } }

.slider-container { position: relative; width: 100%; height: 100vh; overflow: hidden; background-color: transparent; touch-action: pan-y; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; will-change: transform, opacity; backface-visibility: hidden; transform-style: preserve-3d; }
.slide-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; will-change: transform; transform: scale(1.05); backface-visibility: hidden; transform-style: preserve-3d; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 15, 28, 0.9) 0%, rgba(10, 15, 28, 0.4) 50%, rgba(255, 193, 7, 0.1) 100%); z-index: 1; pointer-events: none; }
.slide-content { position: absolute; top: 50%; left: 8%; transform: translateY(-40%); opacity: 0; z-index: 2; pointer-events: none; transition: opacity 480ms ease, transform 480ms ease !important; will-change: auto; }
.slide.active .slide-content { opacity: 1; transform: translateY(-50%); transition-delay: 120ms !important; }

.slider-container::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 180px; 
    background: linear-gradient(to bottom, rgba(54, 1, 63, 0) 0%, rgba(54, 1, 63, 0.8) 60%, var(--deep-purple) 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 80%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 80%);
    z-index: 10; pointer-events: none;
}

.speed-badge { display: inline-block; background: rgba(255, 193, 7, 0.15); color: var(--primary); padding: 8px 20px; border-radius: 50px; font-size: 0.95rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 20px; border: 1px solid rgba(255, 193, 7, 0.3); text-transform: uppercase; }
.tech-title { font-size: 4.5rem; color: #ffffff; margin-bottom: 15px; font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; }
.highlight { color: var(--primary); position: relative; display: inline-block; }
.tech-subtitle { font-size: 1.35rem; color: #cbd5e1; margin-bottom: 40px; max-width: 650px; line-height: 1.6; }

.hero-ctas { pointer-events: auto; display: flex; gap: 1.5rem; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.8rem; padding: 1rem 2.5rem; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1.1rem; }
.btn-primary { background: var(--primary); color: var(--btn-text); box-shadow: 0 0 20px rgba(255, 193, 7, 0.4); border: 1px solid transparent; }
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 0 35px rgba(255, 193, 7, 0.6); transform: translateY(-5px) scale(1.05); }
.btn-outline { background: rgba(255,255,255,0.05); border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; backdrop-filter: blur(5px); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-5px) scale(1.05); }

.announcement-bar { background: rgba(0, 0, 0, 0.2); padding: 15px 5%; display: flex; align-items: center; color: #fff; position: relative; z-index: 20; border-bottom: 1px solid rgba(255,255,255,0.05); }
.announcement-icon { color: var(--primary); font-size: 1.3rem; margin-right: 15px; }
.announcement-text { flex: 1; overflow: hidden; white-space: nowrap; }
.announcement-text marquee { font-size: 1.05rem; font-weight: 600; letter-spacing: 0.5px; color: #e2e8f0; }

.purple-theme-wrapper {
    position: relative; z-index: 10; background-color: var(--deep-purple);
    background-image: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?auto=format&fit=crop&w=1920&q=80');
    background-size: cover; background-position: center; background-attachment: scroll; color: #f1f5f9; padding-bottom: 5rem;
}
.purple-theme-wrapper::before { content: ''; position: absolute; inset: 0; background: rgba(54, 1, 63, 0.92); z-index: -1; }

.section-title { font-size: 2.8rem; font-weight: 800; margin-bottom: 0.5rem; text-align: center; color: #ffffff; letter-spacing: -1px; }
.section-subtitle { text-align: center; color: #cbd5e1; margin-bottom: 3.5rem; font-size: 1.2rem; }

.packages { padding: 6rem 5% 3rem; position: relative; z-index: 10; }
.pricing-container { display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; perspective: 1000px; }

.price-card { 
    width: 350px; background: linear-gradient(145deg, rgba(52, 21, 57, 0.6), rgba(0, 0, 0, 0.8)); 
    backdrop-filter: blur(25px) saturate(180%); -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1); border-top: 1px solid rgba(255, 255, 255, 0.25); border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px; padding: 3rem 2.5rem; position: relative; text-align: left; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), inset 0 1px 1px rgba(255,255,255,0.05); overflow: hidden; transform: translateZ(0); 
}

/* OPTIMIZED HOVER */
.price-card:hover, .price-card.touch-popup { 
    transform: translate3d(0, -12px, 0) scale(1.02) !important; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(255, 193, 7, 0.2) !important; 
    border-color: rgba(255, 193, 7, 0.8) !important; z-index: 5;
}

.popular-badge { position: absolute; top: 25px; right: -35px; background: linear-gradient(45deg, var(--primary-dark), var(--primary)); color: var(--btn-text); padding: 8px 40px; transform: rotate(45deg); font-weight: 800; font-size: 0.95rem; box-shadow: 0 5px 20px rgba(0,0,0,0.4); z-index: 2; }
.card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.package-name { font-size: 1.6rem; color: #fff; font-weight: 800; }
.price { background: rgba(0,0,0,0.5); padding: 8px 20px; border-radius: 30px; color: var(--primary); font-weight: 700; font-size: 1.1rem; border: 1px solid rgba(255,255,255,0.08); box-shadow: inset 0 2px 5px rgba(0,0,0,0.5); }
.speed { font-size: 4rem; font-weight: 800; margin: 1.5rem 0 2.5rem; color: #ffffff; display: flex; align-items: baseline; gap: 8px; text-shadow: 0 5px 20px rgba(0,0,0,0.5); line-height: 1; }
.speed span { font-size: 1.2rem; color: #cbd5e1; font-weight: 600; }
.features-list { list-style: none; margin-bottom: 3rem; }
.features-list li { margin: 1.2rem 0; color: #e2e8f0; font-size: 1.05rem; display: flex; align-items: center; font-weight: 500; }
.features-list i { color: var(--primary); background: rgba(255, 193, 7, 0.1); margin-right: 15px; font-size: 1.1rem; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.btn-card { display: block; text-align: center; padding: 1.2rem; border-radius: 16px; text-decoration: none; font-weight: 700; background: rgba(255, 193, 7, 0.9); color: var(--btn-text); font-size: 1.1rem; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }

.speed-test-section { text-align: center; padding: 4rem 2rem; margin: 3rem auto 4rem; max-width: 900px; background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(15px); border-radius: 30px; border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: 0 20px 50px rgba(0,0,0,0.4); z-index: 11; position: relative; }
.btn-speed { margin-top: 2rem; background: var(--primary); color: var(--btn-text); padding: 1.2rem 3rem; border-radius: 50px; font-weight: 800; font-size: 1.2rem; box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3); display: inline-flex; align-items: center; gap: 10px; }

.support-section { padding: 4rem 5%; position: relative; z-index: 10;}
.support-container { max-width: 750px; margin: 0 auto; background: rgba(0, 0, 0, 0.3); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.08); border-top: 1px solid rgba(255,255,255,0.15); border-radius: 28px; padding: 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); transform: translateZ(0); }
.support-tabs { display: flex; gap: 15px; margin-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
.tab-btn { flex: 1; background: transparent; border: 1px solid rgba(255,255,255,0.1); color: #cbd5e1; padding: 15px; border-radius: 16px; font-size: 1.05rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 10px; }
.tab-btn.active, .tab-btn:hover { background: rgba(255, 193, 7, 0.1); border-color: var(--primary); color: var(--primary); }
.tab-content { display: none; animation: fadeIn 0.4s ease; }
.tab-content.active { display: block; }
.input-group { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
input, select, textarea { width: 100%; background: rgba(0, 0, 0, 0.4); border: 1px solid rgba(255, 255, 255, 0.1); padding: 15px 20px; border-radius: 16px; color: #fff; font-size: 1rem; outline: none; transition: 0.3s; }
textarea { margin-bottom: 20px; }
input:focus, select:focus, textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.15); transform: translateY(-2px); }
.custom-select option { background: var(--deep-purple); color: #fff; }
.btn-submit, .btn-check-status { width: 100%; padding: 15px; background: var(--primary); border: none; border-radius: 16px; color: var(--btn-text); font-weight: 800; font-size: 1.1rem; }

.coverage-section { padding: 5rem 5%; position: relative; z-index: 10;}
.coverage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; max-width: 1100px; margin: 0 auto; }
.location-card { background: rgba(0, 0, 0, 0.25); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.08); border-top: 1px solid rgba(255,255,255,0.15); border-radius: 24px; padding: 30px 20px; text-align: center; position: relative; overflow: hidden; transform: translateZ(0); }
.loc-icon { width: 60px; height: 60px; background: rgba(255, 193, 7, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--primary); font-size: 1.8rem; transition: 0.4s; border: 1px solid rgba(255,193,7,0.1); }
.location-card h3 { color: #fff; font-size: 1.2rem; font-weight: 700; margin: 0; }
.location-card:hover { transform: translate3d(0, -8px, 0) scale(1.025) !important; border-color: rgba(255,255,255,0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.location-card:hover .loc-icon { background: var(--primary); color: var(--btn-text); transform: scale(1.15) rotate(10deg); }
.coming-soon { border-style: dashed; opacity: 0.6; }

.contact-section { padding: 5rem 5%; text-align: center; position: relative; z-index: 10;}
.contact-cards { display: flex; gap: 2.5rem; justify-content: center; margin-top: 3.5rem; flex-wrap: wrap; }
.contact-card { background: rgba(0, 0, 0, 0.25); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.08); border-top: 1px solid rgba(255,255,255,0.15); color: #fff; border-radius: 28px; padding: 3rem; min-width: 280px; transform: translateZ(0); }
.contact-card:hover { transform: translate3d(0, -8px, 0) scale(1.025) !important; border-color: rgba(255,255,255,0.25); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.contact-link { color: var(--primary); text-decoration: none; font-weight: 800; font-size: 1.4rem; transition: color 0.3s; }
.contact-link:hover { color: #fff; }
.icon-glow { color: var(--primary); margin-bottom: 1.5rem; filter: drop-shadow(0 0 15px rgba(255, 193, 7, 0.5)); font-size: 3rem; }

footer { padding: 4rem 5% 3rem; background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(25px); border-top: 1px solid rgba(255,255,255,0.05); position: relative; z-index: 10;}
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; }
.footer-left h3 { color: #fff; font-size: 1.8rem; }
.social-icons a { display: inline-flex; justify-content: center; align-items: center; width: 50px; height: 50px; background: rgba(255,255,255,0.05); border-radius: 50%; margin-left: 1rem; color: #fff; font-size: 1.2rem; border: 1px solid rgba(255,255,255,0.1); transition: transform 0.3s ease; }
.social-icons a:hover { background: var(--primary); color: var(--btn-text); transform: translateY(-8px) scale(1.1); box-shadow: 0 10px 20px rgba(255, 193, 7, 0.4); }

.chat-launcher { position: fixed; bottom: 30px; right: 30px; width: 65px; height: 65px; background: var(--primary); border-radius: 50%; display: flex; justify-content: center; align-items: center; box-shadow: 0 5px 25px rgba(255, 193, 7, 0.5); z-index: 9999; }
.chat-launcher:hover { transform: scale(1.15) rotate(-10deg); background: var(--primary-dark); }
.chat-launcher i { font-size: 2rem; color: var(--btn-text); transition: transform 0.3s; }

.chat-window { position: fixed; bottom: 110px; right: 30px; width: 380px; height: 550px; background: rgba(20, 0, 25, 0.98); backdrop-filter: blur(25px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 28px; display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 25px 60px rgba(0,0,0,0.6); z-index: 9999; opacity: 0; visibility: hidden; transform: translateY(30px) scale(0.95); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); will-change: transform, opacity; }
.chat-window.active { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.chat-header { background: var(--primary); padding: 20px 25px; display: flex; justify-content: space-between; align-items: center; color: var(--btn-text); }
.bot-avatar { width: 40px; height: 40px; background: rgba(0,0,0,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(0,0,0,0.2); font-size: 1.2rem; }
.chat-body { flex: 1; padding: 25px; overflow-y: auto; display: flex; flex-direction: column; gap: 15px; }
.message { max-width: 85%; padding: 14px 18px; font-size: 1rem; line-height: 1.5; word-wrap: break-word; border-radius: 18px; }
.bot-message { background: rgba(255, 255, 255, 0.08); color: #fff; border: 1px solid rgba(255,255,255,0.05); }
.user-message { align-self: flex-end; background: var(--primary); color: var(--btn-text); font-weight: 700; border-radius: 18px 18px 4px 18px; }
.chat-footer { padding: 20px; background: rgba(0, 0, 0, 0.3); border-top: 1px solid rgba(255,255,255,0.05); display: flex; gap: 12px; }
.chat-footer input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 14px 18px; border-radius: 30px; color: #fff; outline: none; transition: 0.3s; }
.chat-footer input:focus { border-color: var(--primary); background: rgba(255,255,255,0.1); }
.chat-footer button { background: var(--primary); border: none; width: 50px; height: 50px; border-radius: 50%; color: var(--btn-text); }

.mobile-link { color: #cbd5e1; text-decoration: none; font-size: 1.1rem; padding: 10px 30px; display: block; transition: 0.3s; }
.mobile-link:hover { color: var(--primary); padding-left: 35px; }
.nav-links .mobile-btn { width: 85%; margin: 8px auto; justify-content: center; padding: 0.8rem 1rem; font-size: 1rem; }

.section-subtitle, .packages > div > p, .speed-test-section > p, .support-section .container > p, .coverage-section .container > p, .contact-section > p { text-align: center; color: #cbd5e1 !important; }

.status-search-box { display: flex; gap: 15px; margin-bottom: 22px; align-items: stretch; }
.ticket-result-card { background: rgba(0, 0, 0, 0.35); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 22px; padding: 22px; }
.badge { display: inline-flex; padding: 5px 14px; border-radius: 999px; font-size: 0.85rem; font-weight: 800; }
.badge.processing { background: rgba(255, 193, 7, 0.16); color: var(--primary); }
.badge.solved { background: rgba(34, 197, 94, 0.15); color: #4ade80; }
.badge.pending { background: rgba(244, 63, 94, 0.15); color: #fb7185; }
.technician-info { display: flex; align-items: center; gap: 15px; margin-top: 18px; padding: 15px; border-radius: 18px; background: rgba(255, 193, 7, 0.08); border: 1px solid rgba(255, 193, 7, 0.18); }
.tech-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--primary); color: var(--btn-text); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.tech-phone { color: var(--primary); text-decoration: none; display: inline-flex; gap: 6px; font-weight: 700; }

.suggestions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.chip { background: rgba(255, 193, 7, 0.08); border: 1px solid rgba(255, 193, 7, 0.45); color: var(--primary); padding: 7px 12px; border-radius: 999px; font-size: 0.82rem; font-weight: 700; cursor: pointer !important; transition: 0.25s; }
.chip:hover { background: var(--primary); color: var(--btn-text); }

.typing-indicator { display: none; align-self: flex-start; background: rgba(255,255,255,0.08); padding: 10px 15px; border-radius: 15px; }
.typing-indicator span { display: inline-block; width: 6px; height: 6px; background-color: var(--primary); border-radius: 50%; animation: typing 1.4s infinite ease-in-out both; margin: 0 2px; }
.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }
@keyframes typing { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1); } }

/* Maintenance Popup & Notifications */
.popup-overlay, #notification-container { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(8px); z-index: 10000; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: all 0.4s ease; }
.popup-overlay.active, #notification-container.active { opacity: 1; visibility: visible; }
.popup-content, .toast { background: rgba(20, 0, 25, 0.98); border: 1px solid rgba(255, 255, 255, 0.12); padding: 3rem 2rem; border-radius: 28px; text-align: center; max-width: 450px; width: 90%; transform: scale(0.8); transition: transform 0.4s; }
.popup-overlay.active .popup-content, #notification-container.active .toast { transform: scale(1); }
.popup-icon { width: 80px; height: 80px; background: rgba(255, 193, 7, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: var(--primary); font-size: 2.5rem; }

.floating-dl-btn { position: fixed; bottom: 15px; left: 15px; background: linear-gradient(135deg, #10b981 0%, #059669 100%); color: white; padding: 6px 12px; border-radius: 30px; text-decoration: none; box-shadow: 0 4px 10px rgba(0,0,0,0.2); display: flex; align-items: center; gap: 6px; z-index: 9999; border: 1px solid rgba(255,255,255,0.15); animation: floatBtn 3s infinite ease-in-out; }
.floating-dl-btn .dl-logo { width: 18px; }
@keyframes floatBtn { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* ==============================================================
   MOBILE OPTIMIZATIONS (Backdrop filter disabled to boost fps) 
   ============================================================== */
@media (max-width: 768px) { 
    .slide-content { top: 55%; left: 5%; right: 5%; }
    .tech-title { font-size: 2.2rem; margin-bottom: 12px; line-height: 1.2; letter-spacing: 0; }
    .tech-subtitle { font-size: 1rem; margin-bottom: 25px; }
    .hero-ctas { flex-direction: column; width: 100%; gap: 1rem; }
    .hero-ctas .btn { width: 100%; }
    .coverage-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; } 
    .input-group { grid-template-columns: 1fr; gap: 15px; } 
    .section-title { font-size: 2.2rem; }
    .packages { padding: 3rem 5%; }
    .price-card { padding: 2rem 1.5rem; width: 100%; max-width: 350px; margin: 0 auto; }
    
    .status-search-box { flex-direction: column; }
    .status-search-box .btn-check-status { width: 100%; }
    .support-tabs { flex-direction: column; }
    .chat-window { width: calc(100% - 24px); height: min(560px, calc(100vh - 125px)); right: 12px; bottom: 92px; border-radius: 24px; }
    
    /* Remove expensive blur on mobile */
    .navbar.scrolled, 
    .nav-links, 
    .price-card, 
    .speed-test-section,
    .support-container, 
    .location-card, 
    .contact-card, 
    .chat-window, 
    footer,
    .popup-overlay,
    #notification-container {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(15, 20, 35, 0.98) !important;
    }

    /* Reduce heavy animations */
    .price-card:hover, .price-card.touch-popup, .location-card:hover, .contact-card:hover, .btn-primary:hover, .btn-outline:hover, .btn-card:hover, .btn-gradient:hover, .btn-Store:hover, .btn-glass:hover, .btn-speed:hover, .icon-btn:hover {
        transform: translate3d(0, -2px, 0) scale(1.01) !important;
        box-shadow: none !important;
    }
}

@media (pointer: coarse) {
    * { cursor: auto !important; }
    .global-cursor { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
    .global-cursor { display: none !important; }
}