/* --- CSS LAYOUT FOOTER UTAMA --- */
.public-footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 60px 5% 20px 5%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 4px solid #5F9AEA;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
}

/* --- BRAND SECTION --- */
.footer-logo-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo-title img {
    height: 55px;
    width: auto;
}

.footer-logo-title h3 {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
    font-weight: 700;
}

.footer-logo-title h3 span {
    color: #5F9AEA; /* Highlight biru utama pada nama FX Seda */
    font-size: 1rem;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #94a3b8;
}

/* --- KONTEN & DETAIL INFO --- */
.public-footer h4 {
    color: #ffffff;
    font-size: 1.15rem;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
    font-weight: 600;
}

.public-footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #5F9AEA; /* Garis bawah biru utama di setiap judul section footer */
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-list .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-list .contact-item i {
    color: #5F9AEA; /* Ikon berwarna biru utama */
    font-size: 1rem;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.footer-contact-list .contact-item span {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --- TOMBOL DAFTAR ANGGOTA DI FOOTER --- */
.btn-footer-daftar {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03) !important; /* Latar tipis elegan */
    color: #ffffff !important;
    padding: 11px 22px !important;
    border-radius: 8px !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    border: 1.5px solid rgba(95, 154, 234, 0.4) !important; /* Border tipis warna biru utama */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    z-index: 1;
}

/* Efek Animasi Kilatan Cahaya (Glow Efek) */
.btn-footer-daftar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: none;
    z-index: -1;
}

/* --- ANIMASI HOVER PROFESIONAL --- */
.btn-footer-daftar:hover {
    color: #ffffff !important;
    background: #5F9AEA !important; /* Berubah penuh menjadi Warna Biru Utama Anda */
    border-color: #5F9AEA !important;
    transform: translateY(-3px); /* Naik sedikit mirip icon medsos Anda */
    box-shadow: 0 6px 20px rgba(95, 154, 234, 0.4); /* Efek pendaran cahaya biru */
}

/* Trigger Kilatan Cahaya Berjalan Saat Disentuh */
.btn-footer-daftar:hover::before {
    left: 100%;
    transition: all 0.6s ease;
}

/* Sedikit animasi mikro pada ikon user di dalamnya */
.btn-footer-daftar i {
    transition: transform 0.3s ease;
    color: #5F9AEA; /* Default ikon mengikuti warna biru utama */
}

.btn-footer-daftar:hover i {
    transform: scale(1.15) rotate(5deg);
    color: #ffffff; /* Saat di-hover ikut menjadi putih bersih */
}

/* --- MEDIA SOSIAL DENGAN IDENTITAS WARNA BRANDING --- */
.footer-social-section p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 20px;
}

.social-medias {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease, box-shadow 0.3s ease;
}

/* Gradient Cantik & Solid Sesuai Aplikasi Masing-Masing */
.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.facebook {
    background-color: #1877f2;
}

.social-icon.youtube {
    background-color: #ff0000;
}

/* Hover Animasi Membal Berkelas */
.social-icon:hover {
    transform: translateY(-5px) scale(1.08);
    filter: brightness(1.15);
    box-shadow: 0 8px 15px rgba(95, 154, 234, 0.3);
}

/* --- WATERMARK / COPYRIGHT BOTTOM --- */
.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #1e293b;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

/* --- LAYOUT RESPONSIVE --- */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .public-footer h4::after {
        left: 0;
    }
}