/* Styling Khusus Halaman Kontak */
.contact-section {
    padding-top: 50px;
    padding-bottom: 80px;
}

.contact-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.contact-info {
    display: block;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

/* Container Utama */
.contact-section {
    position: relative;
    padding-bottom: 80px;
    background-color:#fff3fd ; /* Warna terang bersih */
}

/* Judul & Tagline */
.contact-header-wrapper {
    text-align: center;
    padding: 60px 0 40px;
}

.contact-main-title {
    color: #143deb;
    font-size: 3.8rem;
    font-family: 'Serif', serif;
    font-weight: 800;
    margin-bottom: 5px;
}

.contact-tagline {
    color: #000811;
    font-size: 1.3rem;
    font-weight: 400;
}

/* Kartu Kontak Sederhana */
.contact-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.contact-card {
    background: #432281;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 15px;
    width: 280px;
    text-align: center;
    transition: 0.3s;
}

.btn-contact-simple {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: #fffb07;
    color: #0d2a4a;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Feedback Area (Gaya Gambar Baru) */
.feedback-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0,0,0,0.05);
}

.feedback-info-side {
    background: #0d2a4a; /* Biru kabinet */
    color: #fff;
    padding: 60px;
}

.feedback-info-side h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin: 20px 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.detail-icon {
    background: #143deb;
    color: #fafafa;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-form-side {
    padding: 60px;
}

.feedback-form-side h2 {
    color: #0d2a4a;
    margin-bottom: 25px;
    font-family: 'Serif', serif;
}

/* Form Styles */
.form-row { display: flex; gap: 20px; }
.input-group { margin-bottom: 20px; flex: 1; }
.input-group label { display: block; font-weight: bold; margin-bottom: 8px; color: #333; }
.input-group input, .input-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #f9f9f9;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.btn-action {
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-action.wa { background: #25D366; } /* Mengikuti warna tombol di gambar */
.btn-action.email { background: #143deb; }

/* Responsivitas */
@media (max-width: 850px) {
    .feedback-grid { grid-template-columns: 1fr; }
    .contact-main-title { font-size: 2.8rem; }
    .form-row { flex-direction: column; gap: 0; }
}

/* Update Background agar lebih modern ala React Bits */
.contact-page {
    background: radial-gradient(circle at top right, #143deb, #143deb);
    min-height: 100vh;
}

/* Container Putih dengan transparansi halus */
.contact-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px 50px 0 0;
    padding: 80px 20px;
    margin-top: 40px;
    box-shadow: 0 -20px 40px rgba(0,0,0,0.2);
}

/* Kartu Kontak ala React Bits */
.contact-card {
    background: #ffffff;
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 24px;
    padding: 40px 25px;
    width: 300px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Efek Hover: Kartu Terangkat & Glow */
.contact-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.15);
    border-color: #143deb;
}

/* Animasi Icon Mengambang */
.card-icon {
    font-size: 3.5rem;
    color: #0d2a4a;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.contact-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    color: #143deb;
}

/* Button Modern */
.btn-contact {
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3)\;
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.btn-contact:hover::before {
    left: 100%;
}

/* Styling Section Feedback Baru */
.feedback-section {
    margin-top: 80px;
    border-top: 1px solid #eee;
    padding-top: 60px;
}

.feedback-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Sisi Info (Kiri) */
.feedback-info-side {
    background: linear-gradient(rgba(13, 42, 74, 0.85), rgba(13, 42, 74, 0.95)), 
                url('../assets/arbo.jpg'); /* Pastikan ganti dengan path gambar Anda */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-tagline {
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.feedback-info-side h2 {
    font-size: 2.2rem;
    margin: 20px 0;
    line-height: 1.2;
}

.info-item-list {
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.info-icon {
    background: #143deb;
    color: #143deb;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-text strong {
    display: block;
    font-size: 1.1rem;
}

/* Sisi Form (Kanan) */
.feedback-form-side {
    background: #fdfdfd;
    padding: 60px;
}

.feedback-form-side h2 {
    color: #0d2a4a;
    font-size: 2rem;
    margin-bottom: 30px;
    font-family: 'Serif', serif;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #0d2a4a;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f1f3f5;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #143deb;
    background: #fff;
}

/* Styling Tombol dengan Ikon */
.btn-send {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Jarak antara ikon dan teks */
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.9rem;
}

/* Warna Hijau WhatsApp */
.wa-btn {
    background-color: #25D366;
    color: white;
}

.wa-btn:hover {
    background-color: #1eb954;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Warna Biru/Gelap untuk Email */
.email-btn {
    background-color: #0d2a4a;
    color: white;
}

.email-btn:hover {
    background-color: #1a3a5f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 42, 74, 0.3);
}

/* Penyesuaian ikon di dalam tombol */
.btn-send i {
    font-size: 1.2rem;
}

/* Responsif untuk Mobile */
@media (max-width: 992px) {
    .feedback-grid {
        grid-template-columns: 1fr;
    }
    .feedback-info-side, .feedback-form-side {
        padding: 40px 25px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}


