.banner {
    text-align: center;
    margin-top: 75px;
}

.main-bunner-img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.section-main-bunner.section-main-bunner-filter:before {
    background: none;
}

.section-main-bunner {
    height: auto;
    min-height: auto;
    aspect-ratio: 2/1;
}

.text-opacity-80 {
    opacity: 1;
    font-size: 18px;
    text-align: justify;
    margin-top: 10px;
}

.section-lg {
    padding: 20px 0;
}


/* Căn chỉnh và phong cách cho nút gọi Zalo và chat Facebook */
.contact-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.contact-buttons a {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.contact-buttons a:hover {
    transform: scale(1.1);
}

.contact-buttons img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Màu nền tùy chỉnh cho các nút */
.zalo-btn {
    background-color: #0084ff; /* Màu nền Zalo */
}

.facebook-btn {
    background-color: #1877f2; /* Màu nền Facebook */
}

.info-content {
    font-size: 17px;
    margin-top: 10px;
}

.intro-wrap {
    margin-top: 20px;
}

.footer-minimal {
    padding-bottom: 20px;
    padding-top: 20px;
}

.contact-info {
    text-align: left;
}

.footer-minimal .rights {
    margin-top: 10px;
}

.order-form {
    display: none;
}

.order-form-active .section-transform-top {
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    width: 50%;
    z-index: 3;
    margin: auto;
}

.overlay-loadding {
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2;
}

.box-booking {
    padding: 25px;
}

.form-booking-close {
    position: absolute;
    right: 15px;
    top: 0;
    cursor: pointer;
}

.order-btn {
    background: aquamarine;
}

.order-img:hover {
    transform: scale(1.1); /* Phóng to ảnh khi hover */
    transition: transform 0.3s ease; /* Hiệu ứng mượt khi hover */
}


.rd-navbar-classic.rd-navbar-static {
    background: #323232;
}

.rd-navbar-classic.rd-navbar-static .rd-navbar-main, .rd-navbar-classic.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-main, .rd-navbar-classic.rd-navbar-static.rd-navbar--is-clone .rd-navbar-main {
    padding: 10px 0;
}

.rd-navbar-classic.rd-navbar-static .rd-navbar-brand img {
    height: 57px;
}

.rd-navbar-static .rd-nav-link {
    font-size: 18px;
}


.logo-fa {
    font-size: 24px;
    color: #fff;
    margin-right: 5px;
}

.alert-success {
    color: #fff;
    font-size: 24px;
    background: green;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    50% {
        transform: translateX(5px);
    }
    75% {
        transform: translateX(-5px);
    }
}

/* Hiệu ứng pulse (phóng to, thu nhỏ) */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Áp dụng cả hai hiệu ứng cho hình ảnh */
.order-img {
    animation: shake 1s infinite, pulse 1s infinite;
}

.mobile-number-wrap {
    display: none;
    align-items: center;
    padding-left: 10px;
}

.mobile-phone-link {
    font-size: 18px;
    padding-left: 6px;
}

@media (min-width: 992px) {
    .section-main-bunner {
        aspect-ratio: 4/1;
    }
}

@media (max-width: 767px) {
    .contact-buttons {
        flex-direction: row;
        bottom: 6px;
        left: 0;
        justify-content: center;
        top: inherit;
        transform: none;
        right: 0;
    }

    .mobile-number-wrap {
        display: flex;
    }

    .contact-item {
        margin: 0;
    }

    .contact-info {
        margin-bottom: 10px;
    }

    .order-form-active .section-transform-top {
        top: 20%;
        width: 100%;
    }

    .box-booking {
        padding: 10px;
    }

    .rd-navbar-fixed .rd-nav-link {
        display: inline-block;
    }

    .banner {
        margin-top: 0;
    }

    .alert-success {
        font-size: 24px;
    }

    .mobile-phone-link.order-btn {
        background: inherit;
    }

    i.logo-fa.fa.fa-cart-plus {
        margin-left: 10px;
    }
}