/* --- 1. SPASER & HEADER --- */
.page-top-spacer {
    /* Spacer ini menjaga agar konten tidak tertutup navbar (fixed) */
    padding-top: 70px; /* Jarak disesuaikan agar tidak terlalu jauh */
    background: #fff;
}

.contact-header {
    /* Background Polos (Gradient Halus) - TANPA Bintik/List */
    background: linear-gradient(135deg, rgba(10, 25, 41, 0.92) 0%, rgba(0, 51, 102, 0.85) 100%),
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2069');
    padding: 0.3rem 0; /* Jarak atas-bawah diperkecil (sebelumnya 3rem) */
    color: white;
    border-radius: 0 0 0rem 0rem; /* Lengkungan bawah lebih halus */
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.1);
}

.contact-header h1 {
    font-size: 1.5rem; /* Ukuran font judul diperkecil sedikit */
    font-weight: 700;
    color: white;
    /*margin-bottom: 0.5rem;*/
}

.contact-header p {
    font-size: 0.95rem; /* Ukuran font deskripsi */
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* --- 2. FORMULIR --- */
.form-container {
    background: #fff;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid #edf2f7;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    height: 100%;
}

.form-control:focus, .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

/* --- 3. PETA --- */
.map-container-small {
    height: 250px; 
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #dee2e6;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.map-container-small iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- 4. GRID CABANG --- */
.branch-box {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    padding: 0.85rem;
    height: 100%;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}
.branch-box:hover {
    border-color: #0d6efd;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.branch-city {
    font-weight: 700;
    font-size: 0.9rem;
    color: #212529;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.branch-addr {
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1.3;
    padding-left: 1.2rem; 
}