/* ========================================= */
/* CSS KHUSUS UNTUK HALAMAN CONTACT          */
/* ========================================= */

.contact-section {
    padding-top: 1rem;
    max-width: 600px; /* Dipersempit sedikit agar terlihat rapi seperti Linktree */
    margin: 0 auto;
}

/* --- Header Section --- */
.contact-header {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.contact-banner {
    width: 100%;
    max-height: 180px;
    max-width: 180px;
    /* object-fit: cover;*/
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 2rem;
    color: #111;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* --- Grid Card Sosial Media --- */
.social-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Base style untuk Card */
.social-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.05rem;
    /* Efek transisi yang sangat halus */
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

/* Efek teks saat di hover */
.social-card:hover {
    background-color: #005f73;
    color: white;
    border-color: #005f73;
}

/* Animasi Panah Kanan */
.arrow {
    font-size: 1.2rem;
    color: whitesmoke;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-card:hover .arrow {
    transform: translateX(5px); /* Panah bergeser ke kanan saat di-hover */
    color: white;
}

/* --- Responsive Khusus Contact --- */
@media (max-width: 768px) {
    .contact-header {
        padding: 1.5rem;
    }
    
    .social-card {
        padding: 1rem 1.2rem;
    }
}