.am-thuc-detail-wrapper {
    color: #444;
}

.am-thuc-detail-wrapper * {
    box-sizing: border-box;
}

/* Common Text Styles */
.am-thuc-detail-wrapper .title-serif {
    color: #333;
    font-size: var(--heading-2);
    margin: 0 0 20px 0;
    font-weight: 500;
}

.am-thuc-detail-wrapper .btn-gold {
    display: inline-block;
    background-color: #EC7954;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.am-thuc-detail-wrapper .btn-gold:hover {
    background-color: #8c6735;
}

/* Top Section (Hero) */
.am-thuc-detail-wrapper .hero-section {
    position: relative;
    background-color: #fff;
    min-height: 550px;
    display: flex;
    align-items: center;
    padding-top: 172px;
}

.am-thuc-detail-wrapper .hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
}

.am-thuc-detail-wrapper .hero-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 15px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.am-thuc-detail-wrapper .hero-content-box {
    width: 33%;
    background-color: rgba(255, 255, 255, 0.95);
    border: 2px solid #EC7954;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.am-thuc-detail-wrapper .hero-desc {
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: 25px;
    color: #555;
}

.am-thuc-detail-wrapper .hero-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.am-thuc-detail-wrapper .hero-info-list li {
    font-size: var(--text-sm);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.am-thuc-detail-wrapper .hero-info-list li svg {
    width: 16px;
    height: 16px;
    margin-right: 15px;
    fill: #666;
    flex-shrink: 0;
    position: relative;
    top: 2px;
}

.am-thuc-detail-wrapper .hero-info-list li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.am-thuc-detail-wrapper .hero-info-list li a:hover {
    color: #EC7954;
}

.am-thuc-detail-wrapper .hero-action {
    text-align: right;
}

/* Bottom Section (Booking) */
.am-thuc-detail-wrapper .booking-section {
    background-color: #f8f6f0;
    position: relative;
    padding: 35px 0;
}

.am-thuc-detail-wrapper .booking-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background: repeating-linear-gradient(-45deg,
            #e8e4db,
            #e8e4db 2px,
            transparent 2px,
            transparent 10px);
    opacity: 0.5;
}

.am-thuc-detail-wrapper .booking-container {
    position: relative;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
}

.am-thuc-detail-wrapper .booking-form-box {
    width: 40%;
    padding: 20px;
    background: #fff;
}

.am-thuc-detail-wrapper .booking-form {
    margin-top: 30px;
}

.am-thuc-detail-wrapper .form-row {
    display: flex;
    margin-bottom: 25px;
    gap: 30px;
}

.am-thuc-detail-wrapper .form-group {
    flex: 1;
}

.am-thuc-detail-wrapper .form-group.full-width {
    flex: 100%;
}

.am-thuc-detail-wrapper .form-control {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    padding: 10px 0;
    font-size: var(--text-sm);
    color: #333;
    outline: none;
}

.am-thuc-detail-wrapper .form-control:focus {
    border-bottom-color: #EC7954;
}

.am-thuc-detail-wrapper textarea.form-control {
    resize: vertical;
    min-height: 60px;
}

.am-thuc-detail-wrapper .booking-action {
    text-align: center;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 1199px) {

    .am-thuc-detail-wrapper .hero-content-box,
    .am-thuc-detail-wrapper .booking-form-box {
        width: 50%;
    }
}

@media (max-width: 991px) {
.am-thuc-detail-wrapper .title-serif {
    font-size: var(--text-xl) !important;
}
    .am-thuc-detail-wrapper .hero-content-box,
    .am-thuc-detail-wrapper .booking-form-box {
        width: 60%;
    }

    .am-thuc-detail-wrapper .hero-image-bg {
        width: 70%;
    }
}

@media (max-width: 767px) {
    .am-thuc-detail-wrapper .hero-section {
        flex-direction: column;
        background-color: #f8f6f0;
        padding-top: 10px;
    }

    .am-thuc-detail-wrapper .hero-image-bg {
        position: relative;
        width: 100%;
        height: 300px;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .am-thuc-detail-wrapper .hero-container {
        padding: 30px 15px;
        justify-content: center;
    }

    .am-thuc-detail-wrapper .hero-content-box,
    .am-thuc-detail-wrapper .booking-form-box {
        width: 100%;
    }

    .am-thuc-detail-wrapper .booking-container {
        justify-content: center;
    }

    .am-thuc-detail-wrapper .form-row {
        flex-direction: column;
        gap: 25px;
    }

    .am-thuc-detail-wrapper .hero-content-box {
        border-width: 1px;
        padding: 25px;
    }
}

/* Booking Modal Overlay */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.booking-modal-container {
    position: relative;
    width: 100%;
    max-width: 650px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideDown 0.3s ease;
}

@keyframes modalSlideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.booking-modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: var(--heading-3);
    font-weight: bold;
    color: #666;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: color 0.2s;
}

.booking-modal-close:hover {
    color: #EC7954;
}

.booking-modal-container .booking-section {
    padding: 20px 0;
    background-color: #f8f6f0;
}

.booking-modal-container .booking-container {
    justify-content: center;
    padding: 0 15px;
}

.booking-modal-container .booking-form-box {
    width: 100%;
    padding: 25px 20px;
}