.hotel-details-page {
    background: #fff;
    color: var(--bd-text);
    overflow: hidden;
}

.hotel-hero {
    position: relative;
    min-height: 360px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hotel-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, rgba(9, 21, 39, .88), rgba(9, 21, 39, .62), rgba(9, 21, 39, .18));
}

.hotel-hero .container {
    position: relative;
    z-index: 2;
}

.hotel-hero__content {
    max-width: 860px;
    margin-left: auto;
    padding: 64px 0 96px;
    color: #fff;
    text-align: right;
}

.hotel-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
}

.hotel-breadcrumb a,
.hotel-breadcrumb strong,
.hotel-breadcrumb span {
    color: inherit;
}

.hotel-breadcrumb a:hover {
    color: #fff;
}

.hotel-hero h1 {
    color: #fff;
    font-size: 46px;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 18px;
}

.hotel-hero__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: rgba(255, 255, 255, .9);
}

.hotel-hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hotel-rating {
    color: #ffd25d;
}

.hotel-rating small {
    color: rgba(255, 255, 255, .78);
    margin-right: 4px;
}

.hotel-main-section {
    margin-top: -72px;
    position: relative;
    z-index: 5;
    padding-bottom: 44px;
}

.hotel-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 28px;
    align-items: start;
    direction: ltr;
}

.hotel-gallery-card,
.hotel-booking-card,
.hotel-overview-card,
.hotel-facilities-grid,
.hotel-info-card,
.hotel-booking-form,
.hotel-pricing-group,
.hotel-related-card {
    background: #fff;
    border: 1px solid rgba(17, 43, 78, .09);
    box-shadow: 0 18px 55px rgba(14, 37, 68, .12);
}

.hotel-gallery-card {
    border-radius: 18px;
    padding: 10px;
    direction: rtl;
}

.hotel-gallery-main {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    background: #eef3f8;
}

.hotel-gallery-main img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
}

.hotel-gallery-all {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    color: #fff;
    background: rgba(9, 21, 39, .72);
    backdrop-filter: blur(8px);
    font-size: 13px;
}

.hotel-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.hotel-thumb {
    position: relative;
    height: 74px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 9px;
    overflow: hidden;
    cursor: pointer;
    background: #eef3f8;
}

.hotel-thumb.is-active {
    border-color: var(--bd-blue);
}

.hotel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hotel-thumb span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(9, 21, 39, .66);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

.hotel-booking-card {
    position: sticky;
    top: 24px;
    border-radius: 18px;
    padding: 28px 26px;
    direction: rtl;
}

.hotel-booking-card__eyebrow {
    margin: 0 0 4px;
    color: var(--bd-muted);
    font-size: 13px;
}

.hotel-booking-card__price {
    color: var(--bd-red);
    font-size: 36px;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 18px;
}

.hotel-booking-card__price small {
    color: var(--bd-muted);
    font-size: 14px;
    font-weight: 600;
}

.hotel-booking-card__facts {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 0;
    border-top: 1px solid #e7edf4;
    border-bottom: 1px solid #e7edf4;
}

.hotel-booking-card__facts span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--bd-text);
    font-size: 13px;
}

.hotel-booking-card__facts i {
    color: var(--bd-blue);
}

.hotel-booking-card__summary {
    color: #66758b;
    font-size: 14px;
    line-height: 1.9;
    margin: 16px 0;
}

.hotel-trust-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.hotel-trust-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--bd-text);
    font-size: 14px;
    margin-bottom: 10px;
}

.hotel-trust-list i {
    color: var(--bd-blue);
}

.hotel-primary-btn,
.hotel-secondary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 48px;
    border-radius: 8px;
    font-weight: 800;
    transition: .2s ease;
}

.hotel-primary-btn {
    border: 1px solid var(--bd-blue);
    background: var(--bd-blue);
    color: #fff;
}

.hotel-primary-btn:hover {
    background: var(--bd-blue-dark);
    color: #fff;
}

.hotel-secondary-btn {
    margin-top: 10px;
    border: 1px solid #d9e2ef;
    background: #fff;
    color: var(--bd-text);
}

.hotel-secondary-btn:hover {
    border-color: var(--bd-blue);
    color: var(--bd-blue-dark);
}

.hotel-section {
    padding: 36px 0;
}

.hotel-overview-section {
    padding: 54px 0;
    background: #f7faff;
}

.hotel-overview-section .hotel-section-heading {
    text-align: right;
}

.hotel-overview-section .hotel-section-heading span {
    margin-right: 0;
    margin-left: auto;
}

.hotel-section-heading {
    text-align: center;
    margin-bottom: 26px;
}

.hotel-section-heading h2 {
    color: var(--bd-text);
    font-size: 27px;
    line-height: 1.35;
    font-weight: 850;
    margin: 0;
}

.hotel-section-heading span {
    display: block;
    width: 48px;
    height: 3px;
    border-radius: 99px;
    background: var(--bd-red);
    margin: 12px auto 0;
}

.hotel-overview-copy {
    max-width: none;
    margin: 0;
    padding-left: 28px;
    border-left: 1px solid #e7edf4;
    text-align: right;
}

.hotel-overview-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
    border-radius: 18px;
    padding: 32px;
    direction: rtl;
    background: linear-gradient(180deg, #fff, #fbfdff);
}

.hotel-overview-aside {
    padding: 22px;
    border: 1px solid #edf2f8;
    border-radius: 14px;
    background: #f9fbff;
}

.hotel-overview-aside h3 {
    margin: 0 0 16px;
    color: var(--bd-text);
    font-size: 20px;
    line-height: 1.45;
    font-weight: 850;
}

.hotel-quick-info-list {
    display: grid;
    gap: 12px;
}

.hotel-quick-info-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 12px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #edf2f8;
}

.hotel-quick-info-item i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(var(--bd-blue-rgb), .1);
    color: var(--bd-blue);
    font-size: 17px;
}

.hotel-quick-info-item span {
    display: block;
    color: var(--bd-muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.5;
}

.hotel-quick-info-item strong {
    display: block;
    margin-top: 3px;
    color: var(--bd-text);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 850;
}

.hotel-overview-help {
    display: grid;
    gap: 14px;
    text-align: right;
}

.hotel-overview-help i {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(var(--bd-red-rgb), .1);
    color: var(--bd-red);
    font-size: 22px;
}

.hotel-overview-help p {
    margin: 0;
    color: #53657d;
    font-size: 15px;
    line-height: 1.9;
}

.hotel-overview-help a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    width: fit-content;
    padding: 0 20px;
    border-radius: 8px;
    background: var(--bd-red);
    color: #fff;
    font-weight: 800;
}

.hotel-overview-help a:hover {
    color: #fff;
    background: var(--bd-red-dark);
}

.hotel-lead {
    color: var(--bd-text);
    font-size: 17px;
    line-height: 2.05;
    font-weight: 700;
    margin: 0 0 18px;
}

.hotel-rich-text {
    color: #5d6d82;
    font-size: 16px;
    line-height: 2.08;
    text-align: right;
}

.hotel-rich-text p,
.hotel-rich-text li {
    text-align: right;
}

.hotel-rich-text p:last-child,
.hotel-rich-text ul:last-child,
.hotel-rich-text ol:last-child {
    margin-bottom: 0;
}

.hotel-rich-text ul,
.hotel-rich-text ol {
    padding-right: 20px;
}

.hotel-info-card .hotel-rich-text ul {
    display: grid;
    gap: 9px;
    padding-right: 0;
    list-style: none;
}

.hotel-info-card .hotel-rich-text li {
    position: relative;
    padding-right: 26px;
}

.hotel-info-card .hotel-rich-text li::before {
    position: absolute;
    right: 0;
    top: .15em;
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
}

.hotel-info-card--included .hotel-rich-text li::before {
    content: "\f058";
    color: #12834d;
}

.hotel-info-card--excluded .hotel-rich-text li::before {
    content: "\f057";
    color: var(--bd-red);
}

.hotel-accommodation-pricing-section {
    background: #fff;
}

.hotel-accommodation-pricing {
    display: grid;
    gap: 24px;
    direction: rtl;
}

.hotel-pricing-group {
    border-radius: 18px;
    padding: 28px;
    background: linear-gradient(180deg, #fff, #fbfdff);
}

.hotel-pricing-group__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e7edf4;
}

.hotel-pricing-group__head h3 {
    margin: 0;
    color: var(--bd-text);
    font-size: 22px;
    font-weight: 850;
    line-height: 1.45;
}

.hotel-pricing-group__head p {
    margin: 0;
    color: var(--bd-muted);
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
}

.hotel-room-pricing + .hotel-room-pricing {
    margin-top: 24px;
}

.hotel-room-pricing h4 {
    margin: 0 0 14px;
    color: var(--bd-text);
    font-size: 18px;
    font-weight: 850;
    line-height: 1.5;
    text-align: right;
}

.hotel-pricing-table-wrap {
    overflow-x: auto;
    border: 1px solid #e3ebf5;
    border-radius: 14px;
    background: #fff;
}

.hotel-pricing-table {
    width: 100%;
    min-width: 780px;
    border-collapse: separate;
    border-spacing: 0;
    color: var(--bd-text);
    direction: rtl;
    text-align: right;
}

.hotel-pricing-table th,
.hotel-pricing-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #edf2f8;
    vertical-align: middle;
    white-space: nowrap;
}

.hotel-pricing-table th {
    background: #f6f9fd;
    color: var(--bd-text);
    font-size: 13px;
    font-weight: 850;
}

.hotel-pricing-table td {
    color: #5d6d82;
    font-size: 14px;
    line-height: 1.65;
}

.hotel-pricing-table tbody tr:last-child td {
    border-bottom: 0;
}

.hotel-pricing-table--rooms td:nth-last-child(-n + 3),
.hotel-pricing-table--units td[data-label="السعر في الليلة"] {
    color: var(--bd-red);
    font-weight: 850;
}

.hotel-facilities-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, #f9fbff, #fff);
}

.hotel-facility-item {
    min-height: 138px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 14px;
    border-left: 1px solid #e6edf6;
    border-bottom: 1px solid #e6edf6;
    text-align: center;
}

.hotel-facility-item:nth-child(5n) {
    border-left: 0;
}

.hotel-facility-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: var(--bd-text);
    font-size: 34px;
}

.hotel-facility-icon::after {
    content: "";
    position: absolute;
    bottom: 4px;
    width: 30px;
    height: 3px;
    border-radius: 99px;
    background: var(--bd-red);
    opacity: .78;
}

.hotel-facility-icon img {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
}

.hotel-facility-item strong {
    color: var(--bd-text);
    font-size: 14px;
    line-height: 1.5;
}

.hotel-inclusion-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.hotel-info-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    border-radius: 16px;
    padding: 30px;
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 22px;
}

.hotel-info-card h3 {
    font-size: 21px;
    font-weight: 850;
    margin-bottom: 14px;
}

.hotel-info-card--included {
    background: linear-gradient(90deg, #f3fff8, #fff);
    border-color: rgba(24, 135, 78, .15);
}

.hotel-info-card--included h3,
.hotel-info-card--included .hotel-rich-text li::marker {
    color: #12834d;
}

.hotel-info-card--excluded {
    background: linear-gradient(90deg, #fff5f5, #fff);
    border-color: rgba(var(--bd-red-rgb), .15);
}

.hotel-info-card--excluded h3,
.hotel-info-card--excluded .hotel-rich-text li::marker {
    color: var(--bd-red);
}

.hotel-info-card__art {
    display: grid;
    place-items: center;
    color: currentColor;
    opacity: .2;
    font-size: 76px;
}

.hotel-booking-form-section {
    background: #f7faff;
}

.hotel-booking-form {
    border-radius: 18px;
    padding: 28px;
}

.hotel-booking-form label {
    display: block;
    color: var(--bd-text);
    font-weight: 700;
    margin-bottom: 8px;
}

.hotel-booking-form input,
.hotel-booking-form select,
.hotel-booking-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid #dbe5f1;
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--bd-text);
    background: #fff;
    margin-bottom: 18px;
}

.hotel-booking-form textarea {
    min-height: 48px;
    resize: vertical;
}

.hotel-booking-form .hotel-primary-btn {
    max-width: 260px;
    margin: 8px auto 0;
}

.hotel-related-section {
    background: #fff;
}

.hotel-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.hotel-related-card {
    border-radius: 14px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
    direction: rtl;
}

.hotel-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(14, 37, 68, .14);
}

.hotel-related-card__image {
    position: relative;
    display: block;
    height: 165px;
    overflow: hidden;
    background: #eef3f8;
}

.hotel-related-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hotel-discount-badge,
.hotel-card-rating {
    position: absolute;
    top: 12px;
    z-index: 2;
    padding: 5px 9px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.hotel-discount-badge {
    right: 12px;
    background: #13a548;
}

.hotel-card-rating {
    left: 12px;
    background: rgba(9, 21, 39, .75);
}

.hotel-card-rating i {
    color: #ffd25d;
}

.hotel-related-card__body {
    padding: 16px;
    display: flex;
    min-height: 172px;
    flex-direction: column;
    text-align: right;
    direction: rtl;
}

.hotel-related-card__title {
    display: block;
    color: var(--bd-text);
    font-size: 16px;
    font-weight: 850;
    line-height: 1.55;
    min-height: 50px;
}

.hotel-related-card__title:hover {
    color: var(--bd-blue);
}

.hotel-related-card__body p,
.hotel-related-card__meta span {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    color: var(--bd-muted);
    font-size: 13px;
    margin: 8px 0;
    text-align: right;
}

.hotel-related-card__meta {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.hotel-related-card__meta strong {
    color: var(--bd-red);
    font-size: 18px;
    font-weight: 900;
    text-align: right;
}

.hotel-related-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 38px;
    margin-top: 12px;
    padding: 0 14px;
    border: 1px solid #d9e2ef;
    border-radius: 8px;
    color: var(--bd-blue);
    font-size: 13px;
    font-weight: 850;
}

.hotel-related-card__link:hover {
    border-color: var(--bd-blue);
    background: #f7fbff;
    color: var(--bd-blue-dark);
}

@media (max-width: 1199px) {
    .hotel-main-grid {
        grid-template-columns: minmax(0, 1fr) 320px;
    }

    .hotel-related-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .hotel-hero {
        min-height: 320px;
    }

    .hotel-hero__content {
        padding: 46px 0 90px;
    }

    .hotel-hero h1 {
        font-size: 36px;
    }

    .hotel-main-grid {
        grid-template-columns: 1fr;
    }

    .hotel-booking-card {
        position: static;
    }

    .hotel-overview-card {
        grid-template-columns: 1fr;
    }

    .hotel-overview-copy {
        padding-left: 0;
        padding-bottom: 24px;
        border-left: 0;
        border-bottom: 1px solid #e7edf4;
    }

    .hotel-gallery-main img {
        height: 360px;
    }

    .hotel-facilities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hotel-facility-item:nth-child(5n) {
        border-left: 1px solid #e6edf6;
    }

    .hotel-facility-item:nth-child(2n) {
        border-left: 0;
    }

    .hotel-inclusion-grid,
    .hotel-related-grid {
        grid-template-columns: 1fr;
    }

    .hotel-info-card {
        grid-template-columns: 90px minmax(0, 1fr);
    }

    .hotel-pricing-group__head {
        display: block;
    }

    .hotel-pricing-group__head p {
        margin-top: 8px;
        text-align: right;
    }
}

@media (max-width: 575px) {
    .hotel-hero {
        min-height: 300px;
    }

    .hotel-hero__content {
        padding: 34px 0 82px;
    }

    .hotel-hero h1 {
        font-size: 28px;
    }

    .hotel-breadcrumb {
        font-size: 12px;
    }

    .hotel-main-section {
        margin-top: -54px;
    }

    .hotel-main-grid {
        gap: 18px;
    }

    .hotel-gallery-card {
        padding: 7px;
        border-radius: 14px;
    }

    .hotel-gallery-main img {
        height: 250px;
    }

    .hotel-gallery-thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hotel-thumb {
        height: 64px;
    }

    .hotel-booking-card {
        padding: 22px 18px;
    }

    .hotel-booking-card__price {
        font-size: 30px;
    }

    .hotel-section {
        padding: 28px 0;
    }

    .hotel-section-heading h2 {
        font-size: 23px;
    }

    .hotel-overview-copy {
        text-align: right;
    }

    .hotel-overview-card {
        padding: 22px 16px;
        border-radius: 14px;
    }

    .hotel-overview-aside {
        padding: 18px 14px;
    }

    .hotel-lead,
    .hotel-rich-text {
        font-size: 15px;
    }

    .hotel-facilities-grid {
        grid-template-columns: 1fr 1fr;
        border-radius: 14px;
    }

    .hotel-facility-item {
        min-height: 122px;
        padding: 18px 10px;
    }

    .hotel-info-card {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .hotel-info-card__art {
        display: none;
    }

    .hotel-pricing-group {
        padding: 20px 14px;
        border-radius: 14px;
    }

    .hotel-pricing-table-wrap {
        border: 0;
        background: transparent;
        overflow: visible;
    }

    .hotel-pricing-table {
        min-width: 0;
    }

    .hotel-pricing-table,
    .hotel-pricing-table thead,
    .hotel-pricing-table tbody,
    .hotel-pricing-table tr,
    .hotel-pricing-table td {
        display: block;
        width: 100%;
    }

    .hotel-pricing-table thead {
        display: none;
    }

    .hotel-pricing-table tr {
        padding: 12px;
        border: 1px solid #e3ebf5;
        border-radius: 12px;
        background: #fff;
    }

    .hotel-pricing-table tr + tr {
        margin-top: 12px;
    }

    .hotel-pricing-table td {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
        padding: 9px 0;
        border-bottom: 1px solid #edf2f8;
        white-space: normal;
        text-align: left;
    }

    .hotel-pricing-table td::before {
        content: attr(data-label);
        color: var(--bd-text);
        font-weight: 850;
        text-align: right;
    }

    .hotel-pricing-table td:last-child {
        border-bottom: 0;
    }

    .hotel-booking-form {
        padding: 20px 16px;
    }

    .hotel-booking-form .hotel-primary-btn {
        max-width: none;
    }
}
