/* assets/css/contact.css - SAFE REDESIGN */

/* 1. HERO SECTION (Merah Marun & Teks Putih) */
.contact-hero {
    background-color: #800000; /* Warna Merah DeBosara */
    color: white;
    padding: 120px 0 80px; /* Padding atas besar biar gak ketabrak navbar */
    text-align: center;
    position: relative;
}

.contact-hero h1 {
    font-size: 3rem; 
    font-weight: 900; 
    margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.contact-hero p {
    font-size: 1.1rem; 
    opacity: 0.95; 
    max-width: 700px; 
    margin: 0 auto;
    line-height: 1.6;
}

/* 2. LAYOUT UTAMA (Background Cream) */
.contact-section {
    padding: 80px 0;
    background-color: #FAF5E6; /* Cream lembut khusus area ini */
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Kiri Kecil (Info), Kanan Besar (Form) */
    gap: 60px;
    align-items: start;
}

/* 3. KOLOM KIRI: INFO KONTAK */
.info-group { margin-bottom: 40px; }

.info-title {
    font-size: 1.3rem; 
    color: #800000; 
    font-weight: 800;
    margin-bottom: 25px; 
    display: flex; align-items: center; gap: 10px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}
.info-title i { color: #D4AF37; } /* Ikon Emas */

.info-item {
    display: flex; gap: 20px; margin-bottom: 25px;
}

.info-icon {
    width: 50px; height: 50px; 
    background: white; 
    border-radius: 50%;
    color: #800000; 
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
    flex-shrink: 0;
    border: 1px solid #eee;
}

.info-text h5 {
    font-size: 1rem; color: #333; font-weight: 700; margin-bottom: 5px;
}
.info-text p {
    font-size: 0.95rem; color: #666; line-height: 1.6;
}

/* 4. KOLOM KANAN: FORMULIR (Putih Bersih) */
.contact-form-box {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); /* Bayangan Premium */
    border: 1px solid rgba(0,0,0,0.02);
}

.form-group { margin-bottom: 25px; }

.form-label {
    display: block; font-weight: 700; color: #444; margin-bottom: 10px; font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    background: #fcfcfc;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem; color: #333;
    transition: 0.3s;
}

.form-input:focus {
    background: white;
    border-color: #800000;
    outline: none;
    box-shadow: 0 0 0 4px rgba(128, 0, 0, 0.1); /* Efek fokus merah halus */
}

textarea.form-input { 
    resize: vertical; 
    min-height: 150px; 
}

/* Tombol Kirim */
.btn-submit {
    width: 100%;
    padding: 18px;
    background: #800000; 
    color: white;
    border: none; 
    border-radius: 10px;
    font-weight: 800; 
    font-size: 1.1rem;
    cursor: pointer; 
    transition: 0.3s;
    margin-top: 10px;
    display: flex; justify-content: center; align-items: center; gap: 10px;
}

.btn-submit:hover {
    background: #600000; 
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(128, 0, 0, 0.25);
}

/* 5. MAP */
.map-section {
    height: 450px; width: 100%; margin-bottom: -10px;
    filter: grayscale(10%); /* Sedikit abu biar elegan */
    border-top: 5px solid #800000;
}

/* RESPONSIVE HP */
@media (max-width: 992px) {
    .contact-wrapper { grid-template-columns: 1fr; gap: 50px; }
    .contact-info-box { order: 2; } /* Form duluan di HP */
    .contact-form-box { order: 1; padding: 30px; }
    .contact-hero { padding: 100px 0 60px; }
}