:root {
    --primary-blue: #55b6eb; /* Light Blue */
    --hover-blue: #3795c6;
    --dark-text: #333333;
    --light-text: #ffffff;
    --bg-color: #f8fafc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--dark-text);
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: var(--light-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 45px;
    height: 80px;
    box-shadow: 0 4px 20px rgba(2, 132, 199, 0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo Area */
.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
    min-width: 220px;
    gap: 12px;
}

.header-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.header-logo:hover {
    transform: scale(1.04);
}

.brand-tagline {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1.5px solid rgba(255, 255, 255, 0.3);
    padding-left: 12px;
    gap: 3px;
}

.tagline-sub {
    font-size: 10px;
    font-weight: 800;
    color: #e0f2fe;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.branch-badge {
    font-size: 10px;
    font-weight: 900;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 2px 9px;
    border-radius: 6px;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Navigation Menu Centered & Balanced */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
    height: 100%;
    margin: 0 auto;
}

.nav-item {
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
}

.nav-link {
    text-decoration: none;
    color: #f0f9ff;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.2s ease-in-out;
    padding: 8px 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

/* Active Item Capsule */
.nav-item.active .nav-link {
    color: #0369a1;
    background: #ffffff;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.nav-item.active .nav-link::after {
    display: none;
}

/* Dropdown arrow */
.dropdown-icon {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.nav-item.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu Centered */
.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 260px;
    background-color: #ffffff;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
    border: 1px solid #e2e8f0;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #334155;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background-color: #f0f9ff;
    color: var(--primary-blue);
    border-left-color: var(--primary-blue);
    padding-left: 25px;
}

.dropdown-link i {
    color: #64748b;
    font-size: 15px;
    width: 20px;
    text-align: center;
    transition: color 0.2s ease;
}

.dropdown-link:hover i {
    color: var(--primary-blue);
}

html {
    scroll-behavior: smooth;
}

/* Hero Section */
.hero {
    width: 100%;
    min-height: calc(100vh - 80px);
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tentang Kami Section */
.about-section {
    padding: 80px 20px;
    background-color: #f8fafc;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 45px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: #e0f2fe;
    color: #0284c7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #55b6eb, #3795c6);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Hero About Card */
.about-card.hero-about {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.about-card.hero-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #55b6eb, #3795c6);
}

.about-lead {
    font-size: 18px;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 20px;
}

.about-lead strong {
    color: #0f172a;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

.highlight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f0f9ff;
    color: #0369a1;
    border: 1px solid #bae6fd;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.highlight-tag:hover {
    background-color: #55b6eb;
    color: #ffffff;
    border-color: #55b6eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(85, 182, 235, 0.25);
}

/* Visi, Misi, Nilai Grid */
.vmn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .vmn-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.vmn-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.vmn-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(85, 182, 235, 0.12);
    border-color: #cbd5e1;
}

.vmn-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #55b6eb 0%, #3795c6 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    box-shadow: 0 8px 18px rgba(85, 182, 235, 0.3);
}

.vmn-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
}

.vmn-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}

/* Nilai List */
.nilai-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 5px;
}

.nilai-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background-color: #f8fafc;
    border-radius: 12px;
    border-left: 3px solid #55b6eb;
    transition: background-color 0.2s ease;
}

.nilai-item:hover {
    background-color: #f0f9ff;
}

.nilai-item i {
    color: #55b6eb;
    font-size: 16px;
}

.nilai-item span {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
}

/* ==========================================
   WhatsApp Floating Popup & Button (Bottom Right)
   ========================================== */
.whatsapp-float-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    font-family: 'Inter', sans-serif;
}

/* Popup Chat Box */
.whatsapp-popup-card {
    width: 320px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transform-origin: bottom right;
    animation: wa-popup-slide-up 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transition: all 0.3s ease;
}

.whatsapp-popup-card.hidden {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    pointer-events: none;
    display: none;
}

.whatsapp-popup-header {
    background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
    color: #ffffff;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whatsapp-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-avatar {
    width: 42px;
    height: 42px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.whatsapp-status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background-color: #2ecc71;
    border: 2px solid #fff;
    border-radius: 50%;
}

.whatsapp-header-text h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #ffffff;
}

.whatsapp-header-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 5px;
}

.whatsapp-popup-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    padding: 4px;
}

.whatsapp-popup-close:hover {
    opacity: 1;
}

.whatsapp-popup-body {
    padding: 18px 16px;
    background-color: #e5ddd5;
    background-image: radial-gradient(#d1c7bd 1px, transparent 1px);
    background-size: 16px 16px;
}

.whatsapp-chat-bubble {
    background: #ffffff;
    padding: 12px 14px;
    border-radius: 0 12px 12px 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
    position: relative;
    max-width: 88%;
}

.whatsapp-chat-name {
    font-size: 11px;
    font-weight: 700;
    color: #128C7E;
    margin-bottom: 4px;
}

.whatsapp-chat-message {
    font-size: 13.5px;
    color: #333333;
    line-height: 1.4;
    margin-bottom: 6px;
}

.whatsapp-chat-time {
    font-size: 10px;
    color: #888888;
    text-align: right;
    display: block;
}

.whatsapp-popup-footer {
    padding: 14px 16px;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.whatsapp-direct-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background-color: #25D366;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-direct-btn:hover {
    background-color: #1ebc59;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

/* Floating Round Button */
.whatsapp-float-btn {
    width: 62px;
    height: 62px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.45);
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.whatsapp-float-btn:hover {
    background-color: #1ebc59;
    transform: scale(1.08);
    color: #ffffff;
}

/* Pulsing effect */
.whatsapp-float-btn::before,
.whatsapp-float-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.6);
    z-index: -1;
    animation: wa-pulse-animation 2.2s infinite;
}

.whatsapp-float-btn::after {
    animation-delay: 1.1s;
}

@keyframes wa-pulse-animation {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes wa-popup-slide-up {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive adjustment */
@media (max-width: 480px) {
    .whatsapp-popup-card {
        width: 290px;
    }
    .whatsapp-float-container {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float-btn {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
}

/* ==========================================
   Maps Location Section (Tentang Kami)
   ========================================== */
.map-section {
    padding: 20px 20px 80px;
    background-color: #f8fafc;
}

.map-container {
    max-width: 1140px;
    margin: 0 auto;
}

.map-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.map-header-info {
    padding: 24px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.map-address-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.map-address-icon {
    width: 50px;
    height: 50px;
    background-color: #e0f2fe;
    color: #0284c7;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.map-address-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}

.map-address-text p {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    max-width: 650px;
}

.map-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background-color: var(--primary-blue);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(85, 182, 235, 0.35);
    white-space: nowrap;
}

.map-action-btn:hover {
    background-color: var(--hover-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(85, 182, 235, 0.45);
    color: #ffffff;
}

.map-frame-wrapper {
    width: 100%;
    height: 440px;
    position: relative;
    background-color: #e2e8f0;
}

.map-frame-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .map-header-info {
        flex-direction: column;
        align-items: flex-start;
    }
    .map-frame-wrapper {
        height: 350px;
    }
}

/* ==========================================
   Halaman Produk Styles (MEGADATA ISP)
   ========================================== */
.product-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0369a1 100%);
    color: #ffffff;
    padding: 70px 20px;
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(85, 182, 235, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.product-hero-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.product-hero-text {
    max-width: 650px;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(85, 182, 235, 0.2);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-hero-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    color: #ffffff;
}

.product-hero-desc {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 25px;
}

.product-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
}

.hero-feature-item i {
    color: #38bdf8;
}

/* Sub-nav Produk bar */
.product-subnav-bar {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 80px;
    z-index: 900;
}

.product-subnav-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    overflow-x: auto;
    padding: 0 20px;
    scrollbar-width: none;
}

.product-subnav-container::-webkit-scrollbar {
    display: none;
}

.subnav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.25s ease;
}

.subnav-link i {
    font-size: 16px;
}

.subnav-link:hover {
    color: var(--primary-blue);
    background-color: #f8fafc;
}

.subnav-link.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
    background-color: #f0f9ff;
}

/* Product Section General */
.product-page-section {
    padding: 70px 20px;
    background-color: #f8fafc;
}

.product-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.product-section-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.product-section-title p {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1140px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 35px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.pricing-card.featured {
    border: 2px solid var(--primary-blue);
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
    box-shadow: 0 10px 30px rgba(85, 182, 235, 0.2);
}

.pricing-card-badge {
    position: absolute;
    top: -15px;
    right: 25px;
    background: var(--primary-blue);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(85, 182, 235, 0.4);
}

.pricing-card-icon {
    width: 60px;
    height: 60px;
    background-color: #f0f9ff;
    color: var(--primary-blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.pricing-card.featured .pricing-card-icon {
    background-color: var(--primary-blue);
    color: #ffffff;
}

.pricing-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.pricing-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 25px;
    min-height: 40px;
}

.pricing-price-box {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #cbd5e1;
}

.pricing-price-currency {
    font-size: 16px;
    font-weight: 700;
    color: #64748b;
}

.pricing-price-amount {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
}

.pricing-price-period {
    font-size: 14px;
    color: #64748b;
}

.pricing-features-list {
    list-style: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #334155;
    line-height: 1.4;
}

.pricing-features-list li i {
    color: #10b981;
    font-size: 16px;
    margin-top: 2px;
}

.pricing-features-list li.disabled {
    color: #94a3b8;
}

.pricing-features-list li.disabled i {
    color: #cbd5e1;
}

/* Spec Badges */
.specs-badge-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.spec-badge-pill {
    background-color: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.spec-badge-pill i {
    color: var(--primary-blue);
}

/* CTA Buttons */
.btn-order-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background-color: var(--primary-blue);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(85, 182, 235, 0.3);
}

.btn-order-wa:hover {
    background-color: var(--hover-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(85, 182, 235, 0.45);
    color: #ffffff;
}

.btn-order-wa-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-order-wa-outline:hover {
    background-color: var(--primary-blue);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Specifications Table */
.specs-table-wrapper {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    margin-top: 50px;
    overflow-x: auto;
}

.specs-table-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.specs-table-title i {
    color: var(--primary-blue);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.specs-table th {
    background-color: #f8fafc;
    color: #334155;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 18px;
    border-bottom: 2px solid #e2e8f0;
}

.specs-table td {
    padding: 14px 18px;
    font-size: 14px;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr:hover td {
    background-color: #f0f9ff;
}

/* Feature Grid Banner */
.features-grid-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1140px;
    margin: 0 auto;
}

.feature-box-item {
    background-color: #f8fafc;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-box-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-blue);
}

.feature-box-icon {
    width: 50px;
    height: 50px;
    background-color: #e0f2fe;
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.feature-box-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.feature-box-item p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    padding: 70px 20px;
    background-color: #f8fafc;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-card {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question i {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-card.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    display: none;
}

.faq-card.active .faq-answer {
    display: block;
}

/* Index Overview Cards */
.catalog-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1140px;
    margin: 0 auto;
}

.catalog-card {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.catalog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.catalog-card-header {
    padding: 30px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.catalog-card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-blue);
    color: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(85, 182, 235, 0.4);
}

.catalog-card-header-text h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.catalog-card-header-text p {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

.catalog-card-body {
    padding: 30px;
    flex-grow: 1;
}

.catalog-card-body p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.catalog-card-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.catalog-card-highlights li {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
}

.catalog-card-highlights li i {
    color: var(--primary-blue);
}

.catalog-card-footer {
    padding: 0 30px 30px 30px;
}

/* Responsiveness for Product Components */
@media (max-width: 992px) {
    .product-hero-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .product-hero-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding: 50px 20px;
    }
    .pricing-grid, .catalog-overview-grid {
        grid-template-columns: 1fr;
    }
    .specs-table-wrapper {
        padding: 20px;
    }
}

/* ==========================================
   Halaman Karir & Lowongan Pekerjaan Styles
   ========================================== */
.career-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0284c7 100%);
    color: #ffffff;
    padding: 70px 20px;
    position: relative;
    overflow: hidden;
}

.career-hero-container {
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
}

.career-hero-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
}

.career-hero-desc {
    font-size: 16px;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

/* Culture & Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    max-width: 1140px;
    margin: 0 auto;
}

.benefit-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px 22px;
    border: 1px solid #e2e8f0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    width: 55px;
    height: 55px;
    background-color: #e0f2fe;
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 18px auto;
}

.benefit-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

/* Job Vacancy Card */
.jobs-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.job-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    border-left: 5px solid var(--primary-blue);
}

.job-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.job-title-group h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.job-title-group h3 i {
    color: var(--primary-blue);
}

.job-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-tags-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.job-tag {
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.job-tag.urgent {
    background-color: #fef2f2;
    color: #ef4444;
    border: 1px solid #fca5a5;
}

.job-tag.fulltime {
    background-color: #f0fdf4;
    color: #16a34a;
    border: 1px solid #86efac;
}

.job-tag.onsite {
    background-color: #f0f9ff;
    color: #0284c7;
    border: 1px solid #7dd3fc;
}

.job-body {
    margin-bottom: 25px;
}

.job-section-subtitle {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 15px;
    margin-bottom: 10px;
}

.job-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.job-list li {
    font-size: 14px;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.job-list li i {
    color: var(--primary-blue);
    margin-top: 4px;
    font-size: 12px;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px dashed #e2e8f0;
}

.job-salary-note {
    font-size: 14px;
    font-weight: 700;
    color: #059669;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-apply-job {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: #25d366;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-apply-job:hover {
    background-color: #1ebd56;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.45);
    color: #ffffff;
}

/* Apply Info Banner */
.career-apply-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    margin-top: 60px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.career-apply-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
}

.career-apply-card p {
    font-size: 15px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 25px auto;
    line-height: 1.6;
}

.contact-hr-box {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-hr-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
}

.contact-hr-item i {
    color: #38bdf8;
    font-size: 18px;
}

@media (max-width: 768px) {
    .job-card {
        padding: 22px;
    }
    .job-footer {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-apply-job {
        justify-content: center;
    }
}

/* ==========================================
   Homepage Modern & Dynamic Styles (MEGADATA ISP)
   ========================================== */

/* Home Hero Section */
.home-hero {
    background: radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.15) 0%, transparent 40%),
                linear-gradient(135deg, #090d16 0%, #0f172a 50%, #0284c7 100%);
    color: #ffffff;
    padding: 100px 20px 120px 20px;
    position: relative;
    overflow: hidden;
}

.home-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top, #f8fafc, transparent);
    pointer-events: none;
}

.home-hero-container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(56, 189, 248, 0.12);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}

.home-hero-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.home-hero-title span {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-hero-desc {
    font-size: 17px;
    color: #cbd5e1;
    line-height: 1.65;
    margin-bottom: 35px;
    max-width: 620px;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0284c7 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(2, 132, 199, 0.6);
    color: #ffffff;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
    color: #ffffff;
}

/* Glassmorphism Graphic Card */
.home-hero-graphic {
    position: relative;
}

.glass-card-main {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.glass-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.glass-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0284c7 0%, var(--primary-blue) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.4);
}

.glass-header-text h4 {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

.glass-header-text p {
    font-size: 13px;
    color: #94a3b8;
}

.glass-stat-row {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.glass-stat-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.glass-stat-label {
    font-size: 14px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.glass-stat-label i {
    color: #38bdf8;
}

.glass-stat-val {
    font-size: 16px;
    font-weight: 800;
    color: #38bdf8;
}

/* Floating Status Dot Animation */
.live-pulse {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Counter Bar Section */
.counter-bar-section {
    margin-top: -40px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.counter-bar-container {
    max-width: 1140px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    padding: 30px;
    gap: 20px;
}

.counter-item {
    text-align: center;
    padding: 10px 15px;
    border-right: 1px solid #f1f5f9;
}

.counter-item:last-child {
    border-right: none;
}

.counter-number {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #0f172a 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
}

/* Why Choose Us Cards */
.why-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1140px;
    margin: 0 auto;
}

.why-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 35px 25px;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: #e0f2fe;
    color: var(--primary-blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background: var(--primary-blue);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(85, 182, 235, 0.4);
}

.why-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* Coverage Checker Banner */
.coverage-banner-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
}

.coverage-banner-container {
    max-width: 1140px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.coverage-text h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.coverage-text p {
    font-size: 16px;
    color: #cbd5e1;
    max-width: 600px;
}

.btn-coverage-wa {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: #25d366;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
    white-space: nowrap;
}

.btn-coverage-wa:hover {
    background-color: #1ebd56;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.5);
    color: #ffffff;
}

/* Testimonial Cards */
.testimonials-section {
    padding: 80px 20px;
    background-color: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1140px;
    margin: 0 auto;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-rating {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.author-info h5 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.author-info p {
    font-size: 12px;
    color: #64748b;
}

/* Footer Styles */
.footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 80px 20px 30px 20px;
    border-top: 1px solid #1e293b;
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand-logo {
    height: 55px;
    margin-bottom: 20px;
    object-fit: contain;
}

.footer-about-text {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 20px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-blue);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #cbd5e1;
}

.footer-contact-list li i {
    color: var(--primary-blue);
    font-size: 16px;
    margin-top: 3px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.social-icon-btn {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-btn:hover {
    background-color: var(--primary-blue);
    color: #ffffff;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .home-hero-container {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .coverage-banner-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .home-hero-title {
        font-size: 32px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .counter-item {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 20px;
    }
}

/* ==========================================
   Halaman Coverage Area Styles (Kabupaten Banyumas)
   ========================================== */
.coverage-hero {
    background: linear-gradient(135deg, #090d16 0%, #0f172a 50%, #0369a1 100%);
    color: #ffffff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.coverage-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.coverage-hero-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
}

.coverage-hero-title span {
    color: #38bdf8;
}

.coverage-hero-desc {
    font-size: 16px;
    color: #cbd5e1;
    max-width: 720px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
}

/* Coverage Search Filter Input */
.coverage-search-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.coverage-search-input {
    width: 100%;
    padding: 18px 25px 18px 55px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    transition: all 0.3s ease;
}

.coverage-search-input::placeholder {
    color: #94a3b8;
}

.coverage-search-input:focus {
    border-color: #38bdf8;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.3);
}

.coverage-search-icon {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #38bdf8;
    font-size: 18px;
}

/* Region Section & Grid */
.banyumas-regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1140px;
    margin: 0 auto;
}

.region-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.region-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue);
}

.region-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.region-icon-box {
    width: 48px;
    height: 48px;
    background: #e0f2fe;
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.region-title h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}

.region-title p {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}

.district-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.district-pill {
    background-color: #f1f5f9;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.district-pill:hover {
    background-color: #e0f2fe;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.district-pill i {
    color: #10b981;
    font-size: 10px;
}

.region-footer-badge {
    font-size: 12px;
    font-weight: 700;
    color: #059669;
    background-color: #ecfdf5;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Interactive Check Form Box */
.check-form-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 850px;
    margin: 60px auto 0 auto;
}

.check-form-title {
    text-align: center;
    margin-bottom: 30px;
}

.check-form-title h3 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.check-form-title p {
    font-size: 14px;
    color: #64748b;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-item label {
    font-size: 13px;
    font-weight: 700;
    color: #334155;
}

.form-input-select, .form-input-text {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

.form-input-select:focus, .form-input-text:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 10px rgba(85, 182, 235, 0.2);
}

.btn-submit-check {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background-color: #25d366;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.btn-submit-check:hover {
    background-color: #1ebd56;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
    .coverage-hero-title {
        font-size: 30px;
    }
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    .check-form-card {
        padding: 25px;
    }
}


