/* ==========================================================================
   Spark IT - Premium Red-Themed ISP & Fiber Broadband Website Stylesheet
   Inspired by SaltSync - Vibrant Crimson Red, Dark Mode & Authentic ISP UI
   ========================================================================== */

:root,
[data-theme="dark"] {
    /* Color Palette - Deep Dark Mode with Red / Crimson Theme */
    --bg-primary: #09090b;
    --bg-secondary: #121215;
    --bg-card: rgba(24, 24, 28, 0.75);
    --bg-card-hover: rgba(35, 35, 42, 0.9);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(220, 38, 38, 0.6);

    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #cbd5e1;

    /* Vibrant Red / Crimson Accent Theme */
    --accent-primary: #e11d48;
    /* Crimson Red */
    --accent-secondary: #ef4444;
    /* Scarlet Bright Red */
    --accent-dark: #991b1b;
    /* Deep Crimson */
    --accent-gradient: linear-gradient(135deg, #dc2626 0%, #e11d48 50%, #f43f5e 100%);
    --accent-glow: rgba(225, 29, 72, 0.35);
    --accent-glow-hover: rgba(225, 29, 72, 0.55);

    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Glassmorphism */
    --glass-bg: rgba(18, 18, 21, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.5);

    /* Layout */
    --container-width: 1240px;
    --header-height: 82px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

[data-theme="light"] {
    /* Color Palette - Crisp Red & Light Theme */
    --bg-primary: #f8fafc;
    --bg-secondary: #f1f5f9;
    --bg-card: rgba(255, 255, 255, 0.95);
    --bg-card-hover: #ffffff;
    --border-color: rgba(15, 23, 42, 0.09);
    --border-hover: rgba(225, 29, 72, 0.6);

    --text-main: #0f172a;
    --text-muted: #475569;
    --text-dark: #334155;

    --accent-glow: rgba(225, 29, 72, 0.2);
    --accent-glow-hover: rgba(225, 29, 72, 0.35);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.06);
    --glass-shadow: 0 10px 40px 0 rgba(15, 23, 42, 0.08);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.25s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container & Layout */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons & CTA - Authentic Red ISP Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #ffffff;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow-hover);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Glass Card Component */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(16px);
    box-shadow: var(--glass-shadow);
    transition: all 0.35s ease;
}

.glass-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(225, 29, 72, 0.15);
}

/* SVG Icon utilities */
.svg-icon {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    stroke-width: 2;
    stroke: currentColor;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ==========================================================================
   Top bar & Navigation
   ========================================================================== */
.topbar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
    padding: 10px 0;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.topbar-item strong a {
    color: var(--accent-secondary);
    font-weight: 700;
}

.topbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(225, 29, 72, 0.15);
    color: var(--accent-secondary);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-weight: 700;
    transition: all 0.2s;
    border: 1px solid rgba(225, 29, 72, 0.3);
}

.topbar-btn:hover {
    background: var(--accent-primary);
    color: #fff;
    border-color: var(--accent-primary);
}

.topbar-link {
    color: var(--text-muted);
    font-weight: 600;
    transition: color 0.2s;
}

.topbar-link:hover {
    color: var(--accent-secondary);
}

/* Sticky Navbar */
.navbar-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.navbar-container {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand Logo Styling */
.navbar-brand {
    display: flex;
    align-items: center;
}

.site-logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.site-logo-badge .logo-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.site-logo-badge .logo-highlight {
    color: var(--accent-primary);
}

.site-logo-img {
    max-height: 48px;
    width: auto;
}

/* Navbar Menu */
.navbar-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-main);
    transition: all 0.2s;
}

.theme-toggle-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: rotate(15deg);
}

[data-theme="dark"] .sun-icon {
    display: inline-flex;
}

[data-theme="dark"] .moon-icon {
    display: none;
}

[data-theme="light"] .sun-icon {
    display: none;
}

[data-theme="light"] .moon-icon {
    display: inline-flex;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-main);
    margin: 5px 0;
    transition: 0.3s;
}

/* ==========================================================================
   Hero Section - Authentic High-Speed Red ISP Layout with WOW Dynamic Animations
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 90px 0 110px;
    background: radial-gradient(circle at 85% 25%, rgba(225, 29, 72, 0.22) 0%, transparent 50%),
        radial-gradient(circle at 15% 75%, rgba(220, 38, 38, 0.18) 0%, transparent 50%);
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

/* Dynamic Animated Background Orbs & Network Grid */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
    animation: floatOrb 10s ease-in-out infinite alternate;
}

.hero-orb-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.4) 0%, rgba(220, 38, 38, 0.05) 70%, transparent 100%);
    top: -100px;
    right: -50px;
    animation-duration: 8s;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.3) 0%, rgba(244, 63, 94, 0.05) 70%, transparent 100%);
    bottom: -150px;
    left: -100px;
    animation-duration: 12s;
    animation-direction: alternate-reverse;
}

@keyframes floatOrb {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    50% {
        transform: translate(-30px, 20px) scale(1.15);
    }

    100% {
        transform: translate(20px, -20px) scale(0.95);
    }
}

/* Animated Laser Beam line at top of Hero */
.hero-laser-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(225, 29, 72, 0.9) 50%, #ffffff 75%, transparent 100%);
    box-shadow: 0 0 15px #e11d48;
    animation: laserScan 6s linear infinite;
    z-index: 2;
}

@keyframes laserScan {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Entrance Animations */
.hero-fade-up {
    opacity: 0;
    transform: translateY(25px);
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-fade-up-2 {
    animation-delay: 0.15s;
}

.hero-fade-up-3 {
    animation-delay: 0.3s;
}

.hero-fade-up-4 {
    animation-delay: 0.45s;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 18px;
    border-radius: var(--radius-full);
    background: rgba(225, 29, 72, 0.16);
    border: 1px solid rgba(225, 29, 72, 0.45);
    color: var(--accent-secondary);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 0 20px rgba(225, 29, 72, 0.2);
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    letter-spacing: -1.2px;
    margin-bottom: 22px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 560px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--border-color);
}

.stat-item h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 2px;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Authentic Interactive Speed Selector Card in Hero */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.interactive-speed-card {
    background: linear-gradient(145deg, rgba(24, 24, 28, 0.95), rgba(15, 15, 18, 0.98));
    border: 1px solid rgba(225, 29, 72, 0.45);
    border-radius: 24px;
    padding: 36px;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.65), 0 0 55px rgba(225, 29, 72, 0.25);
    position: relative;
    animation: cardFloat 6s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.interactive-speed-card:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75), 0 0 70px rgba(225, 29, 72, 0.4);
    border-color: rgba(244, 63, 94, 0.8);
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.isc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.isc-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.35);
        opacity: 1;
        box-shadow: 0 0 16px #10b981;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

.isc-speed-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 26px;
}

.isc-tab-btn {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
    padding: 10px 4px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Outfit', sans-serif;
    text-align: center;
}

.isc-tab-btn.active,
.isc-tab-btn:hover {
    background: var(--accent-gradient);
    color: #ffffff !important;
    border-color: transparent;
    box-shadow: 0 4px 18px rgba(225, 29, 72, 0.55);
    transform: translateY(-2px);
}

.isc-display {
    text-align: center;
    padding: 24px 0;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    margin-bottom: 24px;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.isc-speed-number {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: #ffffff !important;
    text-shadow: 0 0 30px rgba(244, 63, 94, 0.75);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
}

.isc-speed-unit {
    font-size: 1.1rem;
    color: #f43f5e !important;
    font-weight: 700;
    display: block;
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.isc-price-tag {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-top: 14px;
}

.isc-price-tag span {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

.isc-feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 26px;
}

.isc-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #cbd5e1 !important;
    font-weight: 600;
}

.isc-feature-item svg {
    color: #f43f5e;
    flex-shrink: 0;
}

/* Hero Banner Image Showcase Box */
.hero-banner-showcase {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(225, 29, 72, 0.45);
    box-shadow: 0 20px 50px rgba(225, 29, 72, 0.25), 0 0 35px rgba(225, 29, 72, 0.15);
    background: var(--bg-card);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    animation: cardFloat 6s ease-in-out infinite;
}

.hero-banner-showcase:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 25px 60px rgba(225, 29, 72, 0.38), 0 0 45px rgba(225, 29, 72, 0.25);
    border-color: rgba(225, 29, 72, 0.85);
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 340px;
}

.hero-banner-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(225, 29, 72, 0.45);
    padding: 6px 14px;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #f8fafc;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   Section Headers & Common
   ========================================================================== */
.section {
    padding: 95px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.7rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ==========================================================================
   Why Choose Spark IT (Pillar Cards - No Emojis, Authentic SVG Icons)
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent-gradient);
    transition: width 0.35s ease;
}

.feature-card:hover::after {
    width: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 40px rgba(225, 29, 72, 0.12);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(225, 29, 72, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-secondary);
    border: 1px solid rgba(225, 29, 72, 0.25);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-box {
    background: var(--accent-gradient);
    color: #fff;
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   Internet Packages Cards (The core SaltSync-inspired red pricing grid!)
   ========================================================================== */
.package-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 11px 26px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.94rem;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'Outfit', sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 18px var(--accent-glow);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 32px;
    align-items: stretch;
}

.package-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card.featured {
    border: 2px solid var(--accent-primary);
    box-shadow: 0 16px 50px rgba(225, 29, 72, 0.22);
    transform: translateY(-8px);
    background: var(--bg-card);
    position: relative;
}

.package-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--accent-gradient);
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    z-index: 1;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 55px rgba(225, 29, 72, 0.28);
}

.package-badge {
    position: absolute;
    top: -14px;
    right: 28px;
    background: var(--accent-gradient);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px var(--accent-glow);
    z-index: 5;
}

.package-header {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.package-name {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.package-speed {
    font-family: 'Outfit', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.package-speed span {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-muted);
    -webkit-text-fill-color: var(--text-muted);
}

.package-price-box {
    margin-bottom: 28px;
}

.package-price {
    font-family: 'Outfit', sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--text-main);
}

.package-cycle {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.package-features {
    flex-grow: 1;
    margin-bottom: 34px;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.5;
}

.package-features li .icon-check {
    color: var(--accent-primary);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==========================================================================
   Solutions & Services
   ========================================================================== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.solution-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 35px rgba(225, 29, 72, 0.12);
}

.solution-card h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.solution-subtitle {
    color: var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
    display: block;
}

.solution-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   Coverage Area Checker - Interactive Map & Search
   ========================================================================== */
.coverage-section {
    background: radial-gradient(circle at 50% 50%, rgba(225, 29, 72, 0.1) 0%, transparent 60%);
}

.coverage-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 46px 40px;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.coverage-city-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.city-tab-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s;
}

.city-tab-btn.active,
.city-tab-btn:hover {
    background: var(--accent-primary);
    color: #fff;
    border-color: var(--accent-primary);
}

.coverage-search {
    display: flex;
    gap: 12px;
    max-width: 580px;
    margin: 0 auto 36px;
}

.coverage-search input {
    flex-grow: 1;
    padding: 15px 22px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-main);
    font-size: 0.98rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
}

.coverage-search input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.15);
}

.coverage-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.coverage-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 9px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.25s;
}

.coverage-pill:hover {
    border-color: var(--accent-primary);
    color: var(--text-main);
}

.coverage-pill .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
}

.coverage-pill.expanding .status-dot {
    background: #f59e0b;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-toggle-icon {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
    color: var(--accent-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 28px;
}

.faq-item.active {
    border-color: var(--accent-primary);
    background: rgba(225, 29, 72, 0.03);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
    max-height: 400px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   Pay Bill & Contact Pages
   ========================================================================== */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-bottom: 60px;
}

.pay-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    text-align: center;
    transition: all 0.3s;
}

.pay-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(225, 29, 72, 0.12);
}

.pay-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: rgba(225, 29, 72, 0.12);
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.pay-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.merchant-no {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-secondary);
    background: rgba(225, 29, 72, 0.12);
    border: 1px solid rgba(225, 29, 72, 0.25);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin: 14px 0 18px;
}

/* ==========================================================================
   Interactive Modal (Order Connection)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 100%;
    max-width: 530px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--accent-primary);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
}

.modal-close:hover {
    color: var(--text-main);
}

.modal-header {
    margin-bottom: 24px;
    padding-right: 30px;
}

.modal-header h3 {
    font-size: 1.65rem;
    margin-bottom: 6px;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.order-form .form-group {
    margin-bottom: 18px;
}

.order-form label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.order-form input:focus,
.order-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.15);
}

.order-success {
    text-align: center;
    padding: 28px 0;
}

.order-success .success-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.order-success h4 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.order-success p {
    color: var(--text-muted);
    margin-bottom: 26px;
    line-height: 1.6;
}

.hide {
    display: none !important;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    margin-top: 90px;
}

.footer-top {
    padding: 75px 0 55px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-col h4 {
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 44px;
    height: 3px;
    background: var(--accent-gradient);
}

.footer-brand {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-bio {
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 9px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
}

.social-links a:hover {
    border-color: var(--accent-primary);
    color: var(--accent-secondary);
    background: rgba(225, 29, 72, 0.1);
}

.footer-links li,
.footer-contact li {
    margin-bottom: 13px;
    font-size: 0.94rem;
    color: var(--text-muted);
}

.footer-links li a:hover {
    color: var(--accent-secondary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.35);
    border-top: 1px solid var(--border-color);
    padding: 26px 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: var(--accent-secondary);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {

    .hero-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }

    .navbar-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border-color);
        padding: 24px;
        display: none;
        flex-direction: column;
    }

    .navbar-menu.active {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 18px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section-title {
        font-size: 2.1rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
}

.section-title {
    font-size: 2.1rem;
}

.footer-bottom-inner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
}
}