/* =========================================
   1. GLOBAL & BACKGROUND
   ========================================= */
body {
    /* Mengambil gambar dari folder images/media relative terhadap file css ini */
    background-image: url('../images/media/menu-bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #f9f9f9;
    min-height: 100vh;
    font-family: "Plus Jakarta Sans", sans-serif;
}

/* Navbar agak transparan agar background terlihat samar */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-icon-link {
    display: flex;
    align-items: center;
    padding: 5px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-icon-link:hover {
    opacity: 0.8;
}

/* =========================================
   2. WIDGET WHATSAPP FLOATING
   ========================================= */
.wa-widget-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: 'Roboto', sans-serif;
}

.wa-chat-bubble {
    background: white;
    padding: 12px 20px;
    border-radius: 20px 20px 0 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    margin-right: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: 1px solid #f0f0f0;
    animation: floatUp 0.5s ease-out;
}

.wa-button-group {
    position: relative;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    transition: transform 0.3s;
}

.wa-button-group:hover {
    transform: scale(1.05);
}

.cs-image {
    height: 210px;
    position: absolute;
    right: 50px;
    bottom: 57px;
    z-index: 1;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.2));
}

.wa-icon-circle {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    position: relative;
    z-index: 101;
    border: 2px solid #fff;
}

.wa-icon-circle i {
    color: white;
    font-size: 32px;
}

@keyframes floatUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   3. FOOTER & SEPARATOR (PEMISAH)
   ========================================= */
.footer-custom {
    background-color: #EDE3CB;
    color: #4a4a4a;
    font-size: 14px;
    padding-top: 60px;
    margin-top: auto;
    
    /* --- EFEK PEMISAH (SEPARATOR) --- */
    border-top: 6px solid #ffffff; /* Garis putih tebal */
    box-shadow: 0 -4px 10px rgba(0,0,0,0.05); /* Bayangan halus ke atas (Emboss) */
    position: relative;
}

/* Opsional: Efek Lengkungan di tengah (seperti kertas disobek) - matikan jika tidak suka */
/* .footer-custom::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.05));
} */

.footer-heading {
    color: #335B4B;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    font-size: 20px;
    font-family: Merriweather, serif;
}

.footer-judul {
    color: #325B2C;
    font-weight: 400;
    font-size: 16px;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.footer-desc {
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 20px;
}

.footer-link {
    color: #4a4a4a;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #f26522;
    padding-left: 5px;
}

.payment-icon {
    height: 30px;
    margin-right: 5px;
    margin-bottom: 5px;
    background: white;
    padding: 3px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.social-icon-img {
    height: 32px;
    width: auto;
    margin-right: 12px;
    transition: transform 0.2s;
}

.social-icon-img:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 25px 0;
    margin-top: 40px;
}

/* =========================================
   4. SWIPER SLIDER FIX
   ========================================= */
.swiper {
    width: 100%;
    overflow: hidden;
    padding-bottom: 50px;
}
.swiper-wrapper {
    display: flex;
}
.swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}
.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #f26522 !important;
}