/* CSS KHUSUS HALAMAN KONTAK */

/* Hero Section Kontak (Nuansa Navy/Dark Blue) */

/* Global Section */
.kontak-section {
    padding: 60px 0 0; /* padding bottom 0 karena map di bawah */
    background-color: #f8fafc;
}

/* Grid Dua Kolom (Info & Form) */
.kontak-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
@media (min-width: 1024px) {
    .kontak-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

/* Kolom Kiri: Kartu Informasi */
.kontak-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.08); /* navy shadow */
}
.info-icon {
    width: 50px; height: 50px;
    background: #eff6ff; /* blue-50 */
    color: #1e40af; /* blue-800 */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.info-content p {
    font-size: 15px;
    color: var(--slate);
    line-height: 1.6;
}

/* Social Media Box */
.social-box {
    margin-top: 20px;
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
}
.social-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 16px;
}
.social-links {
    display: flex;
    gap: 12px;
}
.social-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--slate);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.social-icon:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-3px);
}

/* Kolom Kanan: Form Pesan */
.kontak-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}
.kontak-form-card h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.kontak-form-card p {
    color: var(--slate);
    font-size: 15px;
    margin-bottom: 24px;
}
.form-group {
    margin-bottom: 20px;
}
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.form-control {
    width: 100%;
    padding: 14px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    color: var(--charcoal);
    transition: all 0.3s;
    font-family: inherit;
}
.form-control:focus {
    outline: none;
    background: white;
    border-color: #3b82f6; /* blue-500 */
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
textarea.form-control {
    resize: vertical;
    min-height: 120px;
}
.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
}

/* Full Width Map Section */
.map-section {
    width: 100%;
    height: 450px;
    position: relative;
    background: #e2e8f0; /* placeholder color */
}
.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}