.btn-rezervasyon-luxury {
    background: #F8F4E9; /* Light cream background */
    border: 1px solid #D2BD7F; /* Gold border */
    border-radius: 8px;
    padding: 12px 30px;
    color: #D2BD7F; /* Gold text */
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(210, 189, 127, 0.2); /* Gold-tinted shadow */
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    height: 60px;
    line-height: normal;
    margin-left: 15px;
    position: relative;
    prank: 0;
}

.btn-rezervasyon-luxury .text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-rezervasyon-luxury .main-text {
    font-size: 13px;
    font-weight: 600;
}

.btn-rezervasyon-luxury .sub-text {
    font-size: 10px;
    font-weight: 400;
    color: #D2BD7F; /* Gold sub-text */
}

.btn-rezervasyon-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(210, 189, 127, 0.3); /* Stronger gold-tinted shadow */
    background: #F0EAD8; /* Slightly darker cream on hover */
    color: #B89F5F; /* Darker gold text on hover */
}

.btn-rezervasyon-luxury i {
    font-size: 18px;
    color: #D2BD7F; /* Gold icon */
    animation: bounce 1.5s infinite;
}

.btn-rezervasyon-luxury:hover i,
.btn-rezervasyon-luxury:hover .sub-text {
    color: #B89F5F; /* Darker gold on hover */
}

.btn-rezervasyon-luxury-mobile {
    background: #F8F4E9; /* Light cream background */
    border: 1px solid #D2BD7F; /* Gold border */
    border-radius: 6px;
    padding: 10px 25px;
    color: #D2BD7F; /* Gold text */
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(210, 189, 127, 0.2); /* Gold-tinted shadow */
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    margin-left: 10px;
    height: 55px;
    line-height: normal;
}

.btn-rezervasyon-luxury-mobile .text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-rezervasyon-luxury-mobile .main-text {
    font-size: 12px;
    font-weight: 600;
}

.btn-rezervasyon-luxury-mobile .sub-text {
    font-size: 9px;
    font-weight: 400;
    color: #D2BD7F; /* Gold sub-text */
}

.btn-rezervasyon-luxury-mobile:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(210, 189, 127, 0.3); /* Stronger gold-tinted shadow */
    background: #F0EAD8; /* Slightly darker cream on hover */
    color: #B89F5F; /* Darker gold text on hover */
}

.btn-rezervasyon-luxury-mobile i {
    font-size: 16px;
    color: #D2BD7F; /* Gold icon */
    animation: bounce 1.5s infinite;
}

.btn-rezervasyon-luxury-mobile:hover i,
.btn-rezervasyon-luxury-mobile:hover .sub-text {
    color: #B89F5F; /* Darker gold on hover */
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.header_menu .menu > li:last-child {
    display: flex;
    align-items: center;
    height: 100%;
}

.header_menu .menu {
    display: flex;
    align-items: center;
}

.header_menu .menu > li {
    display: flex;
    align-items: center;
}

.btn-rezervasyon-luxury:focus,
.btn-rezervasyon-luxury-mobile:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(210, 189, 127, 0.4); /* Gold-tinted focus shadow */
}

/* Sticky button for mobile devices */
@media (max-width: 991px) {
    .btn-rezervasyon-luxury-mobile {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        margin-left: 0;
        padding: 8px 20px;
        height: 50px;
        min-width: 130px;
        font-size: 11px;
        box-shadow: 0 4px 12px rgba(210, 189, 127, 0.3); /* Gold-tinted shadow */
    }

    .btn-rezervasyon-luxury-mobile i {
        font-size: 14px;
    }

    .btn-rezervasyon-luxury-mobile .sub-text {
        font-size: 8px;
    }

    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 991px) {
    .header_logo img {
        filter: brightness(0) saturate(100%);
    }
}

@media (max-width: 991px) {
    .header_menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        padding-top: 80px;
    }

    .header_menu.mobile-menu-open {
        right: 0;
    }

    .header_menu .menu {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 20px 0;
    }

    .header_menu .menu > li {
        margin: 0;
        border-bottom: 1px solid #eee;
        width: 100%;
        display: block;
    }

    .header_menu .menu > li > a {
        display: block;
        padding: 15px 25px;
        font-size: 16px;
        border: none;
        width: 100%;
        text-align: right;
        color: #333; /* لون نص داكن */
    }

    .header_menu .menu > li.submenu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #e8e8e8; /* خلفية أغمق للتباين */
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }

    .header_menu .menu > li.submenu.mobile-submenu-open .sub-menu {
        max-height: 1000px; /* قيمة كافية لاحتواء جميع العناصر */
    }

    .header_menu .menu > li.submenu .sub-menu li a {
        padding: 12px 40px;
        font-size: 14px;
        color: #333; /* نص داكن للوضوح */
        background: #e8e8e8;
        display: block;
    }

    .header_menu .menu > li.submenu .sub-menu li a:hover {
        background: #d8d8d8; /* خلفية أغمق عند التمرير */
        color: #000;
    }

    .header_menu .menu > li.submenu > a .fa-caret-down {
        float: left;
        transition: transform 0.3s ease;
    }

    .header_menu .menu > li.submenu.mobile-submenu-open > a .fa-caret-down {
        transform: rotate(180deg);
    }

    .menu-bars {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 10px;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }

    .menu-bars span {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: all 0.3s ease;
        display: block;
    }

    .menu-bars.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-bars.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-bars.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (min-width: 992px) {
    .menu-bars {
        display: none !important;
    }
}