.su-kien-wrapper {
    background-color: #fff;
    padding: 20px 0;
    color: #444;
}

.su-kien-wrapper * {
    box-sizing: border-box;
}

.su-kien-wrapper .su-kien-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.su-kien-wrapper .su-kien-item {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background-color: #fdfdfd;
    border: 1px solid #f2f2f2;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
}

.su-kien-wrapper .su-kien-item.reverse {
    flex-direction: row-reverse;
}

.su-kien-wrapper .su-kien-img {
    width: 50%;
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.su-kien-wrapper .su-kien-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.su-kien-wrapper .su-kien-item:hover .su-kien-img img {
    transform: scale(1.05);
}

.su-kien-wrapper .su-kien-content {
    width: 50%;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.su-kien-wrapper .su-kien-title {
    font-size: var(--heading-2);
    color: #173633;
    /* Luxury deep red */
    margin: 0 0 20px 0;
    font-weight: 300;
}

.su-kien-wrapper .su-kien-desc {
    font-size: var(--text-base);
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    font-weight: 300;
}

.su-kien-wrapper .su-kien-info {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.su-kien-wrapper .su-kien-info li {
    font-size: var(--text-base);
    color: #444;
    margin-bottom: 12px;
    display: flex;
    font-weight: 300;
}

.su-kien-wrapper .su-kien-info strong {
    font-weight: 600;
    color: #222;
    min-width: 100px;
}

.su-kien-wrapper .su-kien-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.su-kien-wrapper .sk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    padding: 0 40px;
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    letter-spacing: 1px;
}

.su-kien-wrapper .sk-btn-book {
    background-color: #173633;
    color: #fff;
}

.su-kien-wrapper .sk-btn-book:hover {
    background-color: #EC7954;
    color: #fff;
}

.su-kien-wrapper .sk-btn-details {
    background-color: transparent;
    color: #173633;
    border-color: #173633;
}

.su-kien-wrapper .sk-btn-details:hover {
    background-color: #173633;
    color: #fff;
}

/* Responsive */
@media (max-width: 1199px) {
    .su-kien-wrapper .su-kien-content {
        padding: 40px 40px;
    }
}

@media (max-width: 991px) {
    .su-kien-wrapper .su-kien-content {
        padding: 40px 30px;
    }

    .su-kien-wrapper .su-kien-title {
        font-size: var(--heading-4);
    }
}

@media (max-width: 767px) {

    .su-kien-wrapper .su-kien-item,
    .su-kien-wrapper .su-kien-item.reverse {
        flex-direction: column;
    }

    .su-kien-wrapper .su-kien-img,
    .su-kien-wrapper .su-kien-content {
        width: 100%;
        flex: none;
    }

    .su-kien-wrapper .su-kien-img {
        height: 280px;
        min-height: auto;
    }

    .su-kien-wrapper .su-kien-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .su-kien-wrapper .sk-btn {
        flex: 1;
        padding: 0 20px;
    }
}

/* Tự động đảo chiều zig-zag cho các item chẵn (Dùng cho vòng lặp foreach) */
.su-kien-wrapper .su-kien-item:nth-child(even) {
    flex-direction: row-reverse;
}

@media (max-width: 767px) {
    .su-kien-wrapper .su-kien-item:nth-child(even) {
        flex-direction: column;
    }
}

/* === Table Event Styles (từ CKEditor) === */
.table-event {
    margin: 60px 0 20px;
    width: 100%;
    overflow-x: auto;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #eaeaea;
    border-radius: 4px;
}

.table-event table {
    width: 100% !important;
    border-collapse: collapse;
    border: none !important;
    text-align: center;
    font-size: var(--text-base);
}

/* Reset default borders từ ckeditor */
.table-event table th,
.table-event table td {
    padding: 16px 20px;
    border: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
    color: #444;
    white-space: nowrap;
    /* Không xuống dòng để giữ form bảng đẹp */
    vertical-align: middle;
}

/* Hàng đầu tiên làm Tiêu đề (Header) */
.table-event table tr:first-child td,
.table-event table th {
    background-color: #173633;
    /* Đỏ mận Luxury */
    color: #ffffff;
    font-weight: 400;
    font-size: var(--text-lg);
    border-bottom: none !important;
}

/* Định dạng text bên trong th/td nếu ckeditor sinh thẻ p */
.table-event table tr:first-child td p,
.table-event table th p {
    color: #ffffff !important;
    margin: 0;
}

.table-event table td p {
    margin: 0;
}

/* Cột đầu tiên (Tên phòng) - In đậm và căn trái */
.table-event table tr td:first-child {
    text-align: left;
    font-weight: 600;
    color: #163b36;
}

/* Giữ màu trắng cho cột đầu tiên của hàng tiêu đề */
.table-event table tr:first-child td:first-child {
    color: #fff;
}

/* Hover effect cho các dòng dữ liệu */
.table-event table tr:not(:first-child):hover td {
    background-color: #fcfcfc;
}

/* Responsive Table Customization */
@media (max-width: 991px) {

    .table-event table th,
    .table-event table td {
        padding: 12px 15px;
        font-size: var(--text-sm);
    }
}

/* Tùy chỉnh thanh cuộn ngang (Scrollbar) cho table đẹp hơn */
.table-event::-webkit-scrollbar {
    height: 8px;
}

.table-event::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.table-event::-webkit-scrollbar-thumb {
    background: #173633;
    border-radius: 4px;
}

.table-event::-webkit-scrollbar-thumb:hover {
    background: #a61b2b;
}

/* === Mẫu Đơn Đặt Chỗ (Booking Form) === */
.sk-booking-section {
    background-color: #fdfaf6;
    position: relative;
    padding: 30px 0;
    margin-top: 35px;
    display: flex;
    justify-content: center;
}

.sk-booking-pattern {


    /* Pattern luxury line art */
}

.sk-booking-container {
    width: 100%;
    max-width: 865px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.sk-booking-form-box {
    background: #fff;
    padding: 26px 34px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.sk-booking-title {
    font-size: var(--heading-2);
    color: #c4965f;
    /* Gold text */
    margin: 0 0 50px 0;
    font-weight: 500;
}

.sk-booking-form .sk-form-row {
    display: flex;
    gap: 50px;
    margin-bottom: 35px;
}

.sk-booking-form .sk-form-group {
    flex: 1;
}

.sk-booking-form .sk-full-width {
    flex: 100%;
}

.sk-booking-form .sk-form-control {
    width: 100%;
    border: none;
    border-bottom: 1px solid #dfdfdf;
    padding: 10px 0;
    font-size: var(--text-base);
    color: #444;
    background: transparent;
    transition: border-color 0.3s ease;
    outline: none;
}

.sk-booking-form .sk-form-control::placeholder {
    color: #888;
}

.sk-booking-form .sk-form-control:focus {
    border-bottom-color: #c4965f;
}

.sk-booking-form textarea.sk-form-control {
    resize: none;
    height: 38px;
    overflow: hidden;
    transition: height 0.3s ease, border-color 0.3s ease;
    font-weight: 300;
}

.sk-booking-form textarea.sk-form-control:focus {
    height: 100px;
}

.sk-form-action {
    margin-top: 50px;
    text-align: center;
}

.sk-btn-submit {
    background: #cca471;
    color: #fff;
    border: none;
    padding: 14px 45px;
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    letter-spacing: 1px;
}

.sk-btn-submit:hover {
    background: #b58d5a;
}

.sk-btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

@media (max-width: 991px) {
    .sk-booking-form-box {
        padding: 50px 40px;
    }
}

@media (max-width: 767px) {
    .sk-booking-form-box {
        padding: 40px 30px;
    }

    .sk-booking-form .sk-form-row {
        flex-direction: column;
        gap: 35px;
    }

    .sk-booking-pattern {
        display: none;
    }

    .sk-booking-section {
        padding: 50px 15px;
    }
}

/* === Modal Popup Event Booking === */
.sk-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sk-modal-box {
    background: #ffffff;
    width: 100%;
    max-width: 650px;
    padding: 35px 40px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    max-height: 90vh;
    overflow-y: auto;
}

.sk-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: var(--heading-3);
    font-weight: 300;
    color: #888;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.sk-modal-close:hover {
    color: #173633;
}

.sk-modal-title {
    font-size: var(--heading-4);
    color: #173633;
    margin: 0 0 5px 0;
    font-weight: 600;
    text-transform: uppercase;
}

.sk-modal-subtitle {
    font-size: var(--text-base);
    color: #EC7954;
    font-weight: 500;
    margin-bottom: 25px;
}