/* ==========================================================================
   KONTAK - COMPACT ACADEMIC EDITORIAL STYLE (TIMES NEW ROMAN)
   ========================================================================== */

:root {
    --navy-deep: #0D1B2A;
    --blue-royal: #1B263B;
    --blue-accent: #2B3A4A;
    --gold-accent: #D4AF37;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    
    /* Font Times New Roman untuk Heading dan Body */
    --font-heading: 'Times New Roman', Times, serif;
    --font-body: 'Times New Roman', Times, serif;
}

body {
    font-family: var(--font-body) !important;
}

/* --- 1. COMPACT HERO HEADER & BREADCRUMB --- */
.contact-hero {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--blue-royal) 100%);
    padding: 35px 0 30px 0;
    color: var(--white);
    text-align: center;
    font-family: var(--font-body) !important;
}

.contact-hero h1 {
    font-family: var(--font-heading) !important;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

/* Styling Navigasi Breadcrumb */
.breadcrumb-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    font-family: var(--font-body) !important;
}

.breadcrumb-custom a {
    color: var(--gold-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-custom a:hover {
    color: var(--white);
}

.breadcrumb-custom span {
    color: rgba(255, 255, 255, 0.5);
}

/* --- 2. GRID KARTU INFORMASI UTAMA --- */
.contact-info {
    padding: 35px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid rgba(13, 27, 42, 0.05);
    font-family: var(--font-body) !important;
}

.info-card-link {
    text-decoration: none !important;
    display: block;
    height: 100%;
}

.info-card {
    background: var(--white);
    border: 1px solid rgba(13, 27, 42, 0.06);
    border-radius: 4px;
    padding: 20px 15px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(13, 27, 42, 0.01);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-card-link:hover .info-card {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 27, 42, 0.06);
    border-color: var(--gold-accent);
}

/* Ikon & Teks Kartu Informas */
.info-card i {
    font-size: 1.5rem;
    color: var(--gold-accent);
    margin-bottom: 10px;
}

.info-card h4 {
    font-family: var(--font-heading) !important;
    color: var(--navy-deep);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.info-card p {
    font-family: var(--font-body) !important;
    color: var(--blue-accent);
    font-size: 0.88rem;
    line-height: 1.45;
    margin: 0;
    word-break: break-word;
}

/* --- 3. SEKSI INTERAKTIF (FORM + MAP) --- */
.contact-section {
    padding: 45px 0;
    background-color: #FCFDFE;
    font-family: var(--font-body) !important;
}

.contact-section h2 {
    font-family: var(--font-heading) !important;
    color: var(--navy-deep);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 8px;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--gold-accent);
}

.contact-section p {
    font-family: var(--font-body) !important;
    color: var(--blue-accent);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* --- 4. STYLING FORMULIR --- */
.contact-section .form-control {
    font-family: var(--font-body) !important;
    font-size: 0.9rem;
    padding: 9.5px 12px;
    background-color: var(--bg-light);
    border: 1px solid rgba(13, 27, 42, 0.08);
    border-radius: 4px;
    color: var(--navy-deep);
    box-shadow: none;
    transition: all 0.25s ease;
}

.contact-section .form-control:focus {
    background-color: var(--white);
    border-color: var(--navy-deep);
    box-shadow: 0 0 0 3px rgba(13, 27, 42, 0.05);
}

.contact-section textarea.form-control {
    resize: none;
}

/* Tombol Kirim Pesan */
.contact-section .btn-primary {
    font-family: var(--font-body) !important;
    background-color: var(--navy-deep) !important;
    border: 1px solid var(--navy-deep) !important;
    color: var(--white) !important;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease !important;
}

.contact-section .btn-primary:hover {
    background-color: var(--blue-royal) !important;
    border-color: var(--blue-royal) !important;
    transform: translateY(-2px);
}

.contact-section .btn-primary i {
    font-size: 0.88rem;
}

/* --- 5. GOOGLE MAPS WRAPPER --- */
.map-box {
    width: 100%;
    height: 355px; /* Disesuaikan agar seimbang dengan tinggi area form */
    border: 1px solid rgba(13, 27, 42, 0.08);
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--bg-light);
    box-shadow: 0 4px 15px rgba(13, 27, 42, 0.02);
}

.map-box iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
}

/* --- 6. UTILITY ARCHITECTURE --- */
.alert {
    font-family: var(--font-body) !important;
    font-size: 0.88rem;
    border-radius: 4px;
    margin-bottom: 20px;
    padding: 10px 15px;
}

.alert-success {
    background-color: #E8F5E9;
    border-color: #C8E6C9;
    color: #2E7D32;
}

.alert-warning {
    background-color: #FFF8E1;
    border-color: #FFECB3;
    color: #F57F17;
}

/* --- 7. RESPONSIVITAS MULTI-DEVICE --- */
@media (max-width: 991.98px) {
    .map-box {
        height: 300px;
        margin-top: 10px;
    }
}

@media (max-width: 767.98px) {
    .contact-hero {
        padding: 30px 0;
    }
    .contact-hero h1 {
        font-size: 1.3rem;
    }
    .contact-section {
        padding: 35px 0;
    }
}