body{
    background-color: #f8f9fa;
} 



/* =================================
   Sub Header 
   ================================= */
.subheader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px; /* Dibuat lebih ramping */
    z-index: 1031; /* Paling atas */
    background: #11ACDA; /* Warna dasar lebih gelap untuk kontras */
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.subheader a {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    transition: all 0.3s ease;
}
.subheader a:hover {
    color: #fff;
}
.subheader .social-icons a {
    margin: 0 0.6rem;
}
.subheader .social-icons a:hover {
    transform: scale(1.1); /* Efek hover ikon sosial */
}
/* 1. Sembunyikan TOTAL semua elemen Google yang tidak diinginkan */
    .goog-te-banner-frame, .goog-te-gadget-simple img, img.goog-te-gadget-icon, #goog-gt-tt {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        width: 0 !important;
        position: absolute !important;
        top: -9999px !important;
        left: -9999px !important;
    }
    /* 2. Reset total posisi halaman untuk menghilangkan spasi putih */
    body {
        top: 0px !important;
        position: static !important;
    }
    html.translated-ltr, html.translated-rtl,
    html.translated-ltr body, html.translated-rtl body {
        margin-top: 0px !important;
        top: 0px !important;
    }
    /* 4. Desain Tombol Ganti Bahasa yang Baru, Unik & Modern */
    #google_translate_element {
        margin-left: 15px;
        position: relative;
        display: flex;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 25px;
        padding: 4px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }
    #google_translate_element:hover {
        background-color: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
    }
    /* Wrapper untuk Select Box Google */
    .skiptranslate.goog-te-gadget {
        display: flex !important;
        align-items: center !important;
        height: 100%;
    }
    /* Ikon Globe menggunakan SVG agar pasti muncul */
    #google_translate_element .translate-icon-wrapper {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: 6px;
        padding-left: 8px;
    }
     #google_translate_element .translate-icon-wrapper svg {
        width: 16px;
        height: 16px;
        fill: white;
    }  
    /* Styling select box */
    .goog-te-gadget .goog-te-combo {
        background-color: transparent !important;
        color: white !important;
        border: none !important;
        padding: 5px 10px 5px 0px !important; /* Disesuaikan */
        cursor: pointer;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
        font-weight: 500;
        font-size: 14px;
        -webkit-appearance: none; /* Menghilangkan style default */
        -moz-appearance: none;
        appearance: none;
        text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }
    /* Opsi di dalam dropdown */
    .goog-te-gadget .goog-te-combo option {
        color: #333;
        background-color: white;
    }
    /* 5. Mengatur menu dropdown agar tidak menutupi konten lain */
    .goog-te-menu-frame {
        z-index: 9999 !important;
        border-radius: 12px !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
        border: none !important;
        background-color: white !important;
        /* Penting: Mencegah dropdown menutupi footer */
        position: absolute !important;
        top: calc(100% + 5px) !important; /* Muncul di bawah tombol dengan sedikit jarak */
        right: 0 !important; /* Rata kanan dengan tombol */
        left: auto !important;
    }
    /* Styling item di dalam dropdown */
    .goog-te-menu2-item div, .goog-te-menu2-item:link div, .goog-te-menu2-item:visited div, .goog-te-menu2-item:active div {
        padding: 10px 15px !important;
        font-family: inherit !important;
        color: #333 !important;
        transition: all 0.2s ease-in-out;
    }
    .goog-te-menu2-item-selected div, .goog-te-menu2-item:hover div {
        background-color: #f1f1f1 !important;
        color: #0056b3 !important;
    }





/* =================================
   Main Header , (Home Page)
   ================================= */
#mainNavbar {
    margin-top: 40px;
    z-index: 1020;
    padding: 0.5rem 1rem;
    background-image: url('../../img/banner-header.png'); 
    background-size: cover;          
    background-position: center;     
    background-repeat: no-repeat;  
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#mainNavbar .navbar-brand img {
    height: 50px;
}

#mainNavbar .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

#mainNavbar .nav-link:hover {
    color: var(--primary-color);
}

#mainNavbar .nav-link.active {
    color: #11ACDA; /* Warna biru untuk link aktif */
    font-weight: 700; /* Membuat teks lebih tebal agar menonjol */
    position: relative;
}

/* Menambahkan garis bawah dekoratif pada link aktif */
#mainNavbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background-color: #11ACDA;
}




#background-canvas {
            position: absolute; /* 'fixed' akan membuatnya menutupi seluruh viewport */
            /* Gunakan 'absolute' jika Anda ingin efeknya hanya di dalam elemen tertentu */
            top: 0;
            left: 0;
            width: 1300px;
            height: 2100px;
            z-index: 1; /* Penting: Letakkan di belakang konten Anda */
        }

/* =================================
   Contact Information Section
   ================================= */

/* DIUBAH: Semua nama class diawali "informationcontactnew-" */
.informationcontactnew-contact-section {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    overflow: hidden;
    max-width: 1290px;
    max-height: 430px;
    width: 100%;
    /* DITAMBAHKAN: Margin untuk memposisikan di tengah */
    margin: 2rem auto;
    margin-bottom: -25px;
}

.informationcontactnew-contact-info {
    flex-basis: 50%;
    padding: 2.5rem 4rem;
}

.informationcontactnew-contact-info h1 {
    /* DIUBAH: Ukuran font dikecilkan */
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 0.5rem 0;
    animation: fadeInDown 0.8s ease-out forwards;
}

.informationcontactnew-contact-info p.informationcontactnew-subtitle {
    /* DIUBAH: Ukuran font dikecilkan */
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.informationcontactnew-btn-start {
    background-color: #11ACDA;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInDown 0.8s ease-out 0.4s forwards;
}

.informationcontactnew-btn-start:hover {
    background-color: #0d8cae;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(17, 172, 218, 0.2);
}

.informationcontactnew-other-contacts {
    margin-top: 2rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
    opacity: 0;
    animation: fadeInDown 0.8s ease-out 0.6s forwards;
}

.informationcontactnew-other-contacts h3 {
    /* DIUBAH: Ukuran font dikecilkan */
    font-size: 0.8rem;
    font-weight: 600;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.informationcontactnew-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}
    
.informationcontactnew-contact-item .informationcontactnew-icon {
    width: 35px;
    height: 35px;
    background-color: #e6f7ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    color: #11ACDA;
    /* DIUBAH: Ukuran font ikon dikecilkan */
    font-size: 0.9rem;
}
    
.informationcontactnew-contact-item a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.informationcontactnew-contact-item a:hover {
    color: #11ACDA;
}

.informationcontactnew-contact-illustration {
    flex-basis: 50%;
    background-color: #e6f7ff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    height: 430px;
}
    
.informationcontactnew-illustration-svg {
    width: 100%;
    max-width: 450px;
    height: auto;
}

/* --- Animasi --- */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.informationcontactnew-main-character, .informationcontactnew-plant, .informationcontactnew-cup { animation: float 4s ease-in-out infinite; }
.informationcontactnew-floating-icon { animation: float 5s ease-in-out infinite; }
.informationcontactnew-plant { animation-delay: -0.5s; }
.informationcontactnew-cup { animation-delay: -1s; }
.informationcontactnew-icon-1 { animation-delay: -1.5s; }
.informationcontactnew-icon-2 { animation-delay: -2.5s; }
.informationcontactnew-icon-3 { animation-delay: -3.5s; }
    
.informationcontactnew-steam { stroke-dasharray: 10; stroke-dashoffset: 10; animation: steam-anim 3s linear infinite; }
.informationcontactnew-eyelid { animation: blink 4s linear infinite; }
.informationcontactnew-leaf { transform-origin: bottom center; animation: sway 3s ease-in-out infinite; }
.informationcontactnew-leaf.informationcontactnew-two { animation-delay: -0.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}
    
@keyframes steam-anim { to { stroke-dashoffset: 0; opacity: 0; } }
@keyframes blink { 0%, 90%, 100% { transform: scaleY(1); } 95% { transform: scaleY(0.1); } }
@keyframes sway { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(5deg); } }


/* =================================
   Responsive Styles (Contact Section)
   ================================= */

/* Tablet Devices (e.g., iPads) */
@media (max-width: 991.98px) {
    .informationcontactnew-contact-section {
        flex-direction: column; /* Tumpuk konten secara vertikal */
        max-height: none; /* Hapus batasan tinggi */
        margin: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .informationcontactnew-contact-info,
    .informationcontactnew-contact-illustration {
        flex-basis: 100%; /* Buat kedua bagian memenuhi lebar */
        width: 100%;
    }

    .informationcontactnew-contact-info {
        padding: 2.5rem;
        text-align: center; /* Pusatkan teks */
    }

    .informationcontactnew-other-contacts {
        text-align: left; /* Kembalikan perataan teks untuk daftar kontak */
        display: inline-block; /* Membuat blok ini terpusat dengan benar */
    }

    .informationcontactnew-contact-illustration {
        height: 350px; /* Kurangi tinggi ilustrasi */
        order: -1; /* Pindahkan ilustrasi ke atas */
        border-radius: 20px 20px 0 0;
    }

     .informationcontactnew-illustration-svg {
        max-width: 380px;
    }
}

/* Mobile Devices (Phones) */
@media (max-width: 767.98px) {
    .informationcontactnew-contact-section {
        margin: 1.5rem 1rem;
        margin-bottom: 1.5rem;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    }
    
    .informationcontactnew-contact-info {
        padding: 2rem 1.5rem; /* Kurangi padding untuk layar kecil */
    }

    .informationcontactnew-contact-info h1 {
        font-size: 1.8rem; /* Perkecil judul utama */
    }

    .informationcontactnew-contact-info p.informationcontactnew-subtitle {
        font-size: 0.9rem; /* Perkecil subjudul */
    }

    .informationcontactnew-btn-start {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .informationcontactnew-contact-illustration {
        display: none; /* Sembunyikan ilustrasi di layar sangat kecil untuk fokus pada konten */
    }
}







        /* Untuk Tablet dan iPad (di bawah 1024px) */
        @media screen and (max-width: 1024px) {
            .announcement-bar {
                width: 90%; /* Sedikit lebih lebar di tablet */
            }
        }
        /* Untuk HP (di bawah 768px) */
        @media screen and (max-width: 768px) {
            .announcement-bar {
                padding: 4px;
                border-radius: 30px; /* Radius lebih kecil agar proporsional */
            }
            .announcement-icon {
                padding: 8px 12px;
                font-size: 14px;
            }
            .announcement-item {
                font-size: 12px; /* Ukuran font lebih kecil di HP */
            }
            .announcement-text-wrapper {
                height: 28px;
                line-height: 28px;
            }
        }
        /* Untuk HP yang sangat kecil (di bawah 480px) */
        @media screen and (max-width: 480px) {
            .announcement-bar {
                flex-direction: column; /* Mengubah tata letak menjadi vertikal */
                height: auto;
                padding: 10px;
                border-radius: 20px;
            }
            .announcement-icon {
                margin-bottom: 8px; /* Memberi jarak antara ikon dan teks */
            }
            .announcement-text-wrapper {
                text-align: center; /* Pusatkan teks saat tata letak vertikal */
                width: 100%;
            }
            /* Menyesuaikan ulang posisi teks untuk tata letak baru */
            .announcement-item:first-child {
                position: relative;
                transform: none;
            }
        }



/* =================================
   Contact Us Page (New Design)
   ================================= */
.page-hero {
    padding: 4rem 0;
    background-color: #0a192f;
    color: #ffffff;
    text-align: center;
}
   
/* Main Contact Section */
#contact-page {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}
#contact-page::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #11ACDA08, transparent);
    border-radius: 50%;
    z-index: 0;
}
#contact-page::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #11ACDA05, transparent);
    border-radius: 50%;
    z-index: 0;
}
.container {
    position: relative;
    z-index: 1;
}



 
/* Section Header */
.section-header {
    margin-bottom: 2rem;
}
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #11ACDA, #16c5f0);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}
.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #11ACDA, #16c5f0);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}
.section-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 860px;
    position: sticky;
    top: 120px;
}

.info-header {
    margin-bottom: 3rem;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.info-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-info-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    transition: transform 0.3s ease;
}

.contact-info-block:hover {
    transform: translateX(10px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #11ACDA, #16c5f0);
    color: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 8px 25px rgba(17, 172, 218, 0.25);
    transition: all 0.3s ease;
}

.contact-info-block:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(17, 172, 218, 0.35);
}

.info-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #11ACDA;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.availability {
    font-size: 0.85rem;
    color: #6c757d;
    font-style: italic;
}

/* Social Links */
.social-links {
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.social-links h6 {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, #11ACDA, #16c5f0);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(17, 172, 218, 0.3);
}

/* Contact Form */
.contact-form-wrapper {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #11ACDA, #16c5f0);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #6c757d;
    margin-bottom: 0;
}

.contact-form {
    max-width: 100%;
}

.form-row {
    margin-bottom: 1.5rem;
}

.form-group {
    width: 100%;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.label-icon {
    color: #6c757d;
    transition: color 0.3s ease;
}

.input-wrapper, .textarea-wrapper {
    position: relative;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-control:focus {
    border-color: #11ACDA;
    box-shadow: 0 0 0 3px rgba(17, 172, 218, 0.1);
    outline: none;
}

.form-group:focus-within .label-icon {
    color: #11ACDA;
}

.input-wrapper:focus-within .input-icon {
    color: #11ACDA;
}

textarea.form-control {
    padding: 1rem;
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.btn-submit {
    background: linear-gradient(135deg, #11ACDA, #16c5f0);
    border: none;
    color: #ffffff;
    font-weight: 700;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(17, 172, 218, 0.3);
    min-width: 200px;
    justify-content: center;
}

.btn-submit::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: left 0.6s;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(17, 172, 218, 0.4);
}

.btn-loader {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(5px);
}

/* Custom Alert Styles */
.custom-alert {
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-info-wrapper {
        position: static;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    #contact-page {
        padding: 3rem 0;
        margin-top: 70px !important;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .contact-info-block {
        margin-bottom: 2rem;
    }
    
    .icon-box {
        width: 50px;
        height: 50px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .form-header h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-submit {
        width: 100%;
        padding: 1rem 2rem;
    }
    
    .contact-info-block:hover {
        transform: none;
    }
}

/* Locations & Maps Section */
.location-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    overflow: hidden; 
    display: flex;
    flex-direction: column;
}
.location-card .map-container {
    border-radius: 0; 
    box-shadow: none;
}
.location-details {
    padding: 1.5rem;
    flex-grow: 1; /* Mendorong konten ke atas jika kartu lebih tinggi */
}
.location-details p {
    font-size: 0.9rem;
    color: #6c757d;
}
.location-details i {
    color: #11ACDA;
}


/* FAQ Accordion Styling */
#faq .accordion-item {
    background-color: #ffffff; border: 1px solid #eef0f3;
    border-radius: 12px !important; margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
#faq .accordion-button {
    border-radius: 12px !important; font-weight: 600; color: #212529;
}
#faq .accordion-button:not(.collapsed) {
    background-color: #11ACDA; color: #ffffff;
    box-shadow: none;
}
#faq .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(17, 172, 218, 0.25);
}
#faq .accordion-button::after {
    content: "+"; font-size: 1.5rem;
    background-image: none; font-weight: 300;
    transition: transform 0.3s ease-in-out;
}
#faq .accordion-button:not(.collapsed)::after {
    content: "−"; transform: rotate(180deg);
}










/* =================================
   Footer , (Home Page)
   ================================= */
.site-footer {
    font-size: 0.9rem;
    color: #333; /* Warna teks utama di footer */
}
.footer-top {
    background-color: #ffffffff; /* Warna abu-abu muda seperti di gambar */
    padding: 2rem 0;
}
.footer-logo {
    max-height: 65px;
}
.footer-about {
    line-height: 1.6;
}
.footer-heading {
    font-family: 'Times New Roman', Times, serif; 
    font-weight: 700;
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1.5rem;
}
.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}
.footer-contact .contact-item i {
    color: var(--secondary-color); 
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
    width: 25px; 
}
.footer-contact .contact-item h5 {
    margin-bottom: 0.3rem;
}
.footer-contact .contact-item p {
    margin: 0;
    line-height: 1.5;
}
.footer-links {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.7rem;
}
.footer-links a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px; 
}

/* =================================
   SubFooter CR , (Home Page)
   ================================= */
.footer-bottom {
    background-color: #11acda; /* Warna biru muda seperti di gambar */
    padding: 0.5rem 0;
    text-align: center;
    font-weight: 500;
    color: white;
}




/* -- Announcement Bar -- */
    .announcement-bar {
        display: flex;
        align-items: center;
        justify-content: center; /* teks di tengah */
        background-color: #2D3748;
        border-radius: 50px;
        padding: 5px;
        overflow: hidden;
        width: 1300px;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
        margin: 0px auto; /* auto left-right membuat kotak di tengah */
    }

    .announcement-icon {
        flex-shrink: 0; /* Mencegah icon mengecil */
        background-color: #11ACDA; /* Warna utama sesuai permintaan */
        color: white;
        padding: 10px 14px;
        border-radius: 50%; /* Membuat icon bulat sempurna */
        font-size: 16px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        z-index: 2; /* Memastikan icon di atas teks */
    }

    .announcement-text-wrapper {
        flex-grow: 1; /* Mengisi sisa ruang */
        overflow: hidden; /* Menyembunyikan teks yang keluar dari area ini */
        position: relative;
        height: 30px; /* Sesuaikan dengan tinggi bar */
        line-height: 30px; /* Vertically center the text */
    }

    /* Gaya untuk setiap item pengumuman */
    .announcement-item {
        position: absolute;
        white-space: nowrap; /* Mencegah teks turun ke baris baru */
        font-size: 14px;
        margin: 0;
        will-change: transform;
        transform: translateX(110%); /* Posisi awal di luar layar kanan */
        visibility: hidden; /* Sembunyikan item yang tidak aktif */
        /* Transisi akan ditambahkan oleh JavaScript */
    }

        /* -- Penambahan CSS untuk Responsivitas -- */

        /* Untuk Tablet dan iPad (di bawah 1024px) */
        @media screen and (max-width: 1024px) {
            .announcement-bar {
                width: 90%; /* Sedikit lebih lebar di tablet */
            }
        }
        /* Untuk HP (di bawah 768px) */
        @media screen and (max-width: 768px) {
            .announcement-bar {
                padding: 4px;
                border-radius: 30px; /* Radius lebih kecil agar proporsional */
            }
            .announcement-icon {
                padding: 8px 12px;
                font-size: 14px;
            }
            .announcement-item {
                font-size: 12px; /* Ukuran font lebih kecil di HP */
            }
            .announcement-text-wrapper {
                height: 28px;
                line-height: 28px;
            }
        }
        /* Untuk HP yang sangat kecil (di bawah 480px) */
        @media screen and (max-width: 480px) {
            .announcement-bar {
                flex-direction: column; /* Mengubah tata letak menjadi vertikal */
                height: auto;
                padding: 10px;
                border-radius: 20px;
            }
            .announcement-icon {
                margin-bottom: 8px; /* Memberi jarak antara ikon dan teks */
            }
            .announcement-text-wrapper {
                text-align: center; /* Pusatkan teks saat tata letak vertikal */
                width: 100%;
            }
            /* Menyesuaikan ulang posisi teks untuk tata letak baru */
            .announcement-item:first-child {
                position: relative;
                transform: none;
            }
        }




        


/* =================================
   Warning Pop Up Mobile Device
================================= */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.popup-overlay.show {
    display: flex;
    opacity: 1;
}
.popup-content {
    position: relative;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    max-width: 500px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out;
    text-align: center;
}
.popup-content h3 {
    color: #333;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
}
.popup-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px; /* Added some space before the image */
}
.popup-overlay.show .popup-content {
    transform: scale(1);
}
.popup-example-image {
    max-width: 80%; /* Make image slightly smaller than the popup width */
    height: auto;
    margin-top: 15px; /* Space between text and image */
    border: 1px solid #ddd; /* Light grey border */
    border-radius: 4px;
}
.popup-close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    background: #11ACDA;
    color: #ffffff;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, background-color 0.2s ease;
}
.popup-close-btn:hover {
    transform: scale(1.1);
    background-color: #0e8aab;
}