/* ============================================================
   Fibertel ISP - Main Stylesheet
   Theme: Modern | Minimal | Premium
   Colors: Primary #E11D2E | Secondary #FF5A5F | Accent #FF5A5F
   ============================================================ */

:root {
    --primary: #E11D2E;
    --primary-dark: #C1131F;
    --primary-light: #fdecee;
    --secondary: #FF5A5F;
    --accent: #FF5A5F;
    --accent-light: #ffecee;
    --bg: #F7F9FC;
    --bg-alt: #eef2f8;
    --surface: #ffffff;
    --surface-2: #f8fafd;
    --border: #e6ebf3;
    --text: #17233b;
    --text-muted: #66748e;
    --heading: #0f1a30;
    --shadow: 0 10px 30px rgba(190, 30, 45, .08);
    --shadow-lg: 0 20px 50px rgba(190, 30, 45, .14);
    --gradient: linear-gradient(135deg, #E11D2E 0%, #FF5A5F 100%);
    --gradient-warm: linear-gradient(135deg, #FF5A5F, #C1131F);
    --radius: 16px;
    --radius-sm: 10px;
    --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --nav-h: 74px;
}

/* Dark mode overrides */
[data-bs-theme="dark"] {
    --bg: #0b1220;
    --bg-alt: #0e1626;
    --surface: #121b2e;
    --surface-2: #0f1829;
    --border: #1f2b42;
    --text: #dbe4f5;
    --text-muted: #8fa0bd;
    --heading: #ffffff;
    --primary-light: #3a1420;
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, .5);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    font-size: .95rem;
    line-height: 1.7;
    overflow-x: hidden;
    transition: background .3s ease, color .3s ease;
}

h1, h2, h3, h4, h5, h6 { color: var(--heading); font-weight: 700; }

a { color: var(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--primary-dark); }

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

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 20px; }

/* ============ Utility classes ============ */
.section-pad { padding: 90px 0; }
.section-title { margin-bottom: 50px; }
.section-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--primary); font-weight: 600; font-size: .82rem;
    letter-spacing: 2px; text-transform: uppercase;
    background: var(--primary-light); padding: 8px 18px;
    border-radius: 50rem; margin-bottom: 14px;
}
.section-title h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 800; }
.section-title p { color: var(--text-muted); max-width: 640px; }

.glass-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    transition: transform .3s ease, box-shadow .3s ease;
}
.glass-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.btn-gradient {
    background: var(--gradient);
    color: #fff;
    border: none;
    font-weight: 600;
    box-shadow: 0 8px 22px rgba(225, 29, 46, .35);
    transition: all .3s ease;
}
.btn-gradient:hover, .btn-gradient:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(225, 29, 46, .5);
}
.btn-warm {
    background: var(--gradient-warm);
    color: #fff; border: none; font-weight: 600;
    box-shadow: 0 8px 22px rgba(225, 29, 46, .35);
    transition: all .3s ease;
}
.btn-warm:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(225, 29, 46, .5); }
.btn-outline-primary { border-color: var(--primary); color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: #fff; }
.btn-icon {
    width: 42px; height: 42px; display: inline-flex; align-items: center;
    justify-content: center; border-radius: 50%; border: 1px solid var(--border);
    background: var(--surface); color: var(--text); transition: all .25s ease;
}
.btn-icon:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ============ Preloader ============ */
#preloader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .5s ease, visibility .5s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.loader-box { position: relative; width: 90px; height: 90px; display: grid; place-items: center; }
.loader-ring {
    position: absolute; inset: 0; border-radius: 50%;
    border: 4px solid var(--primary-light);
    border-top-color: var(--primary);
    animation: spin 1s linear infinite;
}
.loader-logo { width: 46px; height: 46px; animation: pulse 1.4s ease infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.12); } }

/* ============ Top bar ============ */
.topbar {
    background: var(--heading); color: #c9d6f0; font-size: .8rem;
    padding: 8px 0; position: relative; z-index: 1030;
}
.topbar-item { color: #c9d6f0; transition: color .2s; }
.topbar-item:hover { color: var(--accent); }
.topbar .form-check-input:checked { background-color: var(--accent); border-color: var(--accent); }
.topbar .form-check-label { color: #c9d6f0; }

/* ============ Navbar ============ */
.main-nav {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    min-height: var(--nav-h);
    transition: box-shadow .3s ease, background .3s ease;
}
.main-nav.scrolled {
    box-shadow: 0 8px 28px rgba(190, 30, 45, .1);
    position: sticky; top: 0; z-index: 1020;
}
.brand-text { font-size: 1.45rem; font-weight: 800; color: var(--heading); margin-left: 8px; }
.brand-text span { color: var(--primary); }
.main-nav .navbar-nav .nav-link {
    color: var(--text); font-weight: 500; padding: 10px 14px;
    position: relative; border-radius: 8px; transition: color .2s, background .2s;
}
.main-nav .navbar-nav .nav-link:hover { color: var(--primary); }
.main-nav .navbar-nav .nav-link.active { color: var(--primary); background: var(--primary-light); }
.main-nav .nav-link.dropdown-toggle::after { display: none; }

/* Mega menu */
.mega-menu-item { position: static; }
.mega-menu {
    width: 860px; max-width: 92vw; border: 1px solid var(--border);
    border-radius: var(--radius); box-shadow: var(--shadow-lg);
    padding: 0; overflow: hidden; margin-top: 12px !important;
    border-top: 3px solid var(--primary);
}
.mega-banner {
    background: var(--gradient); color: #fff;
    display: flex; align-items: flex-end; padding: 0;
}
.mega-banner-inner { padding: 34px; color: #fff; }
.mega-banner-inner h5 { color: #fff; font-weight: 700; }
.mega-banner-inner p { color: rgba(255,255,255,.85); font-size: .86rem; }
.mega-title { font-size: .8rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 12px; }
.mega-menu .dropdown-item { border-radius: 8px; padding: 8px 12px; font-size: .9rem; color: var(--text); }
.mega-menu .dropdown-item:hover { background: var(--primary-light); color: var(--primary); }

/* ============ Hero ============ */
/* ============ Hero ============ */
.hero {
    position: relative; min-height: 92vh;
    display: flex; align-items: center;
    background: linear-gradient(135deg, #d31027 0%, #ea384d 50%, #e11d2e 100%);
    overflow: hidden; padding: 80px 0;
}
.hero-bg { position: absolute; inset: 0; opacity: .12; }
.hero-bg svg { width: 100%; height: 100%; }
.hero-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 224, 130, 0.3), transparent 45%),
                radial-gradient(circle at 80% 70%, rgba(255, 90, 95, 0.35), transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(168, 15, 29, 0.4), transparent 70%);
}
.hero .container { position: relative; z-index: 2; }
.hero-eyebrow {
    background: rgba(255, 255, 255, 0.18) !important;
    backdrop-filter: blur(14px);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    font-weight: 700; letter-spacing: 1.5px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    padding: 9px 20px !important;
    margin-bottom: 18px !important;
}
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.5px; }
.hero h1 .gradient-text {
    background: linear-gradient(135deg, #FFE082 0%, #FFB300 50%, #FFFFFF 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    filter: drop-shadow(0 4px 15px rgba(255, 179, 0, 0.3));
}
.hero .lead { color: rgba(255, 255, 255, 0.94); font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 580px; font-weight: 400; line-height: 1.75; }

/* SVG Wi-Fi Frame graphic */
.hero-wifi-svg-container {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.35));
    animation: floaty 5s ease-in-out infinite;
}
.hero-wifi-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Hero buttons */
.btn-hero-primary {
    background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
    color: #0f1a30 !important;
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(255, 184, 0, 0.4);
    border: none;
    padding: 14px 34px;
    border-radius: 50rem;
    font-size: 1.02rem;
    transition: all .3s ease;
}
.btn-hero-primary:hover {
    color: #0f1a30 !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 36px rgba(255, 184, 0, 0.55);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
    color: #ffffff !important;
    font-weight: 700;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    padding: 14px 34px;
    border-radius: 50rem;
    font-size: 1.02rem;
    transition: all .3s ease;
}
.btn-hero-secondary:hover {
    background: #ffffff;
    color: #E11D2E !important;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.hero-float {
    animation: floaty 5s ease-in-out infinite;
}
.hero-float img {
    border-radius: 36px !important;
    border: 4px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45) !important;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* Experience grid cards */
.experience-grid { background: #ffffff; }
.experience-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: flex-end;
    position: relative;
}
.exp-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(14, 34, 81, 0.08);
    box-shadow: 0 24px 60px rgba(14, 34, 81, 0.12);
    transform-style: preserve-3d;
}
.exp-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .75), rgba(255, 255, 255, 0));
    pointer-events: none;
}
.exp-card-inner {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    transform: translateZ(0);
}
.exp-card-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(14, 34, 81, 0.06);
}
.exp-card img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    display: block;
}
.exp-card-1 { transform: translateY(0) rotate(-2deg); z-index: 3; }
.exp-card-2 { transform: translateY(32px) rotate(2deg); }
.exp-card-3 { transform: translateY(16px) rotate(-1deg); }
.exp-card-4 { transform: translateY(40px) rotate(3deg); }
.exp-card-5 {
    grid-column: 1 / -1;
    transform: translateY(12px);
}
.exp-card-5 .exp-card-inner {
    border-radius: 40px;
}
.exp-card-5 img {
    min-height: 320px;
}

.hero-visual { position: relative; }
.speed-chip {
    position: absolute; background: rgba(255, 255, 255, 0.96); color: var(--heading);
    border-radius: 16px; padding: 12px 20px; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22);
    font-size: .85rem; font-weight: 700; z-index: 3;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}
.speed-chip .big { font-size: 1.35rem; color: var(--primary); font-weight: 800; }
.chip-1 { top: 6%; left: -20px; }
.chip-2 { bottom: 14%; right: -8px; }

/* Hero availability checker form */
.hero-check {
    max-width: 490px;
    background: #ffffff !important;
    border-radius: 50rem !important;
    padding: 6px 8px 6px 22px !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3) !important;
    border: 2.5px solid rgba(255, 255, 255, 0.85);
}
.hero-check input {
    min-width: 0; font-size: .95rem; padding: 10px 8px; color: var(--heading); font-weight: 500;
}
.hero-check input:focus { outline: none; box-shadow: none; }
.hero-check button {
    background: linear-gradient(135deg, #E11D2E, #FF5A5F) !important;
    color: #fff !important; font-weight: 700; font-size: .95rem;
    padding: 12px 28px !important; border-radius: 50rem !important;
    box-shadow: 0 8px 22px rgba(225, 29, 46, 0.45);
    transition: transform .25s ease, box-shadow .25s ease;
}
.hero-check button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(225, 29, 46, 0.6);
}

.hero-trust-chip {
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.82rem;
    font-weight: 600;
}

/* Trusted services / logo strip */
.trust-strip { padding: 40px 0; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.trust-strip .tracking-wide { letter-spacing: 2px; }
.logo-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--surface); border: 1px solid var(--border);
    color: var(--text-muted); font-weight: 600; font-size: .95rem;
    padding: 12px 22px; border-radius: 50rem; box-shadow: var(--shadow);
    transition: transform .25s ease, color .25s ease, border-color .25s ease;
    cursor: default; white-space: nowrap;
    animation: floatLogo 6s ease-in-out infinite;
}
@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.logo-badge i { font-size: 1.3rem; color: var(--primary); }
.logo-badge:hover { transform: translateY(-4px); color: var(--heading); border-color: var(--primary); }

.brand-youtube { background: linear-gradient(135deg, #ff0033, #ff5a5a); color: #fff; border-color: rgba(255,255,255,.25); }
.brand-youtube i { color: #fff; }
.brand-netflix { background: linear-gradient(135deg, #e50914, #8b0000); color: #fff; border-color: rgba(255,255,255,.25); }
.brand-netflix i { color: #fff; }
.brand-prime { background: linear-gradient(135deg, #1a9ce0, #00c8ff); color: #fff; border-color: rgba(255,255,255,.25); }
.brand-prime i { color: #fff; }
.brand-hotstar { background: linear-gradient(135deg, #4f00e0, #b200ff); color: #fff; border-color: rgba(255,255,255,.25); }
.brand-hotstar i { color: #fff; }
.brand-spotify { background: linear-gradient(135deg, #1db954, #0f7a37); color: #fff; border-color: rgba(255,255,255,.25); }
.brand-spotify i { color: #fff; }
.brand-zoom { background: linear-gradient(135deg, #2d8cff, #4fb0ff); color: #fff; border-color: rgba(255,255,255,.25); }
.brand-zoom i { color: #fff; }
.brand-gaming { background: linear-gradient(135deg, #ff6a00, #ff2d95); color: #fff; border-color: rgba(255,255,255,.25); }
.brand-gaming i { color: #fff; }
.brand-gaming:hover, .brand-zoom:hover, .brand-spotify:hover, .brand-hotstar:hover, .brand-prime:hover, .brand-netflix:hover, .brand-youtube:hover { color: #fff; border-color: #fff; }

/* Steps / how to get connected */
.step-card { padding: 40px 28px; height: 100%; position: relative; }
.step-num {
    position: absolute; top: 18px; right: 22px;
    font-size: 3rem; font-weight: 900; line-height: 1;
    color: var(--primary-light); -webkit-text-stroke: 1px rgba(225, 29, 46, .25);
}
.step-icon {
    width: 74px; height: 74px; border-radius: 22px; margin: 0 auto 22px;
    display: grid; place-items: center; font-size: 1.7rem; color: #fff;
    background: var(--gradient); box-shadow: 0 12px 28px rgba(225, 29, 46, .35);
}
.step-card h5 { font-weight: 700; }
.step-card p { color: var(--text-muted); font-size: .9rem; }
.step-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--primary); font-weight: 700; font-size: .85rem; margin-top: 10px;
}
.step-link i { transition: transform .25s ease; }
.step-link:hover i { transform: translateX(4px); }

/* Animated counters */
.stats-strip { margin-top: -58px; position: relative; z-index: 5; }
.stat-card { text-align: center; padding: 26px 10px; }
.stat-card .stat-num { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: var(--primary); }
.stat-card .stat-label { color: var(--text-muted); font-size: .86rem; font-weight: 500; }

/* ============ Feature cards ============ */
.feature-card { padding: 30px 26px; height: 100%; position: relative; overflow: hidden; }
.feature-icon {
    width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center;
    font-size: 1.5rem; color: #fff; background: var(--gradient);
    box-shadow: 0 10px 24px rgba(225, 29, 46, .3); margin-bottom: 20px;
    transition: transform .3s ease;
}
.feature-card:hover .feature-icon { transform: rotate(-8deg) scale(1.08); }
.feature-card h5 { font-weight: 700; }
.feature-card p { color: var(--text-muted); font-size: .9rem; margin-bottom: 0; }

/* ============ Offers slider ============ */
.offer-card {
    border-radius: var(--radius); overflow: hidden; height: 100%;
    background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow);
    display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease;
}
.offer-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.offer-img-wrap { position: relative; overflow: hidden; }
.offer-img { height: 190px; object-fit: cover; width: 100%; transition: transform .5s ease; }
.offer-card:hover .offer-img { transform: scale(1.08); }
.offer-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(7, 15, 34, .6), rgba(7, 15, 34, 0) 60%);
}
.offer-badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: var(--gradient-warm); color: #fff; font-weight: 700;
    padding: 6px 14px; border-radius: 50rem; font-size: .78rem;
    box-shadow: 0 6px 16px rgba(225, 29, 46, .4);
}
.offer-discount-chip {
    position: absolute; bottom: 12px; left: 14px; z-index: 2;
    background: var(--gradient); color: #fff; font-weight: 800;
    padding: 7px 14px; border-radius: 12px; font-size: .88rem;
    box-shadow: 0 8px 20px rgba(225, 29, 46, .45);
    letter-spacing: .3px;
}
.offer-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.offer-body .offer-title { font-weight: 700; font-size: 1.05rem; }
.offer-body .offer-sub { color: var(--text-muted); font-size: .85rem; }

/* ============ Plan cards ============ */
.plan-card {
    position: relative; border-radius: 26px;
    background: #fff; border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .08); padding: 30px 26px; height: 100%;
    display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease;
}
.plan-card:hover { transform: translateY(-10px); box-shadow: 0 28px 60px rgba(15, 23, 42, .14); }
.plan-card.featured { border-color: #FF2D55; }
.plan-card-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 18px; }
.plan-label, .plan-status {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 8px 16px; border-radius: 999px; font-size: .76rem; font-weight: 700;
}
.plan-label { background: #FF2D55; color: #fff; }
.plan-status { background: #F5F5F7; color: #0F172A; }
.plan-card-title { font-weight: 700; font-size: 1.15rem; margin-bottom: 6px; color: #111827; }
.plan-card-speed { font-size: 3rem; font-weight: 900; color: #111827; line-height: 1; margin-bottom: 12px; }
.plan-card-speed strong { font-size: 3rem; }
.plan-price { display: flex; align-items: baseline; gap: 10px; margin: 14px 0 20px; }
.plan-price .amount { font-size: 2.2rem; font-weight: 800; color: #111827; }
.plan-price .per { color: #6B7280; font-size: .95rem; }
.plan-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.meta-chip {
    font-size: .82rem; font-weight: 600; padding: 10px 14px; border-radius: 999px;
    background: #F8FAFC; color: #4B5563;
}
.meta-chip i { color: #0C4A6E; margin-right: 8px; }
.plan-card-router {
    display: flex; align-items: center; gap: 14px; background: #F8FAFC;
    border-radius: 18px; padding: 18px 20px; margin-bottom: 22px;
}
.router-icon {
    width: 52px; height: 52px; display: grid; place-items: center;
    border-radius: 18px; background: #E2E8F0; color: #0F172A; font-size: 1.25rem;
}
.router-text { font-weight: 600; color: #111827; }
.plan-card-logos { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; margin-bottom: 20px; }
.logo-item {
    display: inline-flex; align-items: center; justify-content: center;
    background: #F8FAFC; color: #111827; border-radius: 999px; padding: 10px 12px;
    font-size: .78rem; font-weight: 700; text-align: center;
}
.logo-netflix { background: #E50914; color: #fff; box-shadow: 0 4px 12px rgba(229,9,20,.35); }
.logo-amazon { background: linear-gradient(135deg, #FF9900, #FFC24B); color: #232F3E; box-shadow: 0 4px 12px rgba(255,153,0,.35); }
.logo-hotstar { background: linear-gradient(135deg, #4F00E0, #B200FF); color: #fff; box-shadow: 0 4px 12px rgba(79,0,224,.35); }
.logo-zee5 { background: linear-gradient(135deg, #FFC700, #FFE066); color: #111; box-shadow: 0 4px 12px rgba(255,199,0,.35); }
.logo-tv { background: linear-gradient(135deg, #10B981, #14B8A6); color: #fff; box-shadow: 0 4px 12px rgba(16,185,129,.35); }
.plan-card-note { margin: 0 0 22px; color: #6B7280; font-size: .92rem; font-style: italic; }
.btn-plan {
    background: #FF2D55; color: #fff; border: none; padding: 16px 18px;
    font-size: .95rem; font-weight: 700; border-radius: 16px;
}
.btn-plan:hover, .btn-plan:focus { background: #E11D48; }

/* Comparison table */
.compare-table { border-collapse: separate; border-spacing: 0 6px; width: 100%; }
.compare-table thead th { background: var(--gradient); color: #fff; padding: 14px 18px; text-align: center; font-size: .95rem; }
.compare-table thead th:first-child { border-radius: 14px 0 0 14px; }
.compare-table thead th:last-child { border-radius: 0 14px 14px 0; }
.compare-table tbody td { background: var(--surface); padding: 14px 18px; font-size: .9rem; text-align: center; color: var(--text); }
.compare-table tbody td:first-child { text-align: left; font-weight: 600; color: var(--text-muted); }
.compare-table tbody td i.fa-circle-check { color: #22c55e; }
.compare-table tbody td i.fa-circle-xmark { color: #ef4444; }

/* Filter pills */
.filter-pill {
    border: 1px solid var(--border); background: var(--surface); color: var(--text-muted);
    padding: 8px 18px; border-radius: 50rem; font-weight: 500; font-size: .85rem;
    transition: all .25s ease; cursor: pointer;
}
.filter-pill:hover, .filter-pill.active { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 6px 16px rgba(225,29,46,.3); }

/* ============ Why choose us ============ */
.why-item { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px dashed var(--border); }
.why-item:last-child { border-bottom: none; }
.why-num { font-size: 1.6rem; font-weight: 800; color: var(--primary-light); -webkit-text-stroke: 1px var(--primary); }
.why-item h5 { font-weight: 700; }
.why-item p { color: var(--text-muted); font-size: .9rem; margin: 0; }

/* ============ Testimonials ============ */
.testimonial-card { padding: 30px; height: 100%; }
.testi-stars { color: var(--accent); font-size: .9rem; }
.testi-text { color: var(--text-muted); font-size: .92rem; font-style: italic; }
.testi-user { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
    width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
    background: var(--gradient); color: #fff; font-weight: 700; font-size: 1.1rem;
}
.testi-name { font-weight: 700; }
.testi-loc { color: var(--text-muted); font-size: .8rem; }

/* ============ Coverage / map ============ */
.map-frame { border: 0; border-radius: var(--radius); width: 100%; min-height: 460px; box-shadow: var(--shadow); }
.coverage-status { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; padding: 6px 14px; border-radius: 50rem; font-size: .82rem; }
.coverage-status.available { background: rgba(34,197,94,.12); color: #16a34a; }
.coverage-status.coming { background: rgba(225,29,46,.12); color: var(--accent); }
.coverage-status.not_available { background: rgba(239,68,68,.12); color: #ef4444; }
.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dot.available { background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.2); }
.dot.coming { background: var(--accent); box-shadow: 0 0 0 4px rgba(225,29,46,.2); }
.dot.not_available { background: #ef4444; box-shadow: 0 0 0 4px rgba(239,68,68,.2); }

/* ============ Speed test ============ */
.speedtest-wrap { text-align: center; padding: 40px; }
.speedtest-gauge { margin: 20px auto; }
.speedtest-big { font-size: 3.4rem; font-weight: 800; color: var(--primary); }
.speed-metrics { display: flex; justify-content: center; gap: 30px; margin-top: 26px; flex-wrap: wrap; }
.speed-metric { padding: 18px 26px; }
.speed-metric .val { font-size: 1.5rem; font-weight: 800; color: var(--heading); }
.speed-metric .lbl { color: var(--text-muted); font-size: .8rem; }

/* ============ Breadcrumb ============ */
.page-hero {
    background: var(--gradient); position: relative; overflow: hidden;
    padding: 70px 0 60px; text-align: center; color: #fff;
}
.page-hero::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(255,255,255,.15), transparent 40%);
}
.page-hero h1 { color: #fff; font-weight: 800; position: relative; z-index: 2; }
.page-hero p { color: rgba(255,255,255,.85); position: relative; z-index: 2; }
.breadcrumb-custom { position: relative; z-index: 2; justify-content: center; }
.breadcrumb-custom a { color: rgba(255,255,255,.85); }
.breadcrumb-custom .crumb-active { color: #fff; font-weight: 600; }

/* ============ Blog ============ */
.blog-card { overflow: hidden; height: 100%; }
.blog-card .blog-img-wrap { height: 200px; overflow: hidden; position: relative; }
.blog-card .blog-img-wrap::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(7, 15, 34, .55), rgba(7, 15, 34, 0) 55%);
}
.blog-card .blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.1); }
.blog-cat {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    background: var(--gradient); color: #fff; font-size: .72rem; font-weight: 700;
    padding: 5px 12px; border-radius: 50rem; text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(225, 29, 46, .35);
}
.blog-date {
    position: absolute; bottom: 12px; left: 12px; z-index: 2;
    background: rgba(255, 255, 255, .92); color: var(--heading);
    font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 10px;
}
.blog-card .blog-body { padding: 22px; }
.blog-title { font-weight: 700; font-size: 1.05rem; line-height: 1.45; transition: color .25s ease; }
.blog-card:hover .blog-title { color: var(--primary); }
.blog-meta { color: var(--text-muted); font-size: .8rem; }
.blog-read {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--primary); font-weight: 700; font-size: .85rem; text-decoration: none;
}
.blog-read i { transition: transform .25s ease; }
.blog-card:hover .blog-read i { transform: translateX(4px); }

/* ============ Auth pages ============ */
.auth-wrap {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: var(--gradient); position: relative; overflow: hidden; padding: 30px 0;
}
.auth-wrap::before, .auth-wrap::after {
    content: ''; position: absolute; border-radius: 50%; background: rgba(255,255,255,.12);
}
.auth-wrap::before { width: 420px; height: 420px; top: -140px; right: -120px; }
.auth-wrap::after { width: 320px; height: 320px; bottom: -110px; left: -100px; }
.auth-card { max-width: 460px; width: 100%; border-radius: 20px; position: relative; z-index: 2; }

/* ============ Admin / Dashboard shell ============ */
.dash-body { background: var(--bg); }
.dash-sidebar {
    width: 250px; background: var(--heading); color: #cbd6ec;
    position: fixed; top: 0; bottom: 0; left: 0; z-index: 1045;
    height: 100vh; overflow-y: auto; overflow-x: hidden;
    transition: transform .3s ease;
    overscroll-behavior: contain;
}
.dash-sidebar.show { transform: translateX(0); }
.dash-brand { padding: 20px 22px; border-bottom: 1px solid rgba(255,255,255,.08); }
.dash-sidebar .nav-link {
    color: #cbd6ec; padding: 11px 22px; font-size: .88rem; font-weight: 500;
    display: flex; align-items: center; gap: 12px; border-left: 3px solid transparent; transition: all .2s;
}
.dash-sidebar .nav-link i { width: 20px; text-align: center; }
.dash-sidebar .nav-link:hover { color: #fff; background: rgba(255,255,255,.06); }
.dash-sidebar .nav-link.active { color: #fff; background: rgba(255,255,255,.1); border-left-color: var(--accent); }
.dash-sidebar .nav-section { font-size: .68rem; letter-spacing: 1.6px; text-transform: uppercase; color: #6b7890; padding: 18px 22px 6px; }
.dash-main { margin-left: 250px; padding: 24px; min-height: 100vh; transition: margin .3s ease; }
.dash-topbar {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 14px 20px; display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 22px; position: sticky; top: 14px; z-index: 1020;
}
.dash-topbar .dropdown-menu { border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.stat-tile { padding: 22px; display: flex; align-items: center; gap: 16px; border-radius: var(--radius); }
.stat-tile .icon-box { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; font-size: 1.4rem; color: #fff; flex-shrink: 0; }
.stat-tile .num { font-size: 1.5rem; font-weight: 800; color: var(--heading); line-height: 1.2; }
.stat-tile .lbl { color: var(--text-muted); font-size: .82rem; }
.icon-primary { background: var(--gradient); }
.icon-success { background: linear-gradient(135deg, #22c55e, #16a34a); }
.icon-warning { background: var(--gradient-warm); }
.icon-info { background: linear-gradient(135deg, #06b6d4, #0891b2); }

/* Tables */
.table-card { border-radius: var(--radius); overflow: hidden; }
.table-card .table { margin-bottom: 0; }
.table-card thead th { background: var(--surface-2); color: var(--text-muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .6px; border-bottom: 1px solid var(--border); white-space: nowrap; }
.table-card tbody td { vertical-align: middle; border-color: var(--border); font-size: .88rem; color: var(--text); }
.table-card tbody tr:hover { background: var(--surface-2); }

/* Forms */
.form-control, .form-select {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-sm); color: var(--text); font-size: .9rem; padding: 10px 14px;
}
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 .2rem rgba(225,29,46,.12); }
.form-label { font-weight: 600; font-size: .85rem; color: var(--heading); }
.input-icon-wrap { position: relative; }
.input-icon-wrap > i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }
.input-icon-wrap .form-control { padding-left: 42px; }

/* Accordion / FAQ */
.accordion-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm) !important; margin-bottom: 12px; overflow: hidden; }
.accordion-button { background: var(--surface); color: var(--heading); font-weight: 600; font-size: .95rem; }
.accordion-button:not(.collapsed) { background: var(--primary-light); color: var(--primary); box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: transparent; }

/* Steps / process */
.step-card { text-align: center; padding: 30px 20px; height: 100%; }
.step-num {
    width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 18px;
    background: var(--primary-light); color: var(--primary); font-size: 1.4rem; font-weight: 800;
    display: grid; place-items: center; position: relative;
}
.step-card:nth-child(even) .step-num { background: var(--accent-light); color: var(--accent); }

/* ============ Newsletter ============ */
.newsletter-section { padding: 40px 0 10px; }
.newsletter-card { padding: 38px; }
.newsletter-form .form-control { border-radius: 50rem 0 0 50rem; padding-left: 22px; }
.newsletter-form .btn { border-radius: 0 50rem 50rem 0; }

/* ============ Footer ============ */
.footer { background: var(--heading); color: #cbd6ec; position: relative; margin-top: 60px; }
.footer-wave svg { display: block; width: 100%; height: 50px; fill: var(--bg); }
.footer-title { color: #fff; font-weight: 700; margin-bottom: 18px; font-size: .95rem; position: relative; padding-bottom: 10px; }
.footer-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; background: var(--gradient); border-radius: 3px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #cbd6ec; font-size: .88rem; transition: all .2s; }
.footer-links a:hover { color: var(--accent); padding-left: 6px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 12px; font-size: .88rem; }
.footer-contact i { color: var(--secondary); margin-top: 4px; }
.footer-contact a { color: #cbd6ec; }
.footer-contact a:hover { color: var(--accent); }
.social-links a {
    width: 38px; height: 38px; border-radius: 50%; display: inline-grid; place-items: center;
    background: rgba(255,255,255,.08); color: #fff; margin-right: 8px; transition: all .25s;
}
.social-links a:hover { background: var(--primary); transform: translateY(-4px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }

/* ============ Floating buttons ============ */
.floating-buttons { position: fixed; right: 18px; bottom: 20px; z-index: 1040; display: flex; flex-direction: column; gap: 12px; }
.fab {
    width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
    color: #fff; font-size: 1.25rem; box-shadow: 0 10px 24px rgba(0,0,0,.25);
    transition: transform .25s ease, box-shadow .25s ease; animation: pulse-btn 2.4s infinite;
}
.fab:hover { color: #fff; transform: scale(1.12); }
.fab-call { background: var(--gradient); }
.fab-whatsapp { background: #25d366; animation-delay: .3s; }
.fab-chat { background: var(--gradient-warm); animation-delay: .6s; }
@keyframes pulse-btn {
    0% { box-shadow: 0 0 0 0 rgba(225,29,46,.4); }
    70% { box-shadow: 0 0 0 16px rgba(225,29,46,0); }
    100% { box-shadow: 0 0 0 0 rgba(225,29,46,0); }
}

/* Chat panel */
.chat-header { background: var(--gradient); }
.chat-messages { display: flex; flex-direction: column; gap: 12px; max-height: 60vh; overflow-y: auto; }
.chat-bubble { max-width: 80%; padding: 12px 16px; border-radius: 16px; font-size: .88rem; }
.chat-bubble-bot { background: var(--surface-2); color: var(--text); border-bottom-left-radius: 4px; align-self: flex-start; }
.chat-bubble-user { background: var(--primary); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }

/* Back to top */
.back-to-top {
    position: fixed; left: 20px; bottom: 20px; z-index: 1040;
    width: 46px; height: 46px; border-radius: 12px; border: none;
    background: var(--gradient); color: #fff; font-size: 1rem;
    box-shadow: 0 10px 24px rgba(225,29,46,.4); cursor: pointer;
    opacity: 0; visibility: hidden; transform: translateY(16px); transition: all .3s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { color: #fff; transform: translateY(-4px); }

/* ============ Notifications dropdown ============ */
.notif-drop { width: 320px; border-radius: var(--radius); }
.notif-drop .dropdown-item { white-space: normal; border-radius: 10px; }

/* ============ AOS tweaks ============ */
[data-aos] { will-change: transform, opacity; }

/* ============ Timeline ============ */
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 30px; }
.timeline-item::before {
    content: ''; position: absolute; left: -27px; top: 6px; width: 14px; height: 14px;
    border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px var(--primary-light);
}
.timeline-item .tl-date { color: var(--primary); font-weight: 700; font-size: .82rem; }

/* ============ Team ============ */
.team-card { text-align: center; padding: 30px 20px; height: 100%; }
.team-avatar { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 16px; background: var(--gradient); display: grid; place-items: center; color: #fff; font-size: 2rem; font-weight: 700; }
.team-role { color: var(--primary); font-size: .82rem; font-weight: 600; }

/* ============ Toast ============ */
.toast-container { z-index: 1060; }

/* ============ Responsive ============ */
@media (max-width: 1199.98px) {
    .mega-menu { display: none; }
}
@media (max-width: 991.98px) {
    .stats-strip { margin-top: 10px; }
    .hero { min-height: auto; padding: 60px 0; text-align: center; }
    .hero .lead { margin: 0 auto; }
    .dash-sidebar { transform: translateX(-100%); }
    .dash-main { margin-left: 0; padding: 14px; }
    .dash-main.sidebar-open { margin-left: 250px; }
    .chip-1, .chip-2 { display: none; }
}
@media (max-width: 767.98px) {
    .section-pad { padding: 60px 0; }
    .page-hero { padding: 50px 0 40px; }
    .newsletter-card { padding: 26px 20px; }
    .speedtest-big { font-size: 2.6rem; }
    .compare-scroll { overflow-x: auto; }
    .compare-table { min-width: 760px; }
}
@media (max-width: 575.98px) {
    .btn { font-size: .88rem; }
    .stat-tile .num { font-size: 1.2rem; }
}

/* Utility helpers */
.fw-800 { font-weight: 800; }
.cursor-pointer { cursor: pointer; }
.img-fluid-rounded { border-radius: var(--radius); box-shadow: var(--shadow); }
.gradient-bg { background: var(--gradient); }

/* Coverage CTA band */
.coverage-cta { background: var(--gradient); position: relative; overflow: hidden; }
.coverage-cta::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(255,255,255,.12), transparent 45%),
                radial-gradient(circle at 85% 80%, rgba(0,0,0,.18), transparent 50%);
}
.coverage-cta .container { position: relative; z-index: 1; }
.rounded-16 { border-radius: var(--radius); }
.bg-surface { background: var(--surface); }
.text-muted-2 { color: var(--text-muted); }

/* ============ WI-FI LIFESTYLE SHOWCASE ============ */
.wifi-lifestyle-section {
    background: radial-gradient(circle at 50% 30%, rgba(225, 29, 46, 0.08), transparent 70%), var(--bg-alt);
    position: relative;
}

.wifi-stage-container {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
}

.wifi-arc-wrapper {
    position: relative;
    padding: 20px 0 40px;
}

/* Background Wi-Fi Arc Lines */
.wifi-arc-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: 3px dashed rgba(225, 29, 46, 0.2);
    border-bottom: none;
    border-radius: 600px 600px 0 0;
    pointer-events: none;
    z-index: 1;
}

.wifi-arc-line.arc-3 { width: 96%; height: 420px; top: 10px; border-color: rgba(255, 90, 95, 0.25); box-shadow: 0 0 25px rgba(225, 29, 46, 0.08); }
.wifi-arc-line.arc-2 { width: 72%; height: 280px; top: 120px; border-color: rgba(225, 29, 46, 0.35); }
.wifi-arc-line.arc-1 { width: 48%; height: 160px; top: 220px; border-color: rgba(225, 29, 46, 0.5); }

/* Wi-Fi Cards Layout */
.wifi-lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    position: relative;
    z-index: 2;
}

.wifi-card {
    background: var(--surface);
    border: 2px solid rgba(225, 29, 46, 0.15);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.wifi-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 22px 50px rgba(225, 29, 46, 0.22);
}

.wifi-card-img-holder {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.wifi-card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.wifi-card:hover .wifi-card-img-holder img {
    transform: scale(1.1);
}

.wifi-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 26, 48, 0.85);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.wifi-card-badge i {
    color: var(--accent);
}

.wifi-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 26, 48, 0.65) 0%, transparent 60%);
}

.wifi-card-content {
    padding: 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wifi-card-content h5 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--heading);
}

.wifi-card-content p {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.wifi-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 5px 12px;
    border-radius: 50rem;
    margin-top: 14px;
    width: fit-content;
}

/* Central Wi-Fi Emitter Beacon */
.wifi-emitter-box {
    text-align: center;
    margin-top: 45px;
    position: relative;
    z-index: 3;
}

.wifi-emitter-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    box-shadow: 0 10px 30px rgba(225, 29, 46, 0.4);
    position: relative;
    animation: wifiPulse 2.5s infinite ease-in-out;
}

@keyframes wifiPulse {
    0% { box-shadow: 0 0 0 0 rgba(225, 29, 46, 0.6); }
    70% { box-shadow: 0 0 0 28px rgba(225, 29, 46, 0); }
    100% { box-shadow: 0 0 0 0 rgba(225, 29, 46, 0); }
}

.wifi-emitter-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--heading);
    margin-top: 14px;
    display: block;
    letter-spacing: 0.5px;
}

/* ============ REAL-PHOTO WI-FI HERO FRAME ============ */
.wifi-hero-real-frame {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 26px;
    background: #ffffff;
    border-radius: 34px;
    box-shadow: 0 30px 70px rgba(14, 34, 81, 0.18);
    animation: floaty 5s ease-in-out infinite;
}

.wifi-arc-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.wifi-arc-row.arc-top {
    width: 100%;
}

.wifi-arc-row.arc-mid {
    width: 88%;
}

.wifi-arc-row.arc-bot {
    width: 68%;
}

.wifi-photo-panel {
    position: relative;
    flex: 1;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(14, 34, 81, 0.14);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid #FF5A5F;
}

/* Curved Arch top borders to form standard Wi-Fi arcs */
.arc-top .wifi-photo-panel {
    height: 168px;
    border-radius: 110px 110px 24px 24px;
}

.arc-mid .wifi-photo-panel {
    height: 152px;
    border-radius: 88px 88px 22px 22px;
}

.arc-bot .wifi-photo-panel {
    height: 142px;
    border-radius: 66px 66px 22px 22px;
}

.wifi-photo-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.wifi-photo-panel:hover {
    transform: translateY(-6px) scale(1.04);
    border-color: #ffd27a;
    box-shadow: 0 20px 45px rgba(225, 29, 46, 0.45);
    z-index: 5;
}

.wifi-photo-panel:hover img {
    transform: scale(1.09);
}

.panel-badge {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 26, 48, 0.88);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50rem;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.wifi-signal-base {
    margin-top: 6px;
}

.base-emitter-btn {
    background: linear-gradient(135deg, #E11D2E, #FF5A5F);
    color: #fff;
    padding: 10px 26px;
    border-radius: 50rem;
    font-weight: 800;
    font-size: 0.84rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 28px rgba(225, 29, 46, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.35);
    animation: wifiPulse 2.5s infinite ease-in-out;
}

.base-emitter-btn i {
    font-size: 1.1rem;
}

@media (max-width: 991.98px) {
    .wifi-hero-real-frame {
        max-width: 440px;
    }
    .arc-top .wifi-photo-panel { height: 130px; }
    .arc-mid .wifi-photo-panel { height: 115px; }
    .arc-bot .wifi-photo-panel { height: 105px; }
}

@media (max-width: 575.98px) {
    .wifi-hero-real-frame {
        max-width: 320px;
        gap: 10px;
    }
    .arc-top .wifi-photo-panel { height: 100px; border-radius: 60px 60px 14px 14px; }
    .arc-mid .wifi-photo-panel { height: 90px; border-radius: 50px 50px 14px 14px; }
    .arc-bot .wifi-photo-panel { height: 80px; border-radius: 40px 40px 14px 14px; }
    .panel-badge { font-size: 0.64rem; padding: 2px 8px; }
}

/* ============================================================
   FIBERTEL FRONTEND REBUILD - ADDED COMPONENTS
   (Hero slider, package cards, testimonial photos, ad-banner)
   Design tokens/classes reused from the reference website.
   ============================================================ */

/* ---------- Hero Slider ---------- */
.hero-slider { position: relative; }
.hero-slide {
    display: none;
    opacity: 0;
    transition: opacity .6s ease, transform .4s ease;
    cursor: zoom-in;
}
.hero-slide.active {
    display: block !important;
    opacity: 1 !important;
    animation: heroFadeIn .7s ease forwards;
}
.hero-slide.zoomed {
    transform: scale(1.04);
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 46px; height: 46px; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.4); background: rgba(255,255,255,.14);
    color: #fff; backdrop-filter: blur(10px); z-index: 6; cursor: pointer;
    display: grid; place-items: center; font-size: 1rem;
    transition: all .3s ease;
}
.hero-slider-btn:hover { background: #fff; color: #E11D2E; border-color: #fff; transform: translateY(-50%) scale(1.06); }
.hero-prev { left: 10px; }
.hero-next { right: 10px; }
.hero-slider-dots {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 6;
}
.hero-slider-dots .dot-btn {
    width: 10px; height: 10px; border-radius: 50rem; border: none; cursor: pointer;
    background: rgba(255,255,255,.5); padding: 0; transition: all .3s ease;
}
.hero-slider-dots .dot-btn.active { width: 28px; background: #fff; }

/* ---------- Internet Package Cards ---------- */
.pkg-card {
    position: relative; border-radius: 26px; overflow: hidden;
    background: #fff; border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .08); height: 100%;
    display: flex; flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}
.pkg-card:hover { transform: translateY(-10px); box-shadow: 0 28px 60px rgba(15, 23, 42, .14); }
.pkg-card.featured { border-color: #FF2D55; }
.pkg-card.featured .pkg-body { box-shadow: inset 0 3px 0 var(--gradient); }
.pkg-img { position: relative; height: 190px; overflow: hidden; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pkg-card:hover .pkg-img img { transform: scale(1.08); }
.pkg-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(7,15,34,.4), rgba(7,15,34,0) 55%);
}
.pkg-label {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    padding: 7px 15px; border-radius: 50rem; color: #fff;
    font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
    background: linear-gradient(135deg, #E11D2E, #FF5A5F);
    box-shadow: 0 6px 16px rgba(225,29,46,.35);
}
.pkg-body .pkg-label {
    position: static; display: inline-block; align-self: flex-start;
    margin-bottom: 16px;
}
.pkg-label.best-value { background: linear-gradient(135deg, #FFB800, #FF8C00); box-shadow: 0 6px 16px rgba(255,184,0,.35); }
.pkg-label.popular { background: linear-gradient(135deg, #E11D2E, #FF5A5F); box-shadow: 0 6px 16px rgba(225,29,46,.35); }
.pkg-label.unlimited { background: linear-gradient(135deg, #10B981, #14B8A6); box-shadow: 0 6px 16px rgba(16,185,129,.35); }
.pkg-label.recommended { background: linear-gradient(135deg, #4F00E0, #B200FF); box-shadow: 0 6px 16px rgba(79,0,224,.35); }
.pkg-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.pkg-title { font-weight: 700; font-size: 1.15rem; color: #111827; margin-bottom: 6px; }
.pkg-desc { color: #6B7280; font-size: .9rem; margin-bottom: 16px; }
.pkg-speed { font-size: 2.4rem; font-weight: 900; color: #111827; line-height: 1; margin-bottom: 16px; }
.pkg-speed strong { font-size: 2.4rem; }
.pkg-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.pkg-price { display: flex; align-items: baseline; gap: 10px; margin: auto 0 20px; }
.pkg-price .amount { font-size: 2.2rem; font-weight: 800; color: #111827; }
.pkg-price .per { color: #6B7280; font-size: .95rem; }

/* ---------- Testimonial photo avatar ---------- */
.testi-avatar img {
    width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
}

/* ---------- Feature advertisement banner ---------- */
.ad-banner-img {
    border: 4px solid rgba(255,255,255,.25);
    animation: floaty 5s ease-in-out infinite;
}

@media (max-width: 575.98px) {
    .hero-slider-btn { width: 38px; height: 38px; }
    .hero-prev { left: 4px; }
    .hero-next { right: 4px; }
    .pkg-img { height: 160px; }
}


