/* =========================================
   HOME PAGE - GLOBAL
========================================= */
.home-page {
    overflow-x: hidden;
}

.home-page .section {
    padding: 90px 0;
}

.home-page .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    color: var(--dark);
    margin-bottom: 18px;
}

.home-page .section-subtitle {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.9;
}

.empty-state {
    text-align: center;
    color: var(--gray);
    font-size: 1.05rem;
    padding: 18px 0;
}

/* =========================================
   HERO CAROUSEL
========================================= */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 78vh;
    min-height: 560px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease, visibility .8s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.52) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 16px;
    z-index: 2;
    color: #fff;
}

.carousel-overlay-inner {
    max-width: 980px;
}

.carousel-overlay h1 {
    font-size: clamp(1.6rem, 3.5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 18px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.55);
}

.carousel-overlay p {
    font-size: clamp(1rem, 2vw, 1.4rem);
    margin-bottom: 28px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.55);
}

.hero-cta-btn {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    padding: 14px 34px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all .3s ease;
}

.hero-cta-btn:hover {
    background: #b08f4f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196,162,98,0.35);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all .3s ease;
}

.carousel-nav:hover {
    background: rgba(255,255,255,0.3);
}

.carousel-nav.prev {
    left: 18px;
}

.carousel-nav.next {
    right: 18px;
}

.carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: all .3s ease;
}

.carousel-dot.active {
    background: #fff;
    transform: scale(1.15);
}

/* =========================================
   BOOKING BAR + CALENDAR + ROOMS POPUP
========================================= */
.booking-bar {
    background: #fff;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.15);
    padding: 30px 40px;
    position: relative;
    z-index: 20;
    margin-top: -50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
}

.booking-form {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1fr 1fr;
    gap: 20px;
    align-items: end;
}

.custom-booking-form {
    position: relative;
    grid-template-columns: 1.4fr 1.4fr 1.8fr 1.4fr 1fr;
    gap: 16px;
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
}

.booking-form label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 8px;
    letter-spacing: .5px;
}

.booking-form input,
.booking-form select {
    padding: 12px 14px;
    border: 1px solid var(--light-gray);
    border-radius: 3px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: var(--gold);
}

.booking-display-input {
    background: #fff;
    cursor: pointer;
}

.booking-search-btn {
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease;
}

.booking-search-btn:hover {
    background: #b08f4f;
    transform: translateY(-2px);
}

.booking-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 15000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.booking-popup-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.booking-popup {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    z-index: 15001;
    width: min(920px, 100%);
    overflow: hidden;
}

.booking-popup.active {
    display: block;
}

.calendar-popup {
    width: min(980px, 100%);
}

.rooms-popup {
    width: min(560px, 100%);
    left: 50%;
    transform: translateX(-50%);
}

.booking-popup-header {
    padding: 16px 18px;
    border-bottom: 1px solid var(--light-gray);
    background: #fff;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.calendar-nav-btn {
    border: 1px solid var(--light-gray);
    background: #fff;
    color: var(--dark);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s ease;
}

.calendar-nav-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.booking-popup-body {
    padding: 20px;
}

.calendar-legend {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    color: var(--gray);
    font-size: 14px;
}

.calendar-grid-custom {
    display: block;
}

.calendar-months-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.calendar-month-block {
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    padding: 14px;
    background: #fff;
}

.calendar-month-title {
    text-align: center;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    font-size: 15px;
}

.calendar-days-header,
.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.calendar-days-header {
    margin-bottom: 10px;
}

.calendar-day-name {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    padding: 8px 0;
}

.calendar-day {
    border: none;
    background: #fff;
    border-radius: 10px;
    min-height: 42px;
    font-size: 14px;
    cursor: pointer;
    transition: all .25s ease;
    color: var(--dark);
}

.calendar-day:hover:not(.disabled):not(.empty) {
    background: rgba(196,162,98,0.12);
    color: var(--gold);
}

.calendar-day.empty {
    background: transparent;
    cursor: default;
}

.calendar-day.disabled {
    color: #c7c7c7;
    cursor: not-allowed;
    background: #fafafa;
}

.calendar-day.selected-start,
.calendar-day.selected-end {
    background: var(--gold);
    color: #fff;
    font-weight: 700;
}

.calendar-day.in-range {
    background: rgba(196,162,98,0.14);
    color: var(--dark);
}

.room-capacity-warning {
    background: #fff3cd;
    color: #8a6d3b;
    border: 1px solid #f0d58c;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.5;
}

.room-row {
    position: relative;
    border-bottom: 1px solid var(--light-gray);
    padding: 16px 0;
}

.room-row:last-child {
    border-bottom: none;
}

.room-row-header {
    margin-bottom: 14px;
}

.room-row-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
}

.remove-room-btn {
    position: absolute;
    top: 16px;
    right: 0;
    background: none;
    border: none;
    color: #c54c4c;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}

.guest-counter {
    display: grid;
    gap: 12px;
}

.guest-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.guest-label {
    font-size: 14px;
    color: var(--dark);
}

.counter-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.counter-btn {
    width: 42px;
    height: 42px;
    border: 1px solid var(--light-gray);
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    transition: all .25s ease;
}

.counter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.counter-value {
    min-width: 24px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
}

.add-room-btn {
    width: 100%;
    margin-top: 14px;
    background: transparent;
    border: 1px dashed var(--gold);
    color: var(--gold);
    padding: 13px 15px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all .3s ease;
}

.add-room-btn:hover {
    background: rgba(196,162,98,0.08);
}

/* =========================================
   HOTEL INTRO
========================================= */
.hotel-intro {
    background: var(--beige);
}

.hotel-description-center {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.hotel-description-center h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 22px;
    color: var(--dark);
}

.hotel-description-center p {
    font-size: 1rem;
    line-height: 2;
    color: var(--gray);
    margin-bottom: 18px;
}

.ratings {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.rating-item {
    background: #fff;
    border-radius: 14px;
    padding: 22px 24px;
    min-width: 220px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    text-align: center;
}

.rating-brand {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.rating-google {
    letter-spacing: .2px;
}

.rating-booking {
    color: #003580;
}

.rating-tripadvisor {
    color: #34a853;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
    font-size: 22px;
    line-height: 1;
}

.star {
    color: #ddd;
}

.star.filled {
    color: #f4b400;
}

.star.half-filled {
    color: #f4b400;
    opacity: .75;
}

.rating-score {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
}

/* =========================================
   OFFERS SECTION
========================================= */
.offers-section {
    background: #fff;
}

.offers-slider-wrap {
    position: relative;
    padding: 0 56px;
}

.offers-slider {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 6px 2px 18px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.offers-slider::-webkit-scrollbar {
    display: none;
}

.offer-slide {
    flex: 0 0 calc((100% - 56px) / 3);
    scroll-snap-align: start;
}

.offer-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 38px rgba(0,0,0,0.14);
}

.offer-image {
    height: 260px;
    overflow: hidden;
    background: #f3f3f3;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.05);
}

.offer-content {
    padding: 24px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.offer-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.35;
}

.offer-description {
    color: var(--gray);
    line-height: 1.85;
    font-size: .98rem;
    margin-bottom: 18px;
    flex: 1;
}

.offer-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.offer-btn {
    display: inline-block;
    text-align: center;
    background: var(--gold);
    color: #fff;
    padding: 13px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all .3s ease;
}

.offer-btn:hover {
    background: #b08f4f;
    color: #fff;
}

.offers-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: var(--dark);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    cursor: pointer;
    z-index: 2;
    transition: all .3s ease;
}

.offers-nav:hover {
    background: var(--gold);
    color: #fff;
}

.offers-nav-prev {
    left: 0;
}

.offers-nav-next {
    right: 0;
}

/* =========================================
   ROOMS SECTION
========================================= */
.rooms-section {
    background: #efefef;
}

.rooms-slider-wrap {
    position: relative;
    padding: 0 56px;
}

.rooms-slider {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 8px 2px 18px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.rooms-slider::-webkit-scrollbar {
    display: none;
}

.room-slide {
    flex: 0 0 calc((70% - 40px) / 2.5);
    scroll-snap-align: start;
}

.room-card {
    background: #f8f8f8;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}

.room-image {
    height: 300px;
    overflow: hidden;
    background: #f1f1f1;
    position: relative;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.04);
}

.room-content {
    padding: 26px 30px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.room-cap-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: #fff;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: .85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
}

.room-title {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.35;
}

.room-view-line {
    color: var(--gold);
    font-style: italic;
    font-size: .95rem;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 18px;
    color: var(--gray);
    font-size: .98rem;
}

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

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.room-amenity-pill {
    background: #ececec;
    color: #6a6a6a;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: .92rem;
    line-height: 1;
}

.room-price {
    margin-top: auto;
    margin-bottom: 22px;
    color: var(--dark);
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.room-price strong {
    color: var(--gold);
    font-size: 1.25rem;
}

.room-actions {
    display: flex;
}

.room-primary-btn,
.room-secondary-btn {
    display: inline-block;
    text-align: center;
    padding: 15px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all .3s ease;
}

.room-primary-btn {
    width: 100%;
    background: var(--gold);
    color: #fff;
}

.room-primary-btn:hover {
    background: #b08f4f;
    color: #fff;
}

.room-secondary-btn {
    background: transparent;
    color: var(--dark);
    border: 1px solid var(--light-gray);
}

.room-secondary-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.rooms-nav {
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    background: #fff;
    color: var(--gold);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    cursor: pointer;
    z-index: 2;
    transition: all .3s ease;
}

.rooms-nav:hover {
    background: var(--gold);
    color: #fff;
}

.rooms-nav-prev {
    left: 0;
}

.rooms-nav-next {
    right: 0;
}

/* =========================================
   SPA + RESTAURANT SPLIT SECTIONS
========================================= */
.home-split-section {
    padding: 40px 0 !important;
}

.spa-split-section {
    background: transparent;
}

.restaurant-split-section {
    background: #efefef;
}

.home-split-box {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 46px;
}

.home-split-box.reverse {
    grid-template-columns: 1.1fr 0.9fr;
}

.home-split-box.reverse .home-split-media {
    order: 2;
}

.home-split-box.reverse .home-split-content {
    order: 1;
    padding-left: 90px; /* نقصنا المسافة */
}

.home-split-media {
    width: 100%;
}

.spa-split-media {
    max-width: 760px;
}

.spa-split-media img {
    width: 100%;
    height: 760px;
    object-fit: cover;
    border-radius: 10px;
}

.restaurant-split-media {
    max-width: 720px;
    margin-left: auto;
}

.restaurant-split-media img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    border-radius: 10px;
}

.home-split-content {
    padding: 0;
    background: transparent;
}

.home-split-inner {
    max-width: 720px;
}

.home-split-title {
    font-size: clamp(1.2rem, 2vw, 2rem);
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 26px;
}

.home-split-text {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.95;
    margin-bottom: 24px;
}

.home-split-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: grid;
    gap: 16px;
}

.home-split-list li {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.home-split-list i {
    color: var(--gold);
    font-size: 0.95rem;
    min-width: 16px;
    margin-top: 6px;
}

.home-split-btn {
    display: inline-block;
    padding: 15px 32px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all .3s ease;
}

.home-split-btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}

.home-split-btn-outline:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}

/* =========================================
   DAY PASS SECTION
========================================= */
.daypass-section {
    background: transparent;
    padding: 40px 0 !important;
}

.daypass-split-section {
    background: transparent;
}

.daypass-split-box {
    grid-template-columns: 1fr;
    gap: 24px;
}

.daypass-split-box.reverse .home-split-media,
.daypass-split-box.reverse .home-split-content,
.daypass-split-box .home-split-media,
.daypass-split-box .home-split-content {
    order: initial;
}

.daypass-split-media {
    max-width: 100%;
    margin-left: 0;
}

.daypass-split-media img {
    width: 100%;
    height: auto;
    max-height: none;
}

.daypass-split-box.reverse .home-split-media {
    order: 2;
}

.daypass-split-box.reverse .home-split-content {
    order: 1;
}

.daypass-split-media {
    max-width: 720px;
    margin-left: auto;
}

.daypass-split-media img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    border-radius: 10px;
}

.daypass-split-content {
    padding: 0;
    background: transparent;
}

.daypass-note {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 12px;
}

.daypass-price {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 18px;
}

/* =========================================
   HOTEL SERVICES SECTION
========================================= */
.hotel-services-section {
    background: #efefef;
}

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

.hotel-service-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 8px 26px rgba(0,0,0,0.06);
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%;
}

.hotel-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.10);
}

.hotel-service-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(196,162,98,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 28px;
}

.hotel-service-card h3 {
    font-size: 1.08rem;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.hotel-service-card p {
    color: var(--gray);
    font-size: .96rem;
    line-height: 1.8;
    margin: 0;
}

/* =========================================
   EVENTS SECTION
========================================= */
.events-split-section {
    background: transparent;
}

.events-split-media {
    max-width: 760px;
}

.events-split-media img {
    width: 100%;
    height: auto;
    max-height: 620px;
    object-fit: cover;
    border-radius: 10px;
}

.events-split-content {
    padding: 0;
    background: transparent;
}

/* =========================================
   TESTIMONIALS SECTION
========================================= */
.testimonials-section {
    background: #efefef;
}

.testimonials-slider-wrap {
    position: relative;
    padding: 0 56px;
}

.testimonials-slider {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 6px 2px 18px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-slide {
    flex: 0 0 calc((100% - 56px) / 3);
    scroll-snap-align: start;
}

.testimonial-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    min-height: 260px;
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.10);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 16px;
    color: #f4b400;
    font-size: 16px;
}

.testimonial-text {
    color: var(--gray);
    font-size: .98rem;
    line-height: 1.9;
    margin-bottom: 22px;
    flex: 1;
}

.testimonial-author {
    color: var(--dark);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}

.testimonial-date {
    color: #8b8b8b;
    font-size: .9rem;
}

.testimonials-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: var(--dark);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    cursor: pointer;
    z-index: 2;
    transition: all .3s ease;
}

.testimonials-nav:hover {
    background: var(--gold);
    color: #fff;
}

.testimonials-nav-prev {
    left: 0;
}

.testimonials-nav-next {
    right: 0;
}

/* =========================================
   HOTEL ENVIRONMENT SECTION
========================================= */
.hotel-environment-section {
    background: transparent;
}

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

.hotel-environment-item {
    background: #fff;
    border-radius: 14px;
    padding: 24px 22px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.hotel-environment-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.hotel-environment-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: rgba(196,162,98,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 22px;
}

.hotel-environment-text {
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
}

/* =========================================
   RESPONSIVE - LAPTOP
========================================= */
@media (max-width: 1100px) {
    .hotel-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-slide {
        flex: 0 0 calc((100% - 28px) / 2);
    }

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

/* =========================================
   RESPONSIVE - TABLET
========================================= */
@media (max-width: 992px) {
    .events-split-media {
        max-width: 100%;
    }

    .events-split-media img {
        max-height: none;
    }
}

/* =========================================
   RESPONSIVE - PHONE
========================================= */
@media (max-width: 768px) {
    .hotel-services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-slider-wrap {
        padding: 0 24px;
    }

    .testimonial-slide {
        flex: 0 0 100%;
    }

    .testimonial-card {
        min-height: auto;
    }

    .testimonials-nav {
        width: 38px;
        height: 38px;
    }

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

    .hotel-environment-item {
        padding: 20px 18px;
    }
}

/* =========================================
   FAQ SECTION
========================================= */
.faq-section {
    background: var(--beige);
}

.faq-list {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: none;
    background: #fff;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
}

.faq-icon {
    transition: transform .3s ease;
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer-inner {
    padding: 0 24px 22px;
    color: var(--gray);
    line-height: 1.9;
}

/* =========================================
   CONTACT SECTION
========================================= */
.contact-section {
    background: #fff;
}

.contact-home-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: stretch;
    padding: 39px;
}

.contact-home-form-side {
    background: #fff;
    padding: 0;
}

.contact-home-kicker {
    display: inline-block;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    margin-bottom: 12px;
}

.contact-home-title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    color: var(--dark);
    margin-bottom: 26px;
    line-height: 1.2;
}

.contact-home-form {
    background: #fff;
}

.contact-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-full {
    grid-column: 1 / -1;
}

.contact-home-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-home-form label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-home-form input,
.contact-home-form textarea {
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    padding: 14px 15px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    background: #fff;
}

.contact-home-form textarea {
    resize: vertical;
}

.contact-home-form input:focus,
.contact-home-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-submit-btn {
    margin-top: 20px;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 14px 22px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all .3s ease;
}

.contact-submit-btn:hover {
    background: #b08f4f;
}

.contact-home-map-side {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-home-map-card {
    min-height: 620px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    background: #f5f5f5;
}

.contact-home-map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
}

.contact-home-info-inline {
    display: grid;
    gap: 12px;
}

.contact-inline-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray);
    font-size: .98rem;
    line-height: 1.7;
}

.contact-inline-item i {
    color: var(--gold);
    min-width: 18px;
}

.contact-inline-item a {
    color: var(--gray);
}

.contact-alert {
    max-width: 100%;
    margin: 0 0 22px;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 14px;
}

.contact-alert.success {
    background: #e9f7ef;
    color: #1e7e34;
    border: 1px solid #bfe3cb;
}

.contact-alert.error {
    background: #fdecec;
    color: #b02a37;
    border: 1px solid #f5c2c7;
}

@media (max-width: 1100px) {
    .contact-home-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-home-grid {
        grid-template-columns: 1fr;
    }

    .contact-home-map-card,
    .contact-home-map-card iframe {
        min-height: 340px;
    }
}

/* =========================================
   WELCOME POPUP
========================================= */
.welcome-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.72);
    z-index: 15002;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    pointer-events: none;
}

.welcome-popup-overlay.active {
    display: flex;
    pointer-events: auto;
}

.welcome-popup {
    background: #fff;
    width: min(980px, 100%);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    animation: popupFadeUp .35s ease;
}

.popup-close-btn {
    position: absolute;
    top: 14px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: #333;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}

.popup-content {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    min-height: 520px;
}

.popup-text {
    padding: 48px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-text h2 {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    color: var(--dark);
    margin-bottom: 22px;
    line-height: 1.3;
}

.popup-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
    display: grid;
    gap: 12px;
}

.popup-benefits li {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1rem;
}

.popup-guarantee {
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 1rem;
}

.popup-book-btn {
    display: inline-block;
    align-self: flex-start;
    background: var(--gold);
    color: #fff;
    padding: 14px 26px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all .3s ease;
}

.popup-book-btn:hover {
    background: #b08f4f;
    color: #fff;
    transform: translateY(-2px);
}

.popup-image {
    min-height: 100%;
    background: #f2f2f2;
}

.popup-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

@keyframes popupFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   RESPONSIVE - LAPTOP
========================================= */
@media (max-width: 1100px) {
    .booking-form {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer-slide {
        flex: 0 0 calc((100% - 28px) / 2);
    }

    .room-slide {
        flex: 0 0 calc((90% - 32px) / 2);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-grid {
        grid-template-columns: 1fr 1fr;
    }
    #restaurant-home-intro .home-split-content {
        padding-left: 20px !important;
    }
}

/* =========================================
   RESPONSIVE - TABLET
========================================= */
@media (max-width: 992px) {
    .home-split-box,
    .home-split-box.reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .home-split-box.reverse .home-split-media,
    .home-split-box.reverse .home-split-content,
    .home-split-box .home-split-media,
    .home-split-box .home-split-content {
        order: initial;
    }

    .spa-split-media,
    .restaurant-split-media {
        max-width: 100%;
        margin-left: 0;
    }

    .spa-split-media img,
    .restaurant-split-media img {
        width: 100%;
        height: auto;
        max-height: none;
    }

    .home-split-title {
        font-size: clamp(1.9rem, 5vw, 2.8rem);
        margin-bottom: 18px;
    }

    .home-split-text {
        margin-bottom: 18px;
    }

    .home-split-list {
        gap: 12px;
        margin-bottom: 22px;
    }
    #restaurant-home-intro .home-split-content {
        padding-left: 0 !important;
    }
}

/* =========================================
   RESPONSIVE - PHONE
========================================= */
@media (max-width: 860px) {
    .welcome-popup-overlay {
        padding: 12px;
        align-items: center;
    }

    .welcome-popup {
        width: 100%;
        max-width: 100%;
        max-height: 85vh;
        overflow-y: auto;
        border-radius: 14px;
    }

    .popup-content {
        display: block;
        min-height: 0;
    }

    .popup-image {
        display: none;
    }

    .popup-text {
        padding: 24px 18px 22px;
    }

    .popup-text h2 {
        font-size: 1.45rem;
        margin-bottom: 16px;
    }

    .popup-benefits {
        gap: 10px;
        margin-bottom: 18px;
    }

    .popup-benefits li,
    .popup-guarantee {
        font-size: .93rem;
        line-height: 1.7;
    }

    .popup-book-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .home-page .section {
        padding: 70px 0;
    }

    .hero-carousel {
        min-height: 440px;
        height: 68vh;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-nav.prev {
        left: 10px;
    }

    .carousel-nav.next {
        right: 10px;
    }

    .carousel-dots {
        bottom: 16px;
    }

    .booking-bar {
        padding: 20px;
        margin-top: -25px;
        border-radius: 0;
    }

    .booking-form {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .booking-popup-body {
        padding: 16px;
    }

    .calendar-day {
        min-height: 38px;
        font-size: 13px;
    }

    .guest-label {
        font-size: 13px;
    }

    .booking-popup {
        width: calc(100vw - 20px) !important;
        max-width: calc(100vw - 20px) !important;
        max-height: 84vh !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

    .ratings {
        gap: 16px;
        margin-top: 24px;
    }

    .rating-item {
        width: 100%;
        min-width: 0;
        padding: 18px;
    }

    .offers-slider-wrap {
        padding: 0 24px;
    }

    .offer-slide {
        flex: 0 0 100%;
    }

    .offer-image {
        height: 230px;
    }

    .offers-nav {
        width: 38px;
        height: 38px;
    }

    .rooms-slider-wrap {
        padding: 0 24px;
    }

    .room-slide {
        flex: 0 0 100%;
    }

    .room-image {
        height: 240px;
    }

    .room-content {
        padding: 20px 18px 22px;
    }

    .room-actions {
        flex-direction: column;
    }

    .room-primary-btn,
    .room-secondary-btn {
        width: 100%;
    }

    .rooms-nav {
        width: 42px;
        height: 42px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .carousel-overlay h1 {
        font-size: 1.8rem;
    }

    .carousel-overlay p {
        font-size: .98rem;
    }

    .offer-title {
        font-size: 1.3rem;
    }

    .offer-description {
        font-size: .95rem;
    }
}


/* HERO TITLE MOBILE CLEAN */
.hero-title {
    margin-bottom: 6px !important;
}

.hero-title span {
    display: inline;
}

@media (max-width: 768px) {
    .carousel-overlay-inner {
        padding-top: 20px;
    }

    .hero-title {
        margin-bottom: 4px !important;
        line-height: 1.08 !important;
    }

    .hero-title span {
        display: block;
    }

    .hero-line1 {
        font-size: 1.35rem;
        font-weight: 500;
    }

    .hero-line2 {
        font-size: 1.75rem;
        font-weight: 800;
        text-transform: uppercase;
    }

    .carousel-overlay-inner > h1:not(.hero-title) {
        font-size: 1.15rem !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
        font-weight: 500;
    }

    .carousel-overlay-inner > p:first-of-type {
        font-size: 1.25rem !important;
        margin-bottom: 10px !important;
        font-weight: 600;
    }

    .carousel-overlay-inner > p:nth-of-type(2) {
        font-size: 1rem !important;
        margin-bottom: 22px !important;
    }
}



/* HOTEL INTRO LOGO STYLE */
.hotel-title-main {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 8px !important;
    line-height: 1.1;
}

.hotel-title-sub {
    font-size: clamp(1.25rem, 2.4vw, 2rem);
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 8px !important;
    line-height: 1.2;
}

.hotel-title-small {
    font-size: clamp(1rem, 1.8vw, 1.45rem);
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 24px !important;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hotel-title-sub,
    .hotel-title-small {
        margin-left: 0;
        text-align: center;
    }
}

@media (max-width: 768px) {

    .hotel-title-main {
        font-size: 1.9rem;
        letter-spacing: 2px;
    }

    .hotel-title-sub {
        font-size: 1.2rem;
        letter-spacing: 1.8px;
    }

    .hotel-title-small {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
    }

}