/* =========================================================
   Fimnet Communications Ltd — Main Stylesheet
   Brand colors extracted from logo: charcoal + signal red
   ========================================================= */

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

:root {
    --charcoal: #232323;
    --charcoal-light: #3a3a3a;
    --red: #e31e24;
    --red-dark: #b7151a;
    --red-light: #ff4d4d;
    --gray-bg: #f6f7f8;
    --gray-border: #e7e7e9;
    --text-muted: #6b6f76;
    --white: #ffffff;
    --success: #1fa855;
    --warning: #e2a53a;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(35,35,35,0.08);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--charcoal);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); cursor: pointer; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(227,30,36,0.08);
    color: var(--red);
    font-weight: 600;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.section-title { font-size: 42px; margin-bottom: 14px; }
.section-sub { color: var(--text-muted); font-size: 17px; max-width: 640px; margin: 0 auto; }

/* =========== Buttons =========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(227,30,36,0.3);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(227,30,36,0.4); }
.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after {
    content: ''; position: absolute; top: 0; left: -75%; width: 50%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: skewX(-20deg); animation: btnShine 2.8s ease-in-out infinite;
}
@keyframes btnShine { 0% { left: -75%; } 45%, 100% { left: 130%; } }
.btn-outline {
    background: transparent;
    border-color: var(--charcoal);
    color: var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-white {
    background: var(--white);
    color: var(--charcoal);
}
.btn-white:hover { transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 13px; border-radius: 8px; }

/* =========== Top bar =========== */
.topbar {
    background: var(--charcoal);
    color: #cfcfcf;
    font-size: 13px;
    padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 22px; }
.topbar a { color: #cfcfcf; transition: color 0.2s; }
.topbar span, .topbar a { display: inline-flex; align-items: center; gap: 6px; }
.topbar-right a:hover { color: var(--red-light); }
.topbar-social { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,0.1); display: inline-flex; align-items: center; justify-content: center; }
.topbar-social:hover { background: var(--red); }

/* =========== Header / Nav =========== */
header.site-header {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 500;
}
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 6px 0; }
.logo { display: flex; align-items: center; }
.logo-img { height: 64px; width: auto; display: block; transition: transform 0.25s ease; }
.logo:hover .logo-img { transform: scale(1.04); }
.footer-logo-img { height: 46px; width: auto; margin-bottom: 6px; border-radius: 8px; background: #fff; padding: 6px 10px; }
.logo-text { font-size: 22px; font-weight: 800; color: var(--charcoal); font-family: var(--font-heading); }
.logo-text span { color: var(--red); }
.logo-sub { font-size: 9px; letter-spacing: 1.5px; color: var(--text-muted); font-weight: 600; margin-top: -3px; }

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
    font-weight: 500;
    font-size: 15px;
    color: var(--charcoal);
    position: relative;
    padding: 6px 0;
    transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-links a.active::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--red);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle { display: none; background: none; border: none; font-size: 26px; color: var(--charcoal); }

/* =========== Nav Dropdown / Mega Menu (Plans) =========== */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
    display: flex; align-items: center; gap: 5px; background: none; border: none; font-family: var(--font-body);
    cursor: pointer; font-weight: 500; font-size: 15px; color: var(--charcoal); padding: 6px 0;
}
.nav-dropdown-toggle.active { color: var(--red); }
.nav-dropdown-toggle svg { transition: transform 0.25s ease; margin-top: 1px; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu.mega-menu {
    position: absolute; top: calc(100% + 22px); left: 50%; transform: translateX(-50%) translateY(10px) scale(0.98);
    background: var(--white); border-radius: 20px; box-shadow: 0 24px 60px rgba(20,20,20,0.18);
    width: 620px; padding: 0; opacity: 0; visibility: hidden;
    transition: opacity 0.15s ease, transform 0.28s cubic-bezier(.2,.8,.2,1), visibility 0.15s ease;
    z-index: 600; border: 1px solid var(--gray-border); overflow: hidden;
    display: grid; grid-template-columns: 1.15fr 1fr;
}
.nav-dropdown:hover .nav-dropdown-menu.mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0) scale(1); }
.mega-menu-col { padding: 26px 24px; }
.mega-menu-col-accent { background: linear-gradient(160deg, #232323, #171717); }
.mega-menu-heading { display: flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: 700; font-size: 15px; margin-bottom: 16px; color: var(--charcoal); }
.mega-menu-col-accent .mega-menu-heading { color: #fff; }
.mega-menu-heading-icon { font-size: 18px; }
.mega-menu-blurb { font-size: 13px; color: #c9c9c9; margin-bottom: 16px; line-height: 1.5; }
.mega-menu-blurb strong { color: var(--red-light); }

.mega-menu-card {
    display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 12px; margin-bottom: 6px;
    transition: all 0.2s ease; border: 1px solid transparent;
}
.mega-menu-card:hover { background: var(--gray-bg); border-color: var(--gray-border); transform: translateX(3px); }
.mega-menu-card-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(227,30,36,0.09); color: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mega-menu-card-text { flex: 1; }
.mega-menu-card-text strong { display: block; font-size: 14px; font-weight: 700; }
.mega-menu-card-text small { display: block; font-size: 12px; color: var(--text-muted); margin-top: 1px; }
.mega-menu-card-price { font-size: 11.5px; font-weight: 800; color: var(--red); text-align: right; line-height: 1.3; white-space: nowrap; }
.mega-menu-viewall { display: block; margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--red); padding: 8px 12px; }
.mega-menu-viewall:hover { text-decoration: underline; }

.mega-menu-pkg {
    display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; border-radius: 10px;
    font-size: 13.5px; font-weight: 700; transition: background 0.2s;
}
.mega-menu .mega-menu-pkg { color: #ffffff; }
.mega-menu .mega-menu-pkg:hover { background: rgba(255,255,255,0.08); color: var(--red-light); }
.mega-menu .mega-menu-viewall { color: var(--red); }
.dropdown-price { color: var(--red-light); font-weight: 800; font-size: 12.5px; }

/* =========== Hero =========== */
.hero {
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-badges { display: flex; gap: 12px; margin-bottom: 22px; flex-wrap: wrap; }
.hero-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero h1 { font-size: 54px; color: var(--white); margin-bottom: 8px; }
.hero h1 .accent { color: var(--red); display: block; }
.hero-emoji-line { display: flex; align-items: center; gap: 12px; margin: 18px 0; font-size: 20px; font-weight: 600; }
.hero-emoji-line .accent-text { color: var(--red-light); }
.hero p.lead { color: #c9c9c9; font-size: 17px; max-width: 520px; margin-bottom: 30px; }
.hero p.lead strong { color: var(--white); }
.hero-cta { display: flex; gap: 14px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 480px; }
.hero-stat-num { font-size: 30px; font-weight: 800; color: var(--red-light); font-family: var(--font-heading); }
.hero-stat-label { font-size: 13px; color: #b7b7b7; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; z-index: 2; }

/* Admin-editable hero image */
.hero-image-wrap { position: relative; width: 100%; max-width: 460px; }
.hero-image {
    width: 100%; aspect-ratio: 4/3.4; object-fit: cover; border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.45); border: 4px solid rgba(255,255,255,0.08);
    animation: heroImageFloat 5s ease-in-out infinite;
}
@keyframes heroImageFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-image-badge {
    position: absolute; bottom: -18px; left: -18px; background: #fff; border-radius: 16px; padding: 14px 18px;
    display: flex; align-items: center; gap: 12px; box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    animation: heroImageFloat 5s ease-in-out infinite; animation-delay: 0.3s;
}
.hero-image-badge-signal { position: relative; width: 34px; height: 20px; margin-top: 0 !important; }
.hero-image-badge div:last-child strong { display: block; font-size: 16px; color: var(--charcoal); font-family: var(--font-heading); }
.hero-image-badge div:last-child small { color: var(--text-muted); font-size: 11px; }

/* Floating gradient blobs */
.hero-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.35; pointer-events: none; z-index: 1; }
.hero-blob.blob1 { width: 320px; height: 320px; background: radial-gradient(circle, var(--red) 0%, transparent 70%); top: -80px; right: -60px; animation: blobFloat 9s ease-in-out infinite; }
.hero-blob.blob2 { width: 260px; height: 260px; background: radial-gradient(circle, #ff8a8a 0%, transparent 70%); bottom: -100px; left: -60px; animation: blobFloat 11s ease-in-out infinite reverse; }
@keyframes blobFloat { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-20px) scale(1.1); } }
.wifi-orb {
    width: 320px; height: 320px; border-radius: 50%;
    background: radial-gradient(circle, rgba(227,30,36,0.18) 0%, rgba(227,30,36,0.02) 70%);
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
/* Slow-rotating orbit rings for a modern, tech feel (replaces the old thick CSS-border arcs) */
.wifi-orb-ring {
    position: absolute; border: 1.5px dashed rgba(227,30,36,0.25); border-radius: 50%;
    animation: orbitSpin linear infinite;
}
.wifi-orb-ring.ring1 { inset: 18%; animation-duration: 30s; }
.wifi-orb-ring.ring2 { inset: 4%; border-color: rgba(227,30,36,0.14); animation-duration: 46s; animation-direction: reverse; }
@keyframes orbitSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.wifi-orb-inner {
    width: 150px; height: 150px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(6px);
    position: relative; z-index: 2;
    box-shadow: 0 0 50px rgba(227,30,36,0.15);
}
/* Reuse the modern WiFi signal icon (same as the page loader) at hero scale */
.hero-wifi-icon { margin-top: 0; }
.hero-wifi-icon .wifi-line { stroke-width: 3.6; }
.hero-wifi-icon .wifi-dot-modern { r: 4; }


.floating-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
    position: absolute; width: 6px; height: 6px; background: var(--red);
    border-radius: 50%; opacity: 0.5; animation: floatUp 6s infinite linear;
}
@keyframes floatUp {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.4; }
    100% { transform: translateY(-400px) translateX(20px); opacity: 0; }
}

/* Loading screen with rich WiFi animation */
#page-loader {
    position: fixed; inset: 0; background: radial-gradient(circle at 50% 40%, #2c2c2c 0%, #141414 70%);
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    z-index: 9999; transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hide { opacity: 0; visibility: hidden; }
.loader-text { color: var(--white); margin-top: 26px; font-weight: 700; letter-spacing: 2px; font-size: 12.5px; opacity: 0.85; }
.loader-percent { color: var(--red-light); font-family: var(--font-heading); font-weight: 800; font-size: 15px; margin-top: 14px; letter-spacing: 1px; }

.loader-orb { position: relative; width: 128px; height: 128px; display: flex; align-items: center; justify-content: center; }
.loader-ring { position: absolute; inset: 0; width: 128px; height: 128px; transform: rotate(-90deg); }
.loader-ring-track { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 4; }
.loader-ring-progress {
    fill: none; stroke: var(--red); stroke-width: 4; stroke-linecap: round;
    stroke-dasharray: 327; stroke-dashoffset: 327; animation: loaderRingProgress 1.8s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes loaderRingProgress {
    0% { stroke-dashoffset: 327; }
    60% { stroke-dashoffset: 40; }
    100% { stroke-dashoffset: 327; }
}
.loader-logo-badge {
    width: 64px; height: 64px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center;
    overflow: hidden; box-shadow: 0 0 0 6px rgba(227,30,36,0.12), 0 8px 24px rgba(0,0,0,0.4);
    animation: loaderPulseScale 1.8s ease-in-out infinite;
}
.loader-logo-badge img { width: 100%; height: 100%; object-fit: cover; }
@keyframes loaderPulseScale { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.07); } }

/* Modern WiFi signal icon — sits below the logo orb, not overlapping it */
.wifi-modern-icon { margin-top: 22px; display: flex; align-items: center; justify-content: center; }
.wifi-modern-icon svg { overflow: visible; }
.wifi-line {
    fill: none; stroke: var(--red); stroke-width: 3.2; stroke-linecap: round;
    opacity: 0.15; animation: wifiLinePulse 1.6s ease-in-out infinite;
}
.wifi-line-1 { animation-delay: 0s; }
.wifi-line-2 { animation-delay: 0.18s; }
.wifi-line-3 { animation-delay: 0.36s; }
.wifi-dot-modern { fill: var(--red); animation: wifiDotPulse 1.6s ease-in-out infinite; }
@keyframes wifiLinePulse { 0%, 20% { opacity: 0.15; } 45% { opacity: 1; } 100% { opacity: 0.15; } }
@keyframes wifiDotPulse { 0%, 100% { opacity: 0.5; transform: scale(0.9); transform-origin: 32px 37px; } 50% { opacity: 1; transform: scale(1.15); transform-origin: 32px 37px; } }

/* Small inline wifi loading spinner (for AJAX buttons) */
.wifi-spinner { display: inline-flex; align-items: center; gap: 3px; }
.wifi-spinner span { width: 6px; height: 6px; background: currentColor; border-radius: 50%; animation: spinnerBounce 1s infinite ease-in-out; }
.wifi-spinner span:nth-child(2) { animation-delay: 0.15s; }
.wifi-spinner span:nth-child(3) { animation-delay: 0.3s; }
@keyframes spinnerBounce { 0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; } 40% { transform: scale(1); opacity: 1; } }

/* =========== Trust strip =========== */
.trust-strip { background: var(--gray-bg); padding: 26px 0; border-bottom: 1px solid var(--gray-border); }
.trust-strip .container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 14px; font-weight: 500; }
.trust-item svg { color: var(--red); flex-shrink: 0; }

/* =========== Feature / info cards =========== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.35s cubic-bezier(.2,.8,.2,1);
}
.card:hover { box-shadow: 0 20px 45px rgba(35,35,35,0.12); transform: translateY(-6px) scale(1.015); border-color: transparent; }
.card:hover .card-icon { transform: scale(1.12) rotate(-6deg); background: var(--red); color: #fff; }
.card-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: rgba(227,30,36,0.09);
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 15px; margin-bottom: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 14.5px; color: var(--charcoal-light); }
.check-list li svg { color: var(--success); flex-shrink: 0; margin-top: 3px; }

.card-dark {
    background: var(--charcoal);
    color: var(--white);
    border-radius: var(--radius);
    padding: 32px;
}
.card-dark .card-icon { background: rgba(227,30,36,0.18); }
.card-dark p { color: #b7b7b7; }

/* =========== Plans / Pricing =========== */
.tabs { display: inline-flex; background: var(--gray-bg); border-radius: 50px; padding: 6px; gap: 4px; margin-bottom: 50px; }
.tab-btn { padding: 11px 24px; border: none; background: transparent; border-radius: 50px; font-weight: 600; color: var(--text-muted); font-size: 14px; display: flex; align-items: center; gap: 8px; }
.tab-btn.active { background: var(--charcoal); color: var(--white); }

.plan-card {
    background: var(--white);
    border: 2px solid var(--gray-border);
    border-radius: var(--radius);
    padding: 34px 28px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.plan-card:hover { border-color: var(--red); box-shadow: var(--shadow); transform: translateY(-6px); }
.plan-card.popular { border-color: var(--red); background: linear-gradient(180deg, rgba(227,30,36,0.04), transparent 30%); }
.plan-popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--red); color: var(--white); padding: 6px 18px; border-radius: 50px;
    font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 6px; white-space: nowrap;
}
.plan-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(227,30,36,0.09); color: var(--red); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.plan-card h3 { font-size: 22px; text-align: center; }
.plan-speed-label { text-align: center; color: var(--text-muted); font-size: 13px; margin: 6px 0 2px; }
.plan-speed { text-align: center; font-size: 34px; font-weight: 800; color: var(--red); font-family: var(--font-heading); }
.plan-speed-sub { text-align: center; color: var(--text-muted); font-size: 13px; margin-bottom: 16px; }
.plan-price-wrap { text-align: center; padding: 16px 0; border-top: 1px dashed var(--gray-border); border-bottom: 1px dashed var(--gray-border); margin-bottom: 20px; }
.plan-price-label { font-size: 12px; color: var(--text-muted); }
.plan-price { font-size: 32px; font-weight: 800; font-family: var(--font-heading); }
.plan-price sub { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.plan-card .check-list { flex: 1; margin-bottom: 24px; }

/* =========== Testimonials =========== */
.rating-summary { display: flex; justify-content: center; gap: 34px; flex-wrap: wrap; margin: 30px 0 46px; }
.rating-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; }
.rating-item .stars { color: #f5a623; }
.review-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius); padding: 28px; }
.review-stars { color: #f5a623; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { color: var(--charcoal-light); font-size: 14.5px; margin-bottom: 20px; }
.review-person { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--gray-border); }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--charcoal); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.review-name { font-weight: 600; font-size: 14px; }
.review-role { font-size: 12px; color: var(--text-muted); }

/* =========== Network status =========== */
.status-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius); padding: 26px; }
.status-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; margin-right: 6px; }
.status-dot.excellent, .status-dot.good { background: var(--success); }
.status-dot.maintenance { background: var(--warning); }
.status-dot.offline { background: var(--red); }
.status-badge { font-size: 12.5px; font-weight: 600; display: flex; align-items: center; }
.status-metrics { display: flex; gap: 20px; margin-bottom: 16px; }
.status-metric-val { font-size: 26px; font-weight: 800; color: var(--success); font-family: var(--font-heading); }
.status-metric-label { font-size: 12px; color: var(--text-muted); }
.status-bar-track { height: 8px; background: var(--gray-bg); border-radius: 6px; overflow: hidden; margin-top: 6px; }
.status-bar-fill { height: 100%; background: linear-gradient(90deg, var(--red), var(--red-light)); border-radius: 6px; }

/* =========== CTA band =========== */
.cta-band {
    background: linear-gradient(135deg, #232323, #101010);
    color: var(--white);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band h2 { color: var(--white); font-size: 32px; margin-bottom: 12px; }
.cta-band p { color: #c9c9c9; margin-bottom: 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========== Forms =========== */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--charcoal); }
.form-control {
    width: 100%; padding: 13px 16px; border: 1.5px solid var(--gray-border); border-radius: 9px;
    font-size: 14.5px; font-family: var(--font-body); transition: border 0.2s; background: var(--white); color: var(--charcoal);
}
.form-control:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(227,30,36,0.08); }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
/* Honeypot field: invisible to humans, catches basic bots that auto-fill all inputs */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; overflow: hidden; }

.alert { padding: 14px 18px; border-radius: 10px; font-size: 14px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: rgba(31,168,85,0.1); color: #147a3d; border: 1px solid rgba(31,168,85,0.25); }
.alert-error { background: rgba(227,30,36,0.08); color: var(--red-dark); border: 1px solid rgba(227,30,36,0.25); }

/* =========== Footer =========== */
footer.site-footer { background: var(--charcoal); color: #b7b7b7; padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-about p { font-size: 14px; margin: 16px 0; color: #a3a3a3; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.footer-social a:hover { background: var(--red); }
.footer-col h4 { color: var(--white); font-size: 16px; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: #b7b7b7; transition: color 0.2s; }
.footer-col a:hover { color: var(--red-light); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; margin-bottom: 16px; }
.footer-contact svg { color: var(--red); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; display: flex; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: #b7b7b7; }
.footer-bottom-links { display: flex; gap: 20px; }

.newsletter-band { background: var(--gray-bg); border-radius: 20px; padding: 50px; text-align: center; margin-bottom: 70px; }
.newsletter-form { display: flex; gap: 10px; max-width: 460px; margin: 24px auto 10px; }
.newsletter-form input { flex: 1; }

/* =========== Floating Action Buttons (Chat + WhatsApp) =========== */
.float-actions { position: fixed; bottom: 26px; right: 26px; z-index: 450; display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.float-action-row { display: flex; align-items: center; gap: 10px; }
.wa-tooltip {
    background: var(--white); padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; box-shadow: var(--shadow);
    opacity: 0; transform: translateX(6px); transition: all 0.2s ease; pointer-events: none; white-space: nowrap;
}
.float-action-row:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
.wa-btn {
    width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 20px rgba(37,211,102,0.4); position: relative; flex-shrink: 0;
}
.wa-btn::after {
    content: ''; position: absolute; inset: -6px; border: 2px solid #25D366; border-radius: 50%; opacity: 0.6;
    animation: waPulse 2s infinite;
}
@keyframes waPulse { 0% { transform: scale(0.9); opacity: 0.7; } 100% { transform: scale(1.4); opacity: 0; } }

.chat-btn {
    width: 58px; height: 58px; border-radius: 50%; background: var(--red); border: none; display: flex; align-items: center;
    justify-content: center; box-shadow: 0 8px 20px rgba(227,30,36,0.4); position: relative; flex-shrink: 0; cursor: pointer;
    transition: transform 0.2s ease;
}
.chat-btn:hover { transform: scale(1.06); }
.chat-btn::after {
    content: ''; position: absolute; inset: -6px; border: 2px solid var(--red); border-radius: 50%; opacity: 0.5;
    animation: waPulse 2.4s infinite;
}
.chat-icon-close { display: none; }
.chat-btn.open .chat-icon-open { display: none; }
.chat-btn.open .chat-icon-close { display: block; }
.chat-launcher-badge {
    position: absolute; top: -4px; right: -4px; width: 22px; height: 22px; border-radius: 50%; background: #ff3b3b;
    color: #fff; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center;
    border: 2px solid #fff; animation: badgePop 0.3s ease;
}
@keyframes badgePop { 0% { transform: scale(0); } 100% { transform: scale(1); } }

/* Chat panel window */
.chat-panel {
    position: fixed; bottom: 100px; right: 26px; width: 360px; max-width: calc(100vw - 40px); height: 500px; max-height: 70vh;
    background: var(--white); border-radius: 18px; box-shadow: 0 24px 60px rgba(0,0,0,0.25); z-index: 440;
    display: flex; flex-direction: column; overflow: hidden;
    opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.97); transition: all 0.25s cubic-bezier(.2,.8,.2,1);
}
.chat-panel.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.chat-panel-head { background: linear-gradient(120deg, #232323, #171717); padding: 16px 18px; display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }
.chat-panel-logo { width: 34px; height: 34px; border-radius: 8px; background: #fff; object-fit: contain; padding: 3px; }
.chat-panel-title { color: #fff; font-weight: 700; font-size: 14.5px; font-family: var(--font-heading); }
.chat-panel-status { color: #b7b7b7; font-size: 11.5px; display: flex; align-items: center; gap: 5px; margin-top: 1px; }
.chat-online-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); display: inline-block; box-shadow: 0 0 0 3px rgba(31,168,85,0.25); }
.chat-panel-close { background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; line-height: 1; opacity: 0.8; }
.chat-panel-close:hover { opacity: 1; }

.chat-pre-form { padding: 18px; overflow-y: auto; }
.chat-pre-intro { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.5; }
.chat-pre-form .form-group { margin-bottom: 12px; }
.chat-urgent-check { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: var(--red-dark); font-weight: 600; margin-bottom: 14px; background: rgba(227,30,36,0.06); padding: 10px 12px; border-radius: 8px; cursor: pointer; }

.chat-thread-wrap { display: flex; flex-direction: column; flex: 1; min-height: 0; }
.chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; background: var(--gray-bg); }
.chat-bubble { max-width: 78%; }
.chat-bubble-visitor { align-self: flex-end; }
.chat-bubble-admin { align-self: flex-start; }
.chat-bubble-text {
    padding: 10px 14px; border-radius: 14px; font-size: 13.5px; line-height: 1.45; word-wrap: break-word;
}
.chat-bubble-visitor .chat-bubble-text { background: var(--red); color: #fff; border-bottom-right-radius: 4px; }
.chat-bubble-admin .chat-bubble-text { background: #fff; color: var(--charcoal); border: 1px solid var(--gray-border); border-bottom-left-radius: 4px; }
.chat-bubble-system .chat-bubble-text { background: rgba(31,168,85,0.1); color: #147a3d; border-bottom-left-radius: 4px; }
.chat-bubble-time { font-size: 10px; color: var(--text-muted); margin-top: 3px; padding: 0 4px; }
.chat-bubble-visitor .chat-bubble-time { text-align: right; }

.chat-closed-notice { padding: 12px 16px; font-size: 12.5px; color: var(--text-muted); background: #fff; border-top: 1px solid var(--gray-border); text-align: center; }
.chat-send-form { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--gray-border); background: #fff; flex-shrink: 0; }
.chat-send-form .form-control { flex: 1; padding: 10px 14px; font-size: 13.5px; }
.chat-send-btn { width: 40px; height: 40px; border-radius: 50%; background: var(--red); border: none; color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: background 0.2s; }
.chat-send-btn:hover { background: var(--red-dark); }

@media (max-width: 480px) {
    .chat-panel { right: 20px; left: 20px; width: auto; bottom: 96px; }
    .float-actions { right: 16px; bottom: 20px; }
}

/* Coverage check widget */
.coverage-checker { background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); border: 1px solid var(--gray-border); }
.coverage-result { margin-top: 16px; padding: 16px; border-radius: 10px; font-size: 14px; }
.coverage-yes { background: rgba(31,168,85,0.08); color: #147a3d; }
.coverage-no { background: rgba(227,30,36,0.08); color: var(--red-dark); }

/* =========== Page header (interior pages) =========== */
.page-header {
    background: linear-gradient(135deg, var(--charcoal), #171717);
    color: var(--white);
    padding: 70px 0 50px;
    text-align: center;
}
.page-header h1 { color: var(--white); font-size: 40px; }
.page-header p { color: #c9c9c9; margin-top: 10px; }

/* =========== Utility animations =========== */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* =========== Responsive =========== */
@media (max-width: 991px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 40px; }
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-visual { order: -1; margin-bottom: 10px; }
    .wifi-orb { width: 240px; height: 240px; }
    .wifi-orb-inner { width: 120px; height: 120px; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn-outline { display: none; }
    .nav-toggle { display: block; }
    .nav-actions { gap: 8px; }
    .logo-img { height: 48px; }
    .topbar-left span:last-child { display: none; }
    .hero { padding: 50px 0 40px; }
    .hero h1 { font-size: 32px; }
    .section { padding: 60px 0; }
    .section-title { font-size: 28px; }
    .grid-3, .grid-4, .grid-2, .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .cta-band { padding: 40px 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .newsletter-band { padding: 32px 20px; }
    .newsletter-form { flex-direction: column; }

    /* Mobile nav drawer */
    .mobile-nav {
        position: fixed; top: 0; right: -300px; width: 280px; height: 100vh; background: var(--charcoal);
        z-index: 900; transition: right 0.3s ease; padding: 30px 24px; overflow-y: auto;
    }
    .mobile-nav.open { right: 0; }
    .mobile-nav a { display: block; color: #fff; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-weight: 500; }
    .mobile-nav-close { color: #fff; font-size: 26px; background: none; border: none; margin-bottom: 20px; }
    .mobile-nav-accordion-toggle {
        display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: none;
        color: #fff; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-weight: 500; font-size: 15px;
        font-family: var(--font-body); cursor: pointer;
    }
    .mobile-nav-accordion-toggle svg { transition: transform 0.2s ease; }
    .mobile-nav-accordion-toggle.open svg { transform: rotate(180deg); }
    .mobile-nav-accordion { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
    .mobile-nav-accordion.open { max-height: 400px; }
    .mobile-nav-accordion a { border-bottom: none; padding: 10px 0; }
    .mobile-nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 890; display: none; }
    .mobile-nav-overlay.show { display: block; }
}

@media (min-width: 769px) {
    .mobile-nav, .mobile-nav-overlay { display: none; }
}

@media (max-width: 480px) {
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .rating-summary { gap: 16px; }
    .trust-strip .container { flex-direction: column; align-items: flex-start; }
    .wifi-orb { width: 190px; height: 190px; }
    .wifi-orb-inner { width: 96px; height: 96px; }
    .hero-wifi-icon svg { width: 54px; height: 34px; }
}

/* ---------- Public Pagination (blog) ---------- */
.pagination { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 36px 0 0; flex-wrap: wrap; }
.page-btn { padding: 10px 20px; border: 1.5px solid var(--gray-border); border-radius: 10px; font-size: 13.5px; font-weight: 700; color: var(--charcoal); background: #fff; }
.page-btn:hover { background: var(--gray-bg); }
.page-btn.disabled { pointer-events: none; opacity: 0.4; }
.page-info { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* ---------- Blog article content (admin-authored HTML) ---------- */
.blog-content { font-size: 16.5px; line-height: 1.8; color: var(--charcoal-light); }
.blog-content h2 { font-size: 26px; margin: 36px 0 16px; color: var(--charcoal); }
.blog-content h3 { font-size: 21px; margin: 28px 0 12px; color: var(--charcoal); }
.blog-content p { margin-bottom: 18px; }
.blog-content ul, .blog-content ol { margin: 0 0 18px 22px; }
.blog-content li { margin-bottom: 8px; }
.blog-content a { color: var(--red); text-decoration: underline; }
.blog-content img { width: 100%; border-radius: 14px; margin: 24px 0; }
.blog-content blockquote { border-left: 4px solid var(--red); padding: 4px 20px; margin: 24px 0; font-style: italic; color: var(--text-muted); }
.blog-content strong { color: var(--charcoal); }
.blog-content code { background: var(--gray-bg); padding: 2px 6px; border-radius: 4px; font-size: 14px; }
