/* ==========================================================================
   PanglimaNet - PT. Panglima Kamayo Media
   Light Theme & Red Nuances Design System
   Mobile-First & Smartphone Friendly CSS
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & Variables
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --primary: #E53935;
    --primary-hover: #C62828;
    --primary-light: #FFEBEE;
    --primary-gradient: linear-gradient(135deg, #E53935 0%, #B71C1C 100%);
    --accent-yellow: #FACC15;
    --accent-yellow-dark: #EAB308;
    --dark-navy: #0F172A;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --bg-main: #FAFAFC;
    --bg-card: #FFFFFF;
    --bg-alt: #F1F5F9;
    --border-color: #E2E8F0;
    --success: #10B981;

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Shadows & Effects */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 16px 40px rgba(229, 57, 53, 0.12);
    --shadow-red: 0 8px 25px rgba(229, 57, 53, 0.3);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. CSS Reset & Base Styles
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 70px; /* Space for mobile bottom bar */
}

@media (min-width: 769px) {
    body {
        padding-bottom: 0;
    }
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

button {
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* --------------------------------------------------------------------------
   3. Header & Sticky Navbar
   -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(244, 248, 248, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(215, 230, 230, 0.8);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

@media (min-width: 768px) {
    .navbar {
        height: 74px;
    }
}

.nav-left-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (min-width: 576px) {
    .nav-left-group {
        gap: 14px;
    }
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-brand-logo,
.nav-brand-text-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transition: var(--transition);
}

.nav-brand-logo {
    max-width: 130px;
}

.nav-brand-text-img {
    max-width: 220px;
}

@media (max-width: 575.98px) {
    .nav-brand-text-img {
        display: none !important;
    }
    .nav-left-group {
        gap: 8px;
    }
    .nav-brand-logo {
        height: 34px;
    }
}

@media (min-width: 576px) {
    .nav-brand-logo,
    .nav-brand-text-img {
        height: 42px;
    }
}

@media (min-width: 768px) {
    .nav-brand-logo,
    .nav-brand-text-img {
        height: 48px;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: #FEF2F2;
    color: var(--primary);
    font-size: 1.2rem;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(229, 57, 53, 0.15);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .menu-toggle-btn {
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
    }
}

.menu-toggle-btn:hover, .menu-toggle-btn:active {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
}

.desktop-only-btn {
    display: none !important;
}

@media (min-width: 768px) {
    .desktop-only-btn {
        display: inline-flex !important;
    }
    .mobile-cta-btn {
        display: none !important;
    }
}

.mobile-cta-btn {
    display: inline-flex;
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   4. Side Drawer Navigation Slider (Left to Right)
   -------------------------------------------------------------------------- */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.35s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sidebar-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 310px;
    max-width: 85vw;
    height: 100vh;
    background: #FFFFFF;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
    /* Left to Right Drawer Slide Effect */
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    /* Hide scrollbar while keeping scroll functionality */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sidebar-drawer::-webkit-scrollbar {
    display: none;
}

.sidebar-drawer.active {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: #FAFAFC;
}

.sidebar-logo {
    height: 44px;
    width: auto;
}

.sidebar-close-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: var(--bg-alt);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.sidebar-close-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.sidebar-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition);
}

.sidebar-nav li a i {
    font-size: 1.05rem;
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.sidebar-nav li a:hover,
.sidebar-nav li a.active {
    background: var(--primary-light);
    color: var(--primary);
}

.sidebar-info-box {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.sidebar-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-info-item i {
    color: var(--primary);
}

.sidebar-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--border-color);
    background: #FAFAFC;
}

/* --------------------------------------------------------------------------
   5. Buttons & Badges Design
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #FFFFFF;
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(229, 57, 53, 0.4);
    color: #FFFFFF;
}

.btn-secondary {
    background: #FFFFFF;
    color: var(--dark-navy);
    border: 1.5px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

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

.btn-wa {
    background: #25D366;
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
    background: #1EBE5D;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-red {
    background: var(--primary-light);
    color: var(--primary);
    border: 1px solid rgba(229, 57, 53, 0.2);
}

.badge-yellow {
    background: #FEF9C3;
    color: #854D0E;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    padding: 2.25rem 0 2.5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(250, 250, 252, 0.84) 0%, rgba(255, 255, 255, 0.88) 100%), url('../images/fiber.jpg') center/cover no-repeat;
}

@media (min-width: 992px) {
    .hero-section {
        padding: 3.25rem 0 3.5rem;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3.5rem;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark-navy);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 1.95rem;
    }
}

.hero-title span.text-highlight {
    color: var(--primary);
    background: linear-gradient(120deg, var(--primary) 0%, #B71C1C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.48;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 0.5rem;
    align-items: center;
}

.hero-buttons .btn {
    min-width: 250px;
    height: 54px;
    padding: 0 1.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.98rem;
    font-weight: 700;
    text-align: center;
    border-radius: 30px;
}

@media (max-width: 576px) {
    .hero-buttons .btn {
        width: 100%;
        min-width: 100%;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.stat-card {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

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

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid #FFFFFF;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hero-floating-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.floating-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.floating-text p {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark-navy);
}

.floating-text span {
    font-size: 0.78rem;
    color: var(--success);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   7. Features Section (Keunggulan)
   -------------------------------------------------------------------------- */
.section {
    padding: 1.5rem 0;
}

@media (min-width: 992px) {
    .section {
        padding: 2rem 0;
    }
}

.pricing-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.86) 0%, rgba(248, 250, 252, 0.89) 100%), url('../images/fiber.jpg') center/cover no-repeat;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--dark-navy);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 1.95rem;
    }
}

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

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.25rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(229, 57, 53, 0.3);
}

.feature-icon-box {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.3;
}

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

/* --------------------------------------------------------------------------
   8. Internet Package Pricing Section
   -------------------------------------------------------------------------- */
.pricing-section {
    background: #FFFFFF;
    position: relative;
}

.tab-switcher {
    display: inline-flex;
    background: var(--bg-alt);
    padding: 5px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    margin-bottom: 2.5rem;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: transparent;
    transition: var(--transition);
}

.tab-btn.active {
    background: var(--primary-gradient);
    color: #FFFFFF;
    box-shadow: var(--shadow-sm);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pricing-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.pricing-card.popular {
    border-color: var(--primary);
    border-width: 2px;
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.15);
}

.popular-badge-header {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: #FFFFFF;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(229, 57, 53, 0.3);
}

.package-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.85rem;
    margin-bottom: 0.85rem;
    text-align: center;
}

.package-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-navy);
}

.package-speed {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 4px 0;
}

.package-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark-navy);
}

.package-price span.currency {
    font-size: 0.85rem;
    font-weight: 600;
}

.package-price span.period {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

.package-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.pricing-card .btn {
    margin-top: auto;
    height: 52px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 30px;
    box-sizing: border-box;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-main);
}

.package-features li i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 2px;
}

/* --------------------------------------------------------------------------
   9. Coverage Checker Section (Cek Jangkauan Area)
   -------------------------------------------------------------------------- */
.coverage-box {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #1E293B 100%);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.25rem;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
    .coverage-box {
        padding: 2.25rem 2rem;
    }
}

.coverage-content {
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    position: relative;
    z-index: 2;
}

.coverage-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
}

.coverage-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0.5rem;
}

@media (min-width: 640px) {
    .coverage-form {
        flex-direction: row;
        background: #FFFFFF;
        padding: 6px;
        border-radius: var(--radius-full);
    }
}

.coverage-input {
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    color: var(--text-main);
    background: #FFFFFF;
}

/* --------------------------------------------------------------------------
   10. Modal Dialog (Result Popup)
   -------------------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.modal-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    max-width: 480px;
    width: 100%;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: var(--transition);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-icon {
    width: 68px;
    height: 68px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}

/* --------------------------------------------------------------------------
   11. Testimonial & FAQ Section
   -------------------------------------------------------------------------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
}

.testi-stars {
    color: #F59E0B;
    font-size: 0.9rem;
    display: flex;
    gap: 3px;
}

.testi-comment {
    font-size: 0.92rem;
    color: var(--text-main);
    font-style: italic;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.user-avatar {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-meta h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-navy);
}

.user-meta span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

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

.faq-header {
    padding: 0.9rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark-navy);
    cursor: pointer;
    user-select: none;
}

.faq-header i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 1.2rem 0.9rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    display: none;
    line-height: 1.45;
}

.faq-item.active .faq-body {
    display: block;
}

/* --------------------------------------------------------------------------
   12. Order / Contact Form Section
   -------------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1rem;
    box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
    .contact-grid {
        padding: 2.5rem;
    }
}

.contact-grid-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1rem;
    box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
    .contact-grid-2col {
        grid-template-columns: 1fr 1fr;
        padding: 2.25rem 2.5rem;
        gap: 2.5rem;
        align-items: start;
    }
}

.cctv-grid-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .cctv-grid-2col {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3rem;
    }
}

.cctv-btn-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 0.5rem;
}

.cctv-btn-equal {
    min-width: 250px;
    justify-content: center;
    text-align: center;
    padding: 13px 24px;
    font-size: 0.95rem;
}

@media (max-width: 580px) {
    .cctv-btn-equal {
        width: 100%;
        min-width: unset;
    }
}

.contact-email-form {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.form-section {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
}

.form-section-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.85rem;
}

.form-section-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.75rem;
}

.same-address-box {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-navy);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-alt);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    user-select: none;
}

.form-row {
    display: grid;
    gap: 0.85rem;
}

.form-row-2col {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .form-row-2col {
        grid-template-columns: 1fr 1fr;
    }
}

.form-row-4col {
    grid-template-columns: 1fr 1fr;
}

@media (min-width: 768px) {
    .form-row-4col {
        grid-template-columns: repeat(4, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 0.85rem;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark-navy);
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-color);
    font-size: 16px; /* Prevents iOS auto-zoom on input focus */
    color: var(--text-main);
    background: #FFFFFF;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.15);
}

.form-terms-box {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.form-terms-title {
    margin-bottom: 6px;
    font-weight: 700;
    color: var(--dark-navy);
}

.form-terms-list {
    padding-left: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.submit-btn-lg {
    padding: 15px 20px;
    font-size: 1rem;
}

/* --------------------------------------------------------------------------
   13. Footer & Mobile Bottom Bar
   -------------------------------------------------------------------------- */
.site-footer {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.78) 0%, rgba(30, 41, 59, 0.82) 100%), url('../images/fiber.jpg') center/cover no-repeat;
    color: #94A3B8;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr repeat(3, 1fr);
    }
}

.footer-brand img {
    height: 48px;
    margin-bottom: 1rem;
    background: #FFFFFF;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}

.footer-col h4 {
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
}

/* Mobile Quick Action Bottom Bar */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: #FFFFFF;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 998;
    padding: 0 10px;
}

@media (min-width: 769px) {
    .mobile-bottom-bar {
        display: none;
    }
}

.mobile-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
}

.mobile-bar-item i {
    font-size: 1.25rem;
    color: var(--primary);
}

.mobile-bar-item.highlight i {
    color: #25D366;
}

/* Floating WhatsApp Button Desktop */
.floating-wa-btn {
    position: fixed;
    bottom: 85px;
    right: 20px;
    width: 54px;
    height: 54px;
    border-radius: var(--radius-full);
    background: #25D366;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 997;
    transition: var(--transition);
}

@media (min-width: 769px) {
    .floating-wa-btn {
        bottom: 25px;
        right: 25px;
    }
}

.floating-wa-btn:hover {
    transform: scale(1.1);
    color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   14. SweetAlert2 Custom Styling (Compact, Sleek, Professional Box Size)
   -------------------------------------------------------------------------- */
.swal2-popup.custom-swal-popup {
    width: 390px !important;
    max-width: 90vw !important;
    padding: 1.5rem 1.25rem !important;
    border-radius: 18px !important;
    font-family: var(--font-body), sans-serif !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18) !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
}

.swal2-title.custom-swal-title {
    font-family: var(--font-heading), sans-serif !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: var(--dark-navy) !important;
    padding: 0.5rem 0 0.25rem 0 !important;
}

.swal2-html-container.custom-swal-html {
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
    line-height: 1.5 !important;
    margin: 0.5rem 0 1.25rem 0 !important;
}

.swal2-icon.custom-swal-icon {
    transform: scale(0.85) !important;
    margin: 0.5rem auto 0.25rem !important;
}

.swal2-styled.custom-swal-confirm {
    background: linear-gradient(135deg, #E53935 0%, #B71C1C 100%) !important;
    color: #FFFFFF !important;
    border-radius: 25px !important;
    padding: 10px 24px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    box-shadow: 0 6px 18px rgba(229, 57, 53, 0.3) !important;
    outline: none !important;
}

.swal2-styled.custom-swal-cancel {
    background: #F1F5F9 !important;
    color: #475569 !important;
    border-radius: 25px !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    outline: none !important;
}

/* --------------------------------------------------------------------------
   15. News Article Title Styling (Compact, Clean & Mobile Responsive)
   -------------------------------------------------------------------------- */
.article-detail-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--dark-navy);
    line-height: 1.35;
    max-width: 900px;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .article-detail-title {
        font-size: 1.18rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .article-detail-title {
        font-size: 1.05rem;
        line-height: 1.4;
    }
}

.news-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--dark-navy);
}

/* --------------------------------------------------------------------------
   16. Logo Marquee Running Banner (Infinite Scrolling Logos)
   -------------------------------------------------------------------------- */
.logo-marquee-wrapper {
    background: #FFFFFF;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.logo-marquee-header {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.logo-marquee-track-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.logo-marquee-track-container::before,
.logo-marquee-track-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-marquee-track-container::before {
    left: 0;
    background: linear-gradient(to right, #FFFFFF, transparent);
}

.logo-marquee-track-container::after {
    right: 0;
    background: linear-gradient(to left, #FFFFFF, transparent);
}

.logo-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 3rem;
    animation: marqueeScroll 25s linear infinite;
}

.logo-marquee-track:hover {
    animation-play-state: paused;
}

.logo-marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-marquee-item img {
    height: 38px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.06));
    transition: transform 0.2s ease;
}

.logo-marquee-item img:hover {
    transform: scale(1.08);
}

@media (max-width: 576px) {
    .logo-marquee-item img {
        height: 32px;
        max-width: 140px;
    }
    .logo-marquee-track {
        gap: 1.75rem;
        animation-duration: 20s;
    }
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

/* --------------------------------------------------------------------------
   17. COMPREHENSIVE ULTRA-STRICT DARK MODE DESIGN SYSTEM
   -------------------------------------------------------------------------- */
:root {
    --bg-main: #FAFAFC;
    --bg-alt: #F1F5F9;
    --bg-card: #FFFFFF;
    --dark-navy: #0F172A;
    --text-main: #334155;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
}

/* Base Dark Theme Overrides */
html[data-theme="dark"],
html[data-theme="dark"] body {
    --bg-main: #0B132B !important;
    --bg-alt: #1C2541 !important;
    --bg-card: #1E293B !important;
    --dark-navy: #F8FAFC !important;
    --text-main: #CBD5E1 !important;
    --text-muted: #94A3B8 !important;
    --border-color: #334155 !important;
    background-color: #0B132B !important;
    color: #CBD5E1 !important;
}

/* Force dark backgrounds on ALL sections, headers, containers, cards, footers & modals */
html[data-theme="dark"] section,
html[data-theme="dark"] .section,
html[data-theme="dark"] .site-header,
html[data-theme="dark"] .navbar,
html[data-theme="dark"] .card,
html[data-theme="dark"] .pricing-card,
html[data-theme="dark"] .feature-card,
html[data-theme="dark"] .sidebar-drawer,
html[data-theme="dark"] .news-card,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .login-card,
html[data-theme="dark"] .logo-marquee-wrapper,
html[data-theme="dark"] [style*="background: #FFFFFF"],
html[data-theme="dark"] [style*="background:#FFFFFF"],
html[data-theme="dark"] [style*="background: #fff"],
html[data-theme="dark"] [style*="background:#fff"],
html[data-theme="dark"] [style*="background: #FAFAFC"],
html[data-theme="dark"] [style*="background:#FAFAFC"],
html[data-theme="dark"] [style*="background: #F8FAFC"],
html[data-theme="dark"] [style*="background:#F8FAFC"],
html[data-theme="dark"] [style*="background: #F1F5F9"],
html[data-theme="dark"] [style*="background:#F1F5F9"],
html[data-theme="dark"] [style*="background: #E2E8F0"],
html[data-theme="dark"] [style*="background:#E2E8F0"] {
    background-color: #1E293B !important;
    border-color: #334155 !important;
    color: #CBD5E1 !important;
}

html[data-theme="dark"] .hero-section {
    background-color: #0B132B !important;
}

/* Force High Contrast White Text for Headings */
html[data-theme="dark"] h1,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3,
html[data-theme="dark"] h4,
html[data-theme="dark"] h5,
html[data-theme="dark"] h6,
html[data-theme="dark"] strong,
html[data-theme="dark"] b,
html[data-theme="dark"] .section-title,
html[data-theme="dark"] .hero-title,
html[data-theme="dark"] .card-title,
html[data-theme="dark"] .article-detail-title,
html[data-theme="dark"] [style*="color: var(--dark-navy)"],
html[data-theme="dark"] [style*="color:#0F172A"],
html[data-theme="dark"] [style*="color: #0F172A"],
html[data-theme="dark"] [style*="color:#0f172a"],
html[data-theme="dark"] [style*="color: #0f172a"],
html[data-theme="dark"] [style*="color:#334155"],
html[data-theme="dark"] [style*="color: #334155"],
html[data-theme="dark"] [style*="color:#1E293B"],
html[data-theme="dark"] [style*="color: #1E293B"] {
    color: #F8FAFC !important;
}

/* Force Light Gray Text for Body Content & Paragraphs */
html[data-theme="dark"] p,
html[data-theme="dark"] span:not(.badge):not(.btn):not(.floating-icon):not([class*="badge"]),
html[data-theme="dark"] li,
html[data-theme="dark"] label,
html[data-theme="dark"] div,
html[data-theme="dark"] .section-subtitle,
html[data-theme="dark"] .hero-description,
html[data-theme="dark"] .article-content,
html[data-theme="dark"] .article-content * {
    color: #CBD5E1 !important;
}

html[data-theme="dark"] small,
html[data-theme="dark"] .text-muted,
html[data-theme="dark"] [style*="color: #64748B"],
html[data-theme="dark"] [style*="color:#64748B"],
html[data-theme="dark"] [style*="color: #475569"],
html[data-theme="dark"] [style*="color:#475569"] {
    color: #94A3B8 !important;
}

/* Links in Dark Mode */
html[data-theme="dark"] a:not(.btn):not(.status-badge):not(.badge) {
    color: #60A5FA;
}

html[data-theme="dark"] a:not(.btn):not(.status-badge):not(.badge):hover {
    color: #F8FAFC;
}

/* Buttons in Dark Mode */
html[data-theme="dark"] .btn-secondary {
    background: #334155 !important;
    color: #F8FAFC !important;
    border-color: #475569 !important;
}

html[data-theme="dark"] .btn-secondary:hover {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

html[data-theme="dark"] .theme-toggle-btn {
    background: #334155 !important;
    color: #FACC15 !important;
    border-color: #475569 !important;
}

html[data-theme="dark"] .menu-toggle-btn {
    background: #334155 !important;
    color: #F8FAFC !important;
    border-color: #475569 !important;
}

/* Form Controls in Dark Mode */
html[data-theme="dark"] input,
html[data-theme="dark"] textarea,
html[data-theme="dark"] select,
html[data-theme="dark"] .form-control,
html[data-theme="dark"] .form-control-login {
    background-color: #0F172A !important;
    color: #F8FAFC !important;
    border-color: #334155 !important;
}

html[data-theme="dark"] input::placeholder,
html[data-theme="dark"] textarea::placeholder {
    color: #64748B !important;
}

/* Admin Tables & Logs in Dark Mode */
html[data-theme="dark"] .admin-table {
    background-color: #1E293B !important;
}

html[data-theme="dark"] .admin-table th {
    background-color: #0F172A !important;
    color: #F8FAFC !important;
    border-color: #334155 !important;
}

html[data-theme="dark"] .admin-table td {
    background-color: #1E293B !important;
    color: #CBD5E1 !important;
    border-color: #334155 !important;
}

html[data-theme="dark"] .admin-table tr:hover td {
    background-color: #334155 !important;
}

/* FAQ Items & Accordion in Dark Mode */
html[data-theme="dark"] .faq-item,
html[data-theme="dark"] .help-faq-item {
    background-color: #1E293B !important;
    border-color: #334155 !important;
}

html[data-theme="dark"] .faq-header,
html[data-theme="dark"] .help-faq-question {
    background-color: #0F172A !important;
    color: #F8FAFC !important;
}

html[data-theme="dark"] .faq-body,
html[data-theme="dark"] .help-faq-answer {
    background-color: #1E293B !important;
    color: #CBD5E1 !important;
    border-color: #334155 !important;
}

/* Side Drawer Menu in Dark Mode */
html[data-theme="dark"] .sidebar-header,
html[data-theme="dark"] .sidebar-footer {
    background-color: #0F172A !important;
    border-color: #334155 !important;
}

html[data-theme="dark"] .sidebar-nav a {
    color: #CBD5E1 !important;
}

html[data-theme="dark"] .sidebar-nav a:hover,
html[data-theme="dark"] .sidebar-nav a.active {
    background-color: #334155 !important;
    color: #F8FAFC !important;
}

/* Logo Marquee Fades in Dark Mode */
html[data-theme="dark"] .logo-marquee-track-container::before {
    background: linear-gradient(to right, #1E293B, transparent) !important;
}

html[data-theme="dark"] .logo-marquee-track-container::after {
    background: linear-gradient(to left, #1E293B, transparent) !important;
}

.theme-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FEF2F2;
    color: var(--primary);
    border: 1px solid rgba(229, 57, 53, 0.15);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    flex-shrink: 0;
}

.theme-toggle-btn:hover {
    background: var(--primary);
    color: #FFFFFF;
    transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   18. Scroll to Top Floating Button
   -------------------------------------------------------------------------- */
.scroll-to-top-btn {
    position: fixed;
    bottom: 82px;
    right: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark-navy);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   19. SKELETON LOADING SHIMMER ANIMATION SYSTEM
   -------------------------------------------------------------------------- */
@keyframes shimmerPulse {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton-shimmer-box {
    background: linear-gradient(90deg, #F1F5F9 25%, #CBD5E1 37%, #F1F5F9 63%);
    background-size: 400% 100%;
    animation: shimmerPulse 1.4s ease-in-out infinite;
    border-radius: 8px;
}

html[data-theme="dark"] .skeleton-shimmer-box {
    background: linear-gradient(90deg, #1E293B 25%, #334155 37%, #1E293B 63%) !important;
    background-size: 400% 100% !important;
}

#page-skeleton-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #FAFAFC;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    overflow: hidden;
}

html[data-theme="dark"] #page-skeleton-overlay {
    background: #0B132B !important;
}

#page-skeleton-overlay.loaded-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none !important;
    display: none !important;
}

@media (max-width: 768px) {
    .news-card-title {
        font-size: 0.95rem;
    }
}

/* --------------------------------------------------------------------------
   20. ULTRA-SMOOTH IMAGE OPTIMIZATION & PREVENTING STUTTERING / CLS
   -------------------------------------------------------------------------- */
.news-card-img img,
.article-featured-img img {
    transition: opacity 0.3s ease-in-out;
}

img:not([src]), img[src=""] {
    opacity: 0;
}
