@charset "utf-8";
/* CSS Document */

:root {
    --bw-navy: #003f7d;
    --bw-dark-blue: #002f63;
    --bw-blue: #006aa6;
    --bw-light-blue: #009bd4;
    --bw-pale-blue: #eaf6fb;
    --bw-white: #ffffff;
    --bw-text: #243447;
    --bw-muted: #536476;
    --bw-border: #d7e3eb;
}

body {
    margin: 0;
    color: var(--bw-text);
    font-family: "Poppins", sans-serif;
}

/* Topbar */
.hotel-topbar {
    padding: 9px 0;
    background: linear-gradient(
        90deg,
        var(--bw-dark-blue),
        var(--bw-navy),
        var(--bw-blue)
    );
    color: var(--bw-white);
    font-size: 13px;
}

.topbar-location,
.topbar-links,
.topbar-links a {
    display: flex;
    align-items: center;
}

.topbar-location {
    gap: 8px;
}

.topbar-location i {
    color: #ffffff;
}

.topbar-links {
    gap: 22px;
}

.topbar-links a {
    gap: 7px;
    color: var(--bw-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.topbar-links a:hover,
.topbar-links a:focus {
    color: var(--bw-white);
    opacity: 0.82;
}

.topbar-links a:focus-visible {
    outline: 2px solid var(--bw-white);
    outline-offset: 3px;
}

/* Main Header */
.hotel-header {
    position: relative;
    z-index: 1000;
    background-color: var(--bw-white);
    border-bottom: 3px solid var(--bw-light-blue);
    box-shadow: 0 5px 25px rgba(0, 63, 125, 0.14);
}

.hotel-header .navbar {
    min-height: 94px;
    padding: 12px 0;
}

/* Logo */
.hotel-logo {
    width: auto;
    max-width: 220px;
    height: 70px;
    object-fit: contain;
}

/* Navbar */
.hotel-header .navbar-nav {
    gap: 4px;
}

.hotel-header .nav-link {
    position: relative;
    padding: 12px 11px !important;
    color: var(--bw-text);
    font-size:18px;
    font-weight: 600;
    letter-spacing: 0.1px;
    transition: color 0.3s ease;
}

.hotel-header .nav-link::after {
    content: "";
    position: absolute;
    right: 11px;
    bottom: 6px;
    left: 11px;
    height: 3px;
    border-radius: 4px;
    background: linear-gradient(
        90deg,
        var(--bw-navy),
        var(--bw-light-blue)
    );
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.hotel-header .nav-link:hover,
.hotel-header .nav-link:focus,
.hotel-header .nav-link.active {
    color: var(--bw-navy);
}

.hotel-header .nav-link:hover::after,
.hotel-header .nav-link:focus::after,
.hotel-header .nav-link.active::after {
    transform: scaleX(1);
}

.hotel-header .nav-link:focus-visible {
    outline: 2px solid var(--bw-navy);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Phone */
.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--bw-text);
    text-decoration: none;
}

.phone-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #c9e6f3;
    border-radius: 50%;
    background-color: var(--bw-pale-blue);
    color: var(--bw-navy);
    font-size: 16px;
    transition: all 0.3s ease;
}

.phone-details {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.phone-details small {
    color: var(--bw-muted);
    font-size: 11px;
    font-weight: 500;
}

.phone-details strong {
    color: var(--bw-navy);
    font-size: 14px;
    white-space: nowrap;
}

.header-phone:hover .phone-icon,
.header-phone:focus .phone-icon {
    border-color: var(--bw-navy);
    background-color: var(--bw-navy);
    color: var(--bw-white);
}

.header-phone:hover strong,
.header-phone:focus strong {
    color: var(--bw-blue);
}

/* Book Now */
.book-now-btn {
    min-height: 48px;
    padding: 13px 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 2px solid var(--bw-navy);
    border-radius: 30px;
    background: linear-gradient(
        135deg,
        var(--bw-navy),
        var(--bw-blue)
    );
    color: var(--bw-white);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 7px 18px rgba(0, 63, 125, 0.24);
    transition: all 0.3s ease;
}

.book-now-btn:hover,
.book-now-btn:focus {
    background: var(--bw-white);
    color: var(--bw-navy);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 63, 125, 0.25);
}

.header-phone:focus-visible,
.book-now-btn:focus-visible {
    outline: 3px solid var(--bw-dark-blue);
    outline-offset: 3px;
}

/* Mobile Toggle */
.hotel-header .navbar-toggler {
    padding: 8px 10px;
    border: 2px solid var(--bw-navy);
    box-shadow: none;
}

.hotel-header .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(0, 106, 166, 0.25);
}

/* Tablet */
@media (max-width: 1199px) {
    .header-phone {
        display: none;
    }

    .hotel-header .nav-link {
        padding-right: 8px !important;
        padding-left: 8px !important;
        font-size: 13px;
    }

    .hotel-logo {
        max-width: 190px;
    }
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .hotel-header .navbar {
        min-height: auto;
        padding: 10px 0;
    }

    .hotel-logo {
        max-width: 170px;
        height: 58px;
    }

    .hotel-header .navbar-collapse {
        margin-top: 12px;
        padding: 18px;
        border-top: 1px solid var(--bw-border);
        border-radius: 0 0 12px 12px;
        background-color: var(--bw-white);
    }

    .hotel-header .navbar-nav {
        gap: 0;
    }

    .hotel-header .nav-link {
        padding: 12px 5px !important;
        border-bottom: 1px solid #e8eef2;
        font-size: 14px;
    }

    .hotel-header .nav-link::after {
        display: none;
    }

    .header-actions {
        margin-top: 18px;
        align-items: stretch;
        flex-direction: column;
    }

    .header-phone {
        display: flex;
    }

    .book-now-btn {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .hotel-topbar {
        padding: 10px 0;
    }

    .topbar-location {
        justify-content: center;
    }

    .topbar-links {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .topbar-location {
        align-items: flex-start;
        font-size: 12px;
    }

    .topbar-links {
        flex-wrap: wrap;
        font-size: 12px;
    }

    .hotel-logo {
        max-width: 145px;
        height: 52px;
    }
}
:root {
    --bw-navy: #003f7d;
    --bw-dark-blue: #002f63;
    --bw-blue: #006aa6;
    --bw-light-blue: #009bd4;
    --bw-white: #ffffff;
}

.hotel-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--bw-dark-blue);
}

.hotel-slider .carousel,
.hotel-slider .carousel-inner,
.hotel-slider .carousel-item {
    height: clamp(480px, 75vh, 760px);
}

.slider-image-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
}

/* Zoom Effect */
.carousel-item.active .slider-image {
    animation: hotelSliderZoom 7s ease-in-out forwards;
}

@keyframes hotelSliderZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.12);
    }
}

/* Dark Overlay */
.slider-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(0, 35, 72, 0.78) 0%,
            rgba(0, 63, 125, 0.52) 45%,
            rgba(0, 38, 75, 0.25) 100%
        );
}

/* Caption */
.hotel-slider .carousel-caption {
    right: auto;
    bottom: auto;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 100%;
    max-width: 1320px;
    padding: 0 90px;
    text-align: left;
    transform: translate(-50%, -50%);
}

.slider-subtitle {
    display: inline-block;
    margin-bottom: 13px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hotel-slider .carousel-caption h1,
.hotel-slider .carousel-caption h2 {
    max-width: 750px;
    margin: 0 0 18px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: clamp(38px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.08;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.32);
}

.hotel-slider .carousel-caption p {
    max-width: 650px;
    margin: 0 0 30px;
    color: #ffffff;
    font-size: clamp(16px, 1.7vw, 20px);
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

/* Caption Animation */
.carousel-item .slider-subtitle,
.carousel-item .carousel-caption h1,
.carousel-item .carousel-caption h2,
.carousel-item .carousel-caption p,
.carousel-item .slider-book-btn {
    opacity: 0;
    transform: translateY(30px);
}

.carousel-item.active .slider-subtitle {
    animation: sliderContentUp 0.7s 0.2s forwards;
}

.carousel-item.active .carousel-caption h1,
.carousel-item.active .carousel-caption h2 {
    animation: sliderContentUp 0.7s 0.4s forwards;
}

.carousel-item.active .carousel-caption p {
    animation: sliderContentUp 0.7s 0.6s forwards;
}

.carousel-item.active .slider-book-btn {
    animation: sliderContentUp 0.7s 0.8s forwards;
}

@keyframes sliderContentUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Button */
.slider-book-btn {
    min-height: 52px;
    padding: 14px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    border-radius: 30px;
    background: linear-gradient(
        135deg,
        var(--bw-navy),
        var(--bw-blue)
    );
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 31, 66, 0.3);
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.slider-book-btn:hover,
.slider-book-btn:focus {
    background: #ffffff;
    color: var(--bw-navy);
    transform: translateY(-3px);
}

.slider-book-btn:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 4px;
}

/* Previous and Next Buttons */
.hotel-slider .carousel-control-prev,
.hotel-slider .carousel-control-next {
    top: 50%;
    bottom: auto;
    z-index: 3;
    width: 62px;
    height: 62px;
    opacity: 1;
    transform: translateY(-50%);
}

.hotel-slider .carousel-control-prev {
    left: 25px;
}

.hotel-slider .carousel-control-next {
    right: 25px;
}

.slider-control-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    background-color: rgba(0, 47, 99, 0.72);
    color: #ffffff;
    font-size: 19px;
    backdrop-filter: blur(6px);
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.carousel-control-prev:hover .slider-control-icon,
.carousel-control-next:hover .slider-control-icon,
.carousel-control-prev:focus .slider-control-icon,
.carousel-control-next:focus .slider-control-icon {
    border-color: #ffffff;
    background-color: var(--bw-blue);
    transform: scale(1.08);
}

.carousel-control-prev:focus-visible,
.carousel-control-next:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 4px;
}

/* Indicators */
.hotel-slider .carousel-indicators {
    z-index: 4;
    margin-bottom: 25px;
    gap: 8px;
}

.hotel-slider .carousel-indicators button {
    width: 11px;
    height: 11px;
    margin: 0;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background-color: transparent;
    opacity: 1;
    transition:
        width 0.3s ease,
        border-radius 0.3s ease,
        background-color 0.3s ease;
}

.hotel-slider .carousel-indicators button.active {
    width: 34px;
    border-radius: 10px;
    background-color: #ffffff;
}

/* Tablet */
@media (max-width: 991px) {
    .hotel-slider .carousel,
    .hotel-slider .carousel-inner,
    .hotel-slider .carousel-item {
        height: 600px;
    }

    .hotel-slider .carousel-caption {
        padding: 0 75px;
    }

    .hotel-slider .carousel-control-prev {
        left: 12px;
    }

    .hotel-slider .carousel-control-next {
        right: 12px;
    }

    .slider-control-icon {
        width: 48px;
        height: 48px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hotel-slider .carousel,
    .hotel-slider .carousel-inner,
    .hotel-slider .carousel-item {
        height: 520px;
    }

    .hotel-slider .carousel-caption {
        padding: 0 55px;
        text-align: center;
    }

    .slider-overlay {
        background: rgba(0, 40, 82, 0.62);
    }

    .hotel-slider .carousel-caption p {
        margin-bottom: 24px;
        font-size: 15px;
        line-height: 1.6;
    }

    .slider-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .slider-book-btn {
        min-height: 47px;
        padding: 12px 22px;
        font-size: 14px;
    }

    .hotel-slider .carousel-control-prev,
    .hotel-slider .carousel-control-next {
        width: 44px;
        height: 44px;
    }

    .hotel-slider .carousel-control-prev {
        left: 5px;
    }

    .hotel-slider .carousel-control-next {
        right: 5px;
    }

    .slider-control-icon {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hotel-slider .carousel,
    .hotel-slider .carousel-inner,
    .hotel-slider .carousel-item {
        height: 480px;
    }

    .hotel-slider .carousel-caption {
        padding: 0 48px;
    }

    .hotel-slider .carousel-caption h1,
    .hotel-slider .carousel-caption h2 {
        font-size: 32px;
    }
}

/* Reduced Motion Accessibility */
@media (prefers-reduced-motion: reduce) {
    .carousel-item.active .slider-image,
    .carousel-item.active .slider-subtitle,
    .carousel-item.active .carousel-caption h1,
    .carousel-item.active .carousel-caption h2,
    .carousel-item.active .carousel-caption p,
    .carousel-item.active .slider-book-btn {
        animation: none;
    }

    .carousel-item.active .slider-subtitle,
    .carousel-item.active .carousel-caption h1,
    .carousel-item.active .carousel-caption h2,
    .carousel-item.active .carousel-caption p,
    .carousel-item.active .slider-book-btn {
        opacity: 1;
        transform: none;
    }
}
:root {
    --bw-navy: #003f7d;
    --bw-dark-blue: #002f63;
    --bw-blue: #006aa6;
    --bw-light-blue: #009bd4;
    --bw-pale-blue: #eef8fc;
    --bw-white: #ffffff;
    --bw-text: #243447;
    --bw-border: #cddde8;
}
.reservation-section { width:70%;
margin:auto;
    position: relative;
    z-index: 10;
    font-family: "Poppins", sans-serif;
}
.reservation-box { width:100%;
    position: relative;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--bw-border);
    border-radius: 22px;
    background-color: var(--bw-white);
    box-shadow: 0 18px 45px rgba(0, 63, 125, 0.16);
}

  .reservation-box label {
    color: #000;
    font-weight: 500;
  }
.booking-label {
  color: #111111 !important;
  background-color: #ffffff;
  font-weight: 600;
}
  .reservation-box .form-control,
  .reservation-box .form-select {
    border-radius: 6px;
  }

  .reservation-box .btn-book {
    background-color: #005baa; /* Lighter blue from logo */
    color: white;
    font-weight: bold;
    border-radius: 6px;
    padding: 10px 20px;
  }

  .reservation-box .btn-book:hover {
    background-color: #003f7f;
  }
  label.form-label.booking-label {
 display: inline-block;
  color: #000000 !important;
  background: #ffffff !important;
  opacity: 1 !important;
  text-shadow: none !important;
}
.welcome-section {
    background-color: #f2f7fb;
    font-family: "Poppins", sans-serif;
}

.welcome-content {
    position: relative;
    overflow: hidden;
    border: 1px solid #d9e7f0;
    border-radius: 24px;
    background-color: #ffffff;
    box-shadow: 0 18px 45px rgba(0, 63, 125, 0.12);
}

.welcome-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #002f63, #006aa6, #009bd4);
}

.welcome-image-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    border-radius: 20px;
    background-color: #e8f2f8;
}

.welcome-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.welcome-image-wrapper:hover .welcome-image {
    transform: scale(1.05);
}

.welcome-badge {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 14px;
    background-color: rgba(0, 47, 99, 0.9);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    backdrop-filter: blur(6px);
}

.welcome-small-title {
    margin-bottom: 8px;
    color: #006aa6;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.welcome-main-title {
    margin-bottom: 10px;
    color: #003f7d;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.15;
}

.welcome-subtitle {
    max-width: 680px;
    color: #243447;
    font-size: clamp(19px, 2vw, 25px);
    font-weight: 600;
    line-height: 1.45;
}

.welcome-divider {
    width: 85px;
    height: 4px;
    margin: 22px 0;
    border-radius: 5px;
    background: linear-gradient(90deg, #003f7d, #009bd4);
}

.welcome-text p {
    color: #465767;
    font-size: 16px;
    line-height: 1.85;
}

.welcome-features {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.welcome-feature {
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid #cfe2ee;
    border-radius: 30px;
    background-color: #edf7fb;
    color: #003f7d;
    font-size: 13px;
    font-weight: 600;
}

.welcome-feature i {
    color: #006aa6;
    font-size: 15px;
}
@media (max-width: 575px) {
    .reservation-box { width:100% !important;
        padding: 24px 18px;
        border-radius: 16px;
    }}
@media (max-width: 991px) {
    .welcome-image-wrapper,
    .welcome-image {
        min-height: 400px;
    }
}

@media (max-width: 575px) {
    .welcome-content {
        border-radius: 16px;
    }

    .welcome-image-wrapper,
    .welcome-image {
        min-height: 300px;
    }

    .welcome-main-title {
        font-size: 31px;
    }

    .welcome-subtitle {
        font-size: 19px;
    }

    .welcome-text p {
        font-size: 15px;
        line-height: 1.75;
    }

    .welcome-feature {
        width: 100%;
        justify-content: center;
    }
}
:root {
    --bw-navy: #003f7d;
    --bw-dark-blue: #002f63;
    --bw-blue: #006aa6;
    --bw-light-blue: #009bd4;
    --bw-pale-blue: #eef8fc;
    --bw-white: #ffffff;
    --bw-text: #243447;
    --bw-muted: #536476;
    --bw-border: #d4e2eb;
}

.rooms-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at top right,
            rgba(0, 155, 212, 0.1),
            transparent 35%
        ),
        #f3f8fb;
    font-family: "Poppins", sans-serif;
}

.rooms-section-header {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
}

.rooms-small-title {
    margin-bottom: 7px;
    color: var(--bw-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.rooms-main-title {
    margin-bottom: 10px;
    color: var(--bw-navy);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.2;
}

.rooms-section-header p {
    max-width: 700px;
    margin: 0;
    color: var(--bw-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* Scroll Buttons */
.room-scroll-controls {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.room-scroll-btn {
    width: 49px;
    height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bw-navy);
    border-radius: 50%;
    background-color: var(--bw-white);
    color: var(--bw-navy);
    font-size: 16px;
    box-shadow: 0 7px 18px rgba(0, 63, 125, 0.12);
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.room-scroll-btn:hover,
.room-scroll-btn:focus {
    background-color: var(--bw-navy);
    color: var(--bw-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 63, 125, 0.22);
}

.room-scroll-btn:focus-visible {
    outline: 3px solid var(--bw-light-blue);
    outline-offset: 3px;
}

/* Horizontal Scroll */
.rooms-scroll-wrapper {
    padding: 5px 3px 25px;
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--bw-blue) #dfeaf1;
}

.rooms-scroll-wrapper::-webkit-scrollbar {
    height: 8px;
}

.rooms-scroll-wrapper::-webkit-scrollbar-track {
    border-radius: 20px;
    background-color: #dfeaf1;
}

.rooms-scroll-wrapper::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background: linear-gradient(
        90deg,
        var(--bw-navy),
        var(--bw-light-blue)
    );
}

/* Room Card */
.room-card {
    min-width: calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid var(--bw-border);
    border-radius: 20px;
    background-color: var(--bw-white);
    box-shadow: 0 14px 35px rgba(0, 63, 125, 0.11);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.room-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 45px rgba(0, 63, 125, 0.19);
}

/* Room Image */
.room-image-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
    background-color: #dbe8f0;
}

.room-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0, 35, 72, 0.5),
        transparent 55%
    );
}

.room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.room-card:hover .room-image {
    transform: scale(1.08);
}

.room-image-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 2;
    padding: 9px 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 24px;
    background-color: rgba(0, 47, 99, 0.9);
    color: var(--bw-white);
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(6px);
}

.room-image-view {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    width: 43px;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    background-color: rgba(0, 47, 99, 0.75);
    color: var(--bw-white);
    text-decoration: none;
    backdrop-filter: blur(5px);
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.room-image-view:hover,
.room-image-view:focus {
    background-color: var(--bw-light-blue);
    color: var(--bw-white);
    transform: scale(1.08);
}

.room-image-view:focus-visible {
    outline: 3px solid var(--bw-white);
    outline-offset: 3px;
}

/* Card Content */
.room-card-content {
    padding: 24px;
}

.room-card-title {
    min-height: 58px;
    margin-bottom: 10px;
    color: var(--bw-navy);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
}

.room-card-content p {
    min-height: 78px;
    margin-bottom: 18px;
    color: var(--bw-muted);
    font-size: 14px;
    line-height: 1.75;
}

.room-features {
    padding: 16px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    border-top: 1px solid #e2ebf1;
    border-bottom: 1px solid #e2ebf1;
}

.room-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #3d5062;
    font-size: 12px;
    font-weight: 600;
}

.room-features i {
    color: var(--bw-blue);
}

/* Card Buttons */
.room-card-footer {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.room-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--bw-navy);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.room-details-btn i {
    transition: transform 0.3s ease;
}

.room-details-btn:hover,
.room-details-btn:focus {
    color: var(--bw-blue);
}

.room-details-btn:hover i,
.room-details-btn:focus i {
    transform: translateX(4px);
}

.room-book-btn {
    min-height: 42px;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bw-navy);
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        var(--bw-dark-blue),
        var(--bw-blue)
    );
    color: var(--bw-white);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.room-book-btn:hover,
.room-book-btn:focus {
    background: var(--bw-white);
    color: var(--bw-navy);
    transform: translateY(-2px);
}

.room-details-btn:focus-visible,
.room-book-btn:focus-visible {
    outline: 3px solid var(--bw-light-blue);
    outline-offset: 3px;
}

/* Scroll Note */
.rooms-scroll-note {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--bw-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Tablet */
@media (max-width: 991px) {
    .room-card {
        min-width: calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }

    .room-image-wrapper {
        height: 245px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .rooms-section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .room-scroll-controls {
        align-self: flex-end;
    }

    .room-card {
        min-width: 85%;
        max-width: 85%;
    }

    .room-image-wrapper {
        height: 230px;
    }

    .room-card-title,
    .room-card-content p {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .room-card {
        min-width: 94%;
        max-width: 94%;
    }

    .room-card-content {
        padding: 20px;
    }

    .room-card-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .room-details-btn,
    .room-book-btn {
        width: 100%;
        justify-content: center;
    }

    .rooms-scroll-note {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rooms-scroll-wrapper {
        scroll-behavior: auto;
    }

    .room-card,
    .room-image,
    .room-scroll-btn,
    .room-book-btn {
        transition: none;
    }
}
:root {
    --bw-navy: #003f7d;
    --bw-dark-blue: #002f63;
    --bw-blue: #006aa6;
    --bw-light-blue: #009bd4;
    --bw-pale-blue: #eef8fc;
    --bw-white: #ffffff;
    --bw-text: #243447;
    --bw-muted: #536476;
    --bw-border: #d4e2eb;
}

.rooms-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at top right,
            rgba(0, 155, 212, 0.1),
            transparent 35%
        ),
        #f3f8fb;
    font-family: "Poppins", sans-serif;
}

.rooms-section-header {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
}

.rooms-small-title {
    margin-bottom: 7px;
    color: var(--bw-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.rooms-main-title {
    margin-bottom: 10px;
    color: var(--bw-navy);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.2;
}

.rooms-section-header p {
    max-width: 700px;
    margin: 0;
    color: var(--bw-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* Scroll Buttons */
.room-scroll-controls {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.room-scroll-btn {
    width: 49px;
    height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bw-navy);
    border-radius: 50%;
    background-color: var(--bw-white);
    color: var(--bw-navy);
    font-size: 16px;
    box-shadow: 0 7px 18px rgba(0, 63, 125, 0.12);
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.room-scroll-btn:hover,
.room-scroll-btn:focus {
    background-color: var(--bw-navy);
    color: var(--bw-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 63, 125, 0.22);
}

.room-scroll-btn:focus-visible {
    outline: 3px solid var(--bw-light-blue);
    outline-offset: 3px;
}

/* Horizontal Scroll */
.rooms-scroll-wrapper {
    padding: 5px 3px 25px;
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--bw-blue) #dfeaf1;
}

.rooms-scroll-wrapper::-webkit-scrollbar {
    height: 8px;
}

.rooms-scroll-wrapper::-webkit-scrollbar-track {
    border-radius: 20px;
    background-color: #dfeaf1;
}

.rooms-scroll-wrapper::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background: linear-gradient(
        90deg,
        var(--bw-navy),
        var(--bw-light-blue)
    );
}

/* Room Card */
.room-card {
    min-width: calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid var(--bw-border);
    border-radius: 20px;
    background-color: var(--bw-white);
    box-shadow: 0 14px 35px rgba(0, 63, 125, 0.11);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.room-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 45px rgba(0, 63, 125, 0.19);
}

/* Room Image */
.room-image-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
    background-color: #dbe8f0;
}

.room-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0, 35, 72, 0.5),
        transparent 55%
    );
}

.room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.room-card:hover .room-image {
    transform: scale(1.08);
}

.room-image-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 2;
    padding: 9px 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 24px;
    background-color: rgba(0, 47, 99, 0.9);
    color: var(--bw-white);
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(6px);
}

.room-image-view {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    width: 43px;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    background-color: rgba(0, 47, 99, 0.75);
    color: var(--bw-white);
    text-decoration: none;
    backdrop-filter: blur(5px);
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.room-image-view:hover,
.room-image-view:focus {
    background-color: var(--bw-light-blue);
    color: var(--bw-white);
    transform: scale(1.08);
}

.room-image-view:focus-visible {
    outline: 3px solid var(--bw-white);
    outline-offset: 3px;
}

/* Card Content */
.room-card-content {
    padding: 24px;
}

.room-card-title {
    min-height: 58px;
    margin-bottom: 10px;
    color: var(--bw-navy);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
}

.room-card-content p {
    min-height: 78px;
    margin-bottom: 18px;
    color: var(--bw-muted);
    font-size: 14px;
    line-height: 1.75;
}

.room-features {
    padding: 16px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    border-top: 1px solid #e2ebf1;
    border-bottom: 1px solid #e2ebf1;
}

.room-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #3d5062;
    font-size: 12px;
    font-weight: 600;
}

.room-features i {
    color: var(--bw-blue);
}

/* Card Buttons */
.room-card-footer {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.room-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--bw-navy);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.room-details-btn i {
    transition: transform 0.3s ease;
}

.room-details-btn:hover,
.room-details-btn:focus {
    color: var(--bw-blue);
}

.room-details-btn:hover i,
.room-details-btn:focus i {
    transform: translateX(4px);
}

.room-book-btn {
    min-height: 42px;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bw-navy);
    border-radius: 24px;
    background: #000;
    );
    color: #FFF;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.room-book-btn:hover,
.room-book-btn:focus {
    background: var(--bw-white);
    color: var(--bw-navy);
    transform: translateY(-2px);
}

.room-details-btn:focus-visible,
.room-book-btn:focus-visible {
    outline: 3px solid var(--bw-light-blue);
    outline-offset: 3px;
}

/* Scroll Note */
.rooms-scroll-note {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--bw-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Tablet */
@media (max-width: 991px) {
    .room-card {
        min-width: calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }

    .room-image-wrapper {
        height: 245px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .rooms-section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .room-scroll-controls {
        align-self: flex-end;
    }

    .room-card {
        min-width: 85%;
        max-width: 85%;
    }

    .room-image-wrapper {
        height: 230px;
    }

    .room-card-title,
    .room-card-content p {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .room-card {
        min-width: 94%;
        max-width: 94%;
    }

    .room-card-content {
        padding: 20px;
    }

    .room-card-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .room-details-btn,
    .room-book-btn {
        width: 100%;
        justify-content: center;
    }

    .rooms-scroll-note {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rooms-scroll-wrapper {
        scroll-behavior: auto;
    }

    .room-card,
    .room-image,
    .room-scroll-btn,
    .room-book-btn {
        transition: none;
    }
}
:root {
    --bw-navy: #003f7d;
    --bw-dark-blue: #002f63;
    --bw-blue: #006aa6;
    --bw-light-blue: #009bd4;
    --bw-pale-blue: #eef8fc;
    --bw-white: #ffffff;
    --bw-text: #243447;
    --bw-muted: #536476;
    --bw-border: #d4e3ec;
}

.video-faq-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at top left,
            rgba(0, 155, 212, 0.12),
            transparent 32%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(0, 63, 125, 0.1),
            transparent 30%
        ),
        #f3f8fb;
    font-family: "Poppins", sans-serif;
}

.section-intro {
    max-width: 820px;
    margin-bottom: 42px;
}

.section-small-title {
    margin-bottom: 9px;
    color: var(--bw-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-main-title {
    margin-bottom: 13px;
    color: var(--bw-navy);
    font-size: clamp(30px, 4vw, 47px);
    font-weight: 700;
    line-height: 1.2;
}

.section-intro p {
    margin: 0;
    color: var(--bw-muted);
    font-size: 16px;
    line-height: 1.75;
}

/* Video Card */
.hotel-video-card,
.faq-card {
    overflow: hidden;
    border: 1px solid var(--bw-border);
    border-radius: 23px;
    background-color: var(--bw-white);
    box-shadow: 0 18px 45px rgba(0, 63, 125, 0.13);
}

.hotel-video-card {
    position: sticky;
    top: 25px;
}

.video-card-header,
.faq-card-heading {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.video-header-icon,
.faq-heading-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 17px;
    background: linear-gradient(
        135deg,
        var(--bw-dark-blue),
        var(--bw-blue)
    );
    color: var(--bw-white);
    font-size: 23px;
    box-shadow: 0 8px 20px rgba(0, 63, 125, 0.24);
}

.video-card-title,
.faq-main-title {
    margin-bottom: 5px;
    color: var(--bw-navy);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
}

.video-card-header p,
.faq-card-heading p {
    margin: 0;
    color: var(--bw-muted);
    font-size: 13px;
    line-height: 1.65;
}

.video-wrapper {
    margin: 0;
    overflow: hidden;
    background-color: var(--bw-dark-blue);
}

.video-wrapper iframe {
    border: 0;
}

/* Video Amenities */
.video-features {
    padding: 22px 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    border-bottom: 1px solid #e1ebf1;
}

.video-feature {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #d7e6ef;
    border-radius: 12px;
    background-color: var(--bw-pale-blue);
    color: var(--bw-navy);
    font-size: 13px;
    font-weight: 600;
}

.video-feature i {
    width: 22px;
    color: var(--bw-blue);
    font-size: 16px;
    text-align: center;
}

.video-card-footer {
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.video-card-footer div {
    display: flex;
    flex-direction: column;
}

.footer-small-text {
    color: var(--bw-muted);
    font-size: 12px;
}

.video-card-footer strong {
    color: var(--bw-navy);
    font-size: 15px;
}

.video-book-btn {
    min-height: 47px;
    padding: 12px 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid var(--bw-navy);
    border-radius: 26px;
    background: linear-gradient(
        135deg,
        var(--bw-dark-blue),
        var(--bw-blue)
    );
    color: var(--bw-white);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0, 63, 125, 0.2);
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.video-book-btn:hover,
.video-book-btn:focus {
    background: var(--bw-white);
    color: var(--bw-navy);
    transform: translateY(-2px);
}

.video-book-btn:focus-visible {
    outline: 3px solid var(--bw-light-blue);
    outline-offset: 3px;
}

/* FAQ */
.faq-card {
    padding-bottom: 8px;
}

.faq-card-heading {
    border-bottom: 1px solid #e2ebf1;
}

.hotel-faq-accordion {
    padding: 12px 18px 18px;
}

.hotel-faq-accordion .accordion-item {
    margin-bottom: 11px;
    overflow: hidden;
    border: 1px solid var(--bw-border);
    border-radius: 14px;
    background-color: var(--bw-white);
}

.hotel-faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.hotel-faq-accordion .accordion-button {
    min-height: 67px;
    padding: 15px 18px;
    gap: 12px;
    background-color: var(--bw-white);
    color: var(--bw-text);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
    box-shadow: none;
}

.hotel-faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(
        90deg,
        var(--bw-pale-blue),
        #ffffff
    );
    color: var(--bw-navy);
    box-shadow: none;
}

.hotel-faq-accordion .accordion-button:focus {
    border-color: var(--bw-blue);
    box-shadow: 0 0 0 3px rgba(0, 106, 166, 0.16);
}

.hotel-faq-accordion .accordion-button::after {
    width: 34px;
    height: 34px;
    margin-left: auto;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: var(--bw-pale-blue);
    background-position: center;
    background-size: 15px;
}

.hotel-faq-accordion .accordion-button:not(.collapsed)::after {
    background-color: #d8eef8;
}

.faq-number {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 10px;
    background-color: var(--bw-pale-blue);
    color: var(--bw-blue);
    font-size: 11px;
    font-weight: 700;
}

.accordion-button:not(.collapsed) .faq-number {
    background-color: var(--bw-navy);
    color: var(--bw-white);
}

.hotel-faq-accordion .accordion-body {
    padding: 4px 18px 19px 65px;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--bw-muted);
}

.hotel-faq-accordion .accordion-body i {
    margin-top: 4px;
    color: var(--bw-blue);
    font-size: 15px;
}

.hotel-faq-accordion .accordion-body p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
}

/* Tablet */
@media (max-width: 991px) {
    .hotel-video-card {
        position: static;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .section-intro {
        margin-bottom: 30px;
    }

    .hotel-video-card,
    .faq-card {
        border-radius: 17px;
    }

    .video-card-header,
    .faq-card-heading {
        padding: 20px 17px;
        align-items: flex-start;
    }

    .video-header-icon,
    .faq-heading-icon {
        width: 49px;
        height: 49px;
        border-radius: 14px;
        font-size: 19px;
    }

    .video-card-title,
    .faq-main-title {
        font-size: 18px;
    }

    .video-features {
        padding: 18px;
        grid-template-columns: 1fr;
    }

    .video-card-footer {
        padding: 19px;
        align-items: stretch;
        flex-direction: column;
    }

    .video-book-btn {
        width: 100%;
    }

    .hotel-faq-accordion {
        padding: 10px 12px 14px;
    }

    .hotel-faq-accordion .accordion-button {
        padding: 14px;
        font-size: 13px;
    }

    .hotel-faq-accordion .accordion-body {
        padding: 4px 15px 17px;
    }

    .faq-number {
        display: none;
    }
}
.accessibility-support-section {
    background-color: #f3f8fb;
    font-family: "Poppins", sans-serif;
}

.accessibility-support-box {
    position: relative;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 22px;
    overflow: hidden;
    border: 1px solid #c9deeb;
    border-radius: 22px;
    background:
        linear-gradient(
            115deg,
            rgba(234, 246, 251, 0.98),
            rgba(255, 255, 255, 0.98)
        );
    box-shadow: 0 15px 38px rgba(0, 63, 125, 0.13);
}

.accessibility-support-box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 7px;
    background: linear-gradient(
        to bottom,
        #002f63,
        #006aa6,
        #009bd4
    );
}

.accessibility-icon {
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, #002f63, #006aa6);
    color: #ffffff;
    font-size: 34px;
    box-shadow: 0 10px 24px rgba(0, 63, 125, 0.25);
}

.accessibility-content {
    flex: 1;
}

.accessibility-title {
    margin-bottom: 7px;
    color: #003f7d;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.accessibility-content p {
    max-width: 850px;
    margin: 0;
    color: #33495c;
    font-size: 15px;
    line-height: 1.75;
}

.accessibility-content p a {
    color: #004f87;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.accessibility-content p a:hover,
.accessibility-content p a:focus {
    color: #002f63;
}

.accessibility-call-btn {
    min-height: 50px;
    padding: 13px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 2px solid #003f7d;
    border-radius: 28px;
    background: linear-gradient(135deg, #002f63, #006aa6);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0, 63, 125, 0.22);
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.accessibility-call-btn:hover,
.accessibility-call-btn:focus {
    background: #ffffff;
    color: #003f7d;
    transform: translateY(-2px);
    box-shadow: 0 11px 25px rgba(0, 63, 125, 0.25);
}

.accessibility-call-btn:focus-visible,
.accessibility-content p a:focus-visible {
    outline: 3px solid #009bd4;
    outline-offset: 4px;
}

@media (max-width: 991px) {
    .accessibility-support-box {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .accessibility-action {
        width: 100%;
        padding-left: 98px;
    }
}

@media (max-width: 575px) {
    .accessibility-support-box {
        padding: 25px 20px;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .accessibility-icon {
        width: 66px;
        height: 66px;
        border-radius: 18px;
        font-size: 29px;
    }

    .accessibility-title {
        font-size: 21px;
    }

    .accessibility-content p {
        font-size: 14px;
    }

    .accessibility-action {
        width: 100%;
        padding-left: 0;
    }

    .accessibility-call-btn {
        width: 100%;
    }
}
:root {
    --bw-navy: #003f7d;
    --bw-dark-blue: #002f63;
    --bw-deep-blue: #001f43;
    --bw-blue: #006aa6;
    --bw-light-blue: #009bd4;
    --bw-white: #ffffff;
    --bw-footer-text: #d9e8f2;
    --bw-footer-muted: #b9cedd;
    --bw-footer-border: rgba(255, 255, 255, 0.16);
}

.hotel-footer {
    position: relative;
    overflow: hidden;
    color: var(--bw-white);
    font-family: "Poppins", sans-serif;
}

.footer-main {
    position: relative;
    padding: 75px 0 55px;
    background:
        radial-gradient(
            circle at top right,
            rgba(0, 155, 212, 0.25),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            var(--bw-deep-blue),
            var(--bw-dark-blue) 55%,
            var(--bw-navy)
        );
}

.footer-main::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 6px;
    background: linear-gradient(
        90deg,
        var(--bw-dark-blue),
        var(--bw-blue),
        var(--bw-light-blue)
    );
}

.footer-main::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    border: 70px solid rgba(255, 255, 255, 0.025);
    border-radius: 50%;
    pointer-events: none;
}

/* Logo and About */
.footer-about {
    position: relative;
    z-index: 1;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 22px;
    padding: 12px 16px;
    border-radius: 14px;
    background-color: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.footer-logo {
    width: auto;
    max-width: 205px;
    height: 64px;
    object-fit: contain;
}

.footer-about p {
    max-width: 390px;
    margin-bottom: 24px;
    color: var(--bw-footer-text);
    font-size: 14px;
    line-height: 1.8;
}

.footer-book-btn {
    min-height: 49px;
    padding: 12px 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 2px solid #ffffff;
    border-radius: 28px;
    background-color: #ffffff;
    color: #003f7d;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 9px 22px rgba(0, 0, 0, 0.2);
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}

.footer-book-btn:hover,
.footer-book-btn:focus {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Footer Titles */
.footer-column {
    position: relative;
    z-index: 1;
}

.footer-title {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 13px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 52px;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(
        90deg,
        #ffffff,
        var(--bw-light-blue)
    );
}

/* Quick Links */
.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--bw-footer-text);
    font-size: 14px;
    text-decoration: none;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-links a i {
    color: #66c7e8;
    font-size: 11px;
    transition: transform 0.3s ease;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links a:hover i,
.footer-links a:focus i {
    transform: translateX(3px);
}

/* Contact */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.footer-contact-icon {
    width: 43px;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
}

.contact-label {
    display: block;
    margin-bottom: 4px;
    color: #8dd8f0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.footer-contact-item p,
.footer-contact-item a {
    margin: 0;
    color: var(--bw-footer-text);
    font-size: 13px;
    line-height: 1.7;
    text-decoration: none;
}

.footer-contact-item a {
    font-weight: 600;
}

.footer-contact-item a:hover,
.footer-contact-item a:focus {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Social Media */
.social-description {
    margin-bottom: 20px;
    color: var(--bw-footer-text);
    font-size: 14px;
    line-height: 1.75;
}

.footer-social-links {
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social-links a {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 17px;
    text-decoration: none;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.footer-social-links a:hover,
.footer-social-links a:focus {
    border-color: #ffffff;
    background-color: #ffffff;
    color: #003f7d;
    transform: translateY(-4px);
}

.footer-help-box {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background-color: rgba(255, 255, 255, 0.08);
}

.footer-help-box > i {
    color: #8dd8f0;
    font-size: 24px;
}

.footer-help-box div {
    display: flex;
    flex-direction: column;
}

.footer-help-box span {
    color: var(--bw-footer-muted);
    font-size: 11px;
}

.footer-help-box a {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.footer-help-box a:hover,
.footer-help-box a:focus {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Bottom Footer */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--bw-footer-border);
    background-color: #000 !important;
}

.footer-bottom p {
    margin: 0;
    color: #dceaf3;
    font-size: 13px;
}

.footer-policy-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
}

.footer-policy-links a {
    color: #dceaf3;
    font-size: 13px;
    text-decoration: none;
}

.footer-policy-links span {
    color: #7594aa;
}

.footer-policy-links a:hover,
.footer-policy-links a:focus {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Keyboard Focus */
.footer-logo-link:focus-visible,
.footer-book-btn:focus-visible,
.footer-links a:focus-visible,
.footer-contact-item a:focus-visible,
.footer-social-links a:focus-visible,
.footer-help-box a:focus-visible,
.footer-policy-links a:focus-visible {
    outline: 3px solid #8dd8f0;
    outline-offset: 4px;
}

/* Back to Top */
.back-to-top-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1050;
    min-height: 48px;
    padding: 11px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid #ffffff;
    border-radius: 28px;
    background: linear-gradient(135deg, #002f63, #006aa6);
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 700;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 10px 28px rgba(0, 35, 72, 0.35);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover,
.back-to-top-btn:focus {
    background: #ffffff;
    color: #003f7d;
    border-color: #003f7d;
}

.back-to-top-btn:focus-visible {
    outline: 3px solid #009bd4;
    outline-offset: 4px;
}

/* Tablet */
@media (max-width: 991px) {
    .footer-main {
        padding: 60px 0 45px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .footer-main {
        padding: 50px 0 40px;
        text-align: center;
    }

    .footer-logo {
        max-width: 180px;
        height: 58px;
    }

    .footer-about p {
        margin-right: auto;
        margin-left: auto;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-contact-item {
        align-items: center;
        flex-direction: column;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-help-box {
        justify-content: center;
        text-align: left;
    }

    .footer-policy-links {
        justify-content: center;
    }

    .back-to-top-btn {
        right: 15px;
        bottom: 15px;
        width: 48px;
        height: 48px;
        min-height: 48px;
        padding: 0;
        border-radius: 50%;
    }

    .back-to-top-btn span {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .back-to-top-btn,
    .footer-book-btn,
    .footer-links a,
    .footer-social-links a {
        transition: none;
    }
}
#more {display: none;}
.txt {color:#9E5F00 !important; text-decoration:none;}
.txt a{color:#9E5F00 !important; text-decoration:none;}
.txt a:hover{color:#000; text-decoration:none;}
.txt1 {color:#000 !important; text-decoration:none;}
.txt1 a{color:#003f7d; text-decoration:none;}
.txt1 a:hover{color:#000; text-decoration:none;}