﻿:root {
    --brand-green: #198754;
    --brand-green-dark: #12633d;
    --brand-green-light: #e8f5e9;
    --brand-red: #ea234d;
    --brand-red-dark: #c4183c;
    --brand-red-light: #fde8ec;
    --text-main: #212529;
    --text-muted: #6c757d;
    --bg-body: #f8f9fa;
    --border-color: #e9ecef;
    --white: #ffffff;
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.06);
    --radius-md: 12px;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

/* --- HERO BANNER --- */
.hero-banner {
    background: linear-gradient(135deg, #198754 0%, #12633d 100%);
    color: var(--white);
    padding: 50px 0 60px;
    text-align: center;
}

    .hero-banner h1 {
        font-weight: 700;
        font-size: 2.2rem;
    }

    .hero-banner p {
        font-size: 1rem;
        opacity: 0.9;
        max-width: 600px;
        margin: 0 auto;
    }

/* --- CONTACT CARDS --- */
.contact-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
        border-color: var(--brand-green);
    }

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.icon-green {
    background: var(--brand-green-light);
    color: var(--brand-green);
}

.icon-red {
    background: var(--brand-red-light);
    color: var(--brand-red);
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.btn-action {
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}

.btn-green {
    background-color: var(--brand-green);
    color: var(--white);
}

    .btn-green:hover {
        background-color: var(--brand-green-dark);
        color: var(--white);
    }

.btn-red {
    background-color: var(--brand-red);
    color: var(--white);
}

    .btn-red:hover {
        background-color: var(--brand-red-dark);
        color: var(--white);
    }

/* --- MAP & CORPORATE SECTION --- */
.info-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.section-title-left {
    font-size: 1.35rem;
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
}

    .section-title-left::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 3px;
        background-color: var(--brand-green);
        border-radius: 2px;
    }

.map-container iframe {
    width: 100%;
    height: 340px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

/* --- COVERAGE & TIMING CARDS --- */
.feature-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

    .feature-card h4 {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--text-main);
        margin-bottom: 12px;
    }

.badge-city {
    background-color: var(--brand-green-light);
    color: var(--brand-green);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    margin: 3px;
}

/* --- SEARCH & FAQS --- */
.section-title {
    text-align: center;
    margin-bottom: 30px;
}

    .section-title h2 {
        font-weight: 700;
        color: var(--text-main);
        font-size: 1.8rem;
    }

.faq-search {
    max-width: 500px;
    margin: 0 auto 35px;
    position: relative;
}

    .faq-search input {
        padding-left: 45px;
        height: 48px;
        border-radius: 24px;
        border: 1px solid var(--border-color);
        box-shadow: var(--shadow-sm);
    }

    .faq-search i {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-muted);
    }

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 8px !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    background-color: var(--white);
    padding: 16px 20px;
}

    .accordion-button:not(.collapsed) {
        color: var(--brand-green);
        background-color: var(--brand-green-light);
        box-shadow: none;
    }

    .accordion-button:focus {
        box-shadow: none;
        border-color: var(--brand-green);
    }

.accordion-body {
    font-size: 0.9rem;
    color: #495057;
    background: var(--white);
    line-height: 1.7;
}

/* LIVE HELP BANNER */
.live-help-box {
    background: linear-gradient(135deg, #fde8ec 0%, #ffffff 100%);
    border: 1px solid var(--brand-red-light);
    border-left: 5px solid var(--brand-red);
    border-radius: var(--radius-md);
    padding: 20px 25px;
}
