footer {
    background-color: #f084a2;
    color: #fff;
}

section{
    overflow: hidden !important;
}

footer .icon-medsos {
    font-size: 15px;
    background-color: #fff;
    color: #f084a2;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

footer .icon-medsos:hover {
    background-color: #f084a2;
    color: #fff;
    border: 2px solid #fff;
}

nav .btn-primary {
    background-color: #f084a2 !important;
    border: 2px solid #f084a2 !important;
    color: #fff !important;
}

.fixed-top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@font-face {
    font-family: "ABeeZee";
    src: url("../../../fonts/ABeeZee/ABeeZee-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body {
    padding-top: 60px;
    font-family: "ABeeZee", sans-serif !important;
}

#ask-admin .btn {
    background-color: #ffffff;
    border: 2px solid #25D366;
    color: #25D366;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

#ask-admin .btn:hover {
    background-color: #25D366;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

#ask-admin .btn .fa {
    font-size: 2.2rem !important;
}

/* Warna dasar soft pink untuk accordion */
#faq .accordion-item {
    border: none;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

#faq .accordion-button {
    background-color: #fbdce4;
    /* soft pink */
    color: #333;
    font-weight: 600;
    border-radius: 12px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#faq .accordion-button:not(.collapsed) {
    background-color: #f084a2;
    /* pink tua untuk aktif */
    color: #fff;
    box-shadow: none;
}

#faq .accordion-button:focus {
    box-shadow: none;
    outline: none;
}

/* Ubah ikon panah agar lebih elegan */
#faq .accordion-button::after {
    filter: brightness(0.5);
    transition: transform 0.3s ease;
}

#faq .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
    filter: brightness(1.5);
}

#faq .accordion-body {
    background-color: #fff0f4;
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    padding: 1rem 1.25rem;
    border-radius: 0 0 12px 12px;
}

.custom-toggler {
    background-color: transparent;
    margin: 0px 5px;
}

.custom-toggler:focus {
    box-shadow: none;
}

.navbar-brand{
    color: #f084a2;
}

.navbar-toggler {
    padding: 0 !important;
    z-index: 1001;
}

.navbar-toggler #menu_checkbox {
    display: none;
}

.navbar-toggler label {
    display: block;
    width: 40px;
    height: 36px;
    cursor: pointer;
    position: relative;
    border: 2px solid #f084a2;
    border-radius: 6px;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.navbar-toggler label div {
    position: absolute;
    left: 3px;
    width: 30px;
    height: 3px;
    background-color: #f084a2;
    border-radius: 2px;
    transition: 0.4s ease;
}

.navbar-toggler label div:first-child {
    top: 5px;
}

.navbar-toggler label div:nth-child(2) {
    top: 15px;
}

.navbar-toggler label div:last-child {
    top: 25px;
}

.navbar-toggler #menu_checkbox:checked+label {
    background-color: #f084a2;
}

.navbar-toggler #menu_checkbox:checked+label div {
    background-color: #fff;
}

.navbar-toggler #menu_checkbox:checked+label div:first-child {
    transform: rotate(45deg);
    top: 15px;
}

.navbar-toggler #menu_checkbox:checked+label div:nth-child(2) {
    opacity: 0;
}

.navbar-toggler #menu_checkbox:checked+label div:last-child {
    transform: rotate(-45deg);
    top: 15px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    word-break: break-word;
}

.footer-contact i {
    flex-shrink: 0;
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(44, 165, 0, 0.2);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(0, 118, 22, 0.448);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(2, 120, 30, 0);
    }
    
}

.admin-contact {
    animation: shadow-pulse 2s infinite;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: #fff;
    border-radius: 30px;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.admin-contact:hover {
    background-color: #1ebc59;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.admin-contact i {
    font-size: 22px;
}

.pagination {
    --bs-pagination-color: #f48fb1;
    --bs-pagination-hover-color: #fff;
    --bs-pagination-hover-bg: #f48fb1;
    --bs-pagination-hover-border-color: #f48fb1;
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: #c2185b;
    --bs-pagination-active-border-color: #c2185b;
    --bs-pagination-border-color: #f48fb1;
    --bs-pagination-focus-box-shadow: none;
}