.navbar .nav-link {
    color: #ffffff;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #ffc107;
    font-weight: 500;
    text-decoration: none;
}

.navbar .dropdown-menu {
    transition: all 0.2s ease;
    min-width: 10rem;
}

.navbar .dropdown-item {
    transition: all 0.2s ease;
    font-weight: 500;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item.active {
    background-color: #ffc107;
    color: #000 !important;
    font-weight: 500;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container-fluid {
    flex: 1;
}

.content {
    padding: 20px;
}

/* Page Banner */
.page-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.breadcrumb {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    background: transparent !important;
    position: relative;
    z-index: 2;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">" !important;
    padding: 0 8px !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.breadcrumb-item a {
    color: #fff !important;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.breadcrumb-item a:hover {
    color: #f1c40f !important;
}

.breadcrumb-item.active {
    color: #ffffff !important;
    font-weight: 600 !important;
    z-index: 2;
}

/* FOOTER */
.footer a {
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #ffc107 !important;
    font-weight: 600;
}

.logo-wrapper-lg {
    text-align: center !important;
    margin-bottom: 1rem !important;
}

.logo-wrapper-lg .footer-logo {
    height: 100px !important;
    max-height: 120px !important;
    width: auto !important;
    object-fit: contain !important;
}

.footer-logo-col .footer-logo {
    max-width: 160px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer-logo-col .social-icons a {
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-logo-col .social-icons a:hover {
    color: #ffc107 !important;
    transform: translateY(-3px);
}

.footer-logo-col {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 1.5rem;
}

.border-end-custom {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 1.5rem;
}

@media (max-width: 767px) {
    .border-end-custom {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    .footer-logo-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
}

.footer-separator {
    width: 50%;
    margin: 1.5rem auto;
}

/* BTN SCROLL TOP */
.scroll-top-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    color: #0d6efd;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    animation: floatUpDown 2s ease-in-out infinite alternate;
}

.scroll-top-btn.hide {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    animation: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.scroll-top-btn:hover {
    background: #ffc107;
    color: black;
    transform: scale(1.1);
}

.scroll-top-btn.hide:hover {
    transform: none;
}

@media (max-width: 1078px) {
    .scroll-top-btn {
        position: fixed;
        bottom: 100px;
        right: 20px;
        top: auto;
    }
}

@media (max-width: 576px) {
    .scroll-top-btn {
        width: 40px;
        height: 40px;
        bottom: 100px;
        right: 15px;
    }

    .scroll-top-btn i {
        font-size: 1.1rem;
    }
}

/* BTN WHATSAPP */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 1054;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
}

.whatsapp-btn.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    animation: floatUpDown 2s ease-in-out infinite alternate;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

.whatsapp-btn:hover {
    background: #1ebe5b;
    transform: scale(1.1);
}

.whatsapp-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 70px;
    bottom: 50%;
    transform: translateY(50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.whatsapp-btn::before {
    content: "";
    position: absolute;
    left: 60px;
    bottom: 50%;
    transform: translateY(50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.whatsapp-btn:hover::after,
.whatsapp-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1078px) {
    .whatsapp-btn {
        position: fixed;
        bottom: 100px;
        right: 20px;
        top: auto;
    }
}

@media (max-width: 576px) {
    .whatsapp-btn {
        width: 40px;
        height: 40px;
        font-size: 22px;
        bottom: 100px;
        left: 15px;
    }

    .whatsapp-btn::after {
        font-size: 12px;
        left: 60px;
    }

    .whatsapp-btn::before {
        left: 50px;
    }
}
