/* =========================================
   CUSTOM FOOTER STYLING 
   ========================================= */

.site-footer-custom {
    /* Gradien biru tua navy ke hitam */
    background: linear-gradient(to bottom, #01143f, #14161a);
    color: #a0a5b0;
    position: relative;
}

.site-footer-custom a {
    color: #a0a5b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer-custom a:hover {
    color: #ffffff;
}

/* Header Links (Contact & Phone) */
.header-contact-links a {
    font-size: 15px;
    font-weight: 500;
}

/* Search Bar Footer */
.search-container {
    max-width: 400px;
}

.search-container .search-input {
    padding-left: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #ffffff;
    border: none;
    font-size: 14px;
}

.search-container .search-input:focus {
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.search-container .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 4;
}

/* Dividers */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 0;
}

/* Links List */
.footer-links li {
    margin-bottom: 12px;
    font-size: 0.9rem;
}

/* Social Media Box Icons */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #8c92a0;
    color: #01143f;
    border-radius: 4px; /* Sudut sedikit membulat seperti pada gambar */
    margin-right: 10px;
    font-size: 15px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.footer-social a:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
}

/* Bottom Text */
.footer-bottom-text {
    font-size: 0.8rem;
}

.text-muted-light {
    color: #8c92a0;
}

/* Floating Chat Icon */
.floating-chat-btn {
    position: fixed; /* Fixed agar selalu ikut saat di-scroll */
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #e3000f; /* Warna Merah Crown */
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.floating-chat-btn:hover {
    background-color: #b3000b;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .search-container {
        max-width: 100%;
    }
    .header-contact-links {
        margin-top: 15px;
    }
}