@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@400;600;700&family=DM+Sans:wght@400;500;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #FFFFFF;
    color: #1a1a1a;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 1;
    transition: opacity 0.35s ease-in-out;
}


.container {
    padding: 0.5rem 2rem;
}

/* Responsive Container Styles */
@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    main .container {
        padding: 1.5rem 0;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* General Layout Responsive Styles */
@media (max-width: 1024px) {
    main {
        display: flex;
        flex-direction: column;
    }
    
    /* Reorder content on mobile */
    .hero-slider-container { order: 1; }
    .container              { order: 2; } 
    .welcome-section        { order: 3; }
    .rooms-section          { order: 4; }
    #featured-amenities     { order: 5; }
}
@media (max-width: 480px) {
     main {
        padding: 0 1rem;
    }
}


/* ============================
   TOP BAR — NORMAL FLOW (Scrolls away)
   ============================ */
.top-bar {
    position: relative;
    background-color: #0269b4;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    font-size: 15px;
    width: 100%;
}

/* Three columns layout */
.top-bar .left, 
.top-bar .center, 
.top-bar .right {
    display: flex;
    align-items: center;
    flex: 1;
}

.top-bar .left {
    justify-content: flex-start;
}

.top-bar .center {
    justify-content: center;
}

.top-bar .right {
    justify-content: flex-end;
    gap: 20px;
}

.top-bar i.info-icon {
    margin-right: 8px;
    color: white;
}

.top-bar .right a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.top-bar .right a:hover {
    color: #f39c12;
}

/* Hide top-bar on mobile — too cramped */
@media (max-width: 480px) {
    .top-bar {
        display: none;
    }
}


/* --- Header — STICKY AT TOP --- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    flex-wrap: wrap;
    border-bottom: 1px solid #EAEAEA;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.logo-icon {
    width: 200px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 42px;
    width: auto;
    max-width: 200px;
    display: block;
}

.hamburger-menu {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    color: #1a1a1a;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.hamburger-menu:hover {
    color: #0055a5;
}

.hamburger-menu svg {
    display: block;
}

.navigation ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navigation li a {
    font-size: 0.9rem;
    color: #666666;
    padding-bottom: 1.5rem;
    position: relative;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.navigation li a:hover {
    color: #0055a5;
}

.navigation li.active a {
    color: #1a1a1a;
    font-weight: 700;
}

.navigation li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #0269b4;
    transition: width 0.35s ease;
}

.navigation li a:hover::after,
.navigation li.active a::after {
    width: 100%;
}

.mobile-hotel-info {
    display: none;
}

.star-rating {
    cursor: default;
    gap: 2px;
    pointer-events: none;
}

.star-rating svg {
    filter: none;
}


/* ============================
   THINGS TO DO - DROPDOWN CSS
   ============================ */

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

/* ---- DROPDOWN BOX ---- */
.dropdown-menu {
    position: absolute;
    top: calc(100% - 6px);
    left: 50%;
    background-color: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    min-width: 210px;
    padding: 2px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 999;
    list-style: none;
    margin: 0;
}

/* ---- ARROW CARET ON TOP OF DROPDOWN BOX ---- */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    background-color: #FFFFFF;
    border-left: 1px solid #EAEAEA;
    border-top: 1px solid #EAEAEA;
    transform: translateX(-50%) rotate(45deg);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block !important;
    padding: 7px 18px !important;
    padding-bottom: 7px !important;
    margin-top: 0 !important;
    font-size: 0.875rem !important;
    color: #555555 !important;
    font-weight: 500 !important;
    letter-spacing: 0.3px;
    line-height: 1.2 !important;
    transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease !important;
    white-space: nowrap;
    text-decoration: none;
}

/* Remove underline animation from dropdown items */
.dropdown-menu li a::after {
    display: none !important;
}

.dropdown-menu li a:hover {
    background-color: #F4F7FB;
    color: #0055a5 !important;
    padding-left: 24px !important;
}


/* ==================================
   PHOTO GALLERY BUTTON STYLES
   ================================== */

.navigation li.photo-gallery-btn {
    align-self: center;
}

.navigation li.photo-gallery-btn a {
    background-color: #0055a5;
    color: #FFFFFF !important;
    font-weight: 600 !important;
    padding: 10px 22px !important;
    border-radius: 5px;
    margin-top: 0;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.navigation li.photo-gallery-btn a::after {
    display: none !important;
}

.navigation li.photo-gallery-btn a:hover {
    background-color: #004488;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


/* --- Responsive Header --- */
@media (max-width: 1200px) {
    .navigation ul {
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .header {
        flex-wrap: nowrap;
        padding: 1rem 1.5rem;
        top: 0;
    }

    .hamburger-menu {
        display: block;
    }

    .navigation {
        position: fixed;
        top: 0;
        right: -85%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background-color: #FFFFFF;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.35s ease-in-out;
        z-index: 1000;
        box-shadow: -4px 0 16px rgba(0, 0, 0, 0.07);
        padding: 2rem;
    }

    .navigation.open {
        right: 0;
    }

    .navigation ul {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        text-align: center;
        order: 2;
    }

    .navigation li a {
        font-size: 1.2rem;
        padding-bottom: 1rem;
        margin-top: 0;
    }

    .navigation li.photo-gallery-btn a {
        display: inline-block;
        width: 80%;
        margin: 0 auto;
    }

    .navigation li a::after {
        bottom: 0.5rem;
    }

    .mobile-hotel-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 2.5rem;
        margin-bottom: 2.5rem;
        border-bottom: 1px solid #EAEAEA;
        width: 100%;
        order: 1;
    }

    .mobile-hotel-name {
        font-family: 'Cormorant', serif;
        font-size: 1.4rem;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 1rem;
    }

    .mobile-contact-link {
        font-size: 1rem;
        color: #666666;
        margin-bottom: 0.5rem;
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: color 0.3s ease, border-color 0.3s ease;
    }

    .mobile-contact-link:hover {
        color: #0055a5;
        border-bottom-color: #0055a5;
    }

    /* ---- MOBILE DROPDOWN ---- */
    .dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        justify-content: center;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        border-top: 1px solid #EAEAEA;
        border-radius: 0;
        background-color: #F9F9F9;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .dropdown.open .dropdown-menu {
        max-height: 300px;
        padding: 6px 0;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-menu li a {
        font-size: 1.05rem !important;
        padding: 10px 20px !important;
        padding-bottom: 10px !important;
        text-align: center;
        color: #444 !important;
    }

    .dropdown-menu li a:hover {
        padding-left: 20px !important;
        background-color: #EEF3FA;
    }

    .dropdown:hover .dropdown-arrow {
        transform: none;
    }

    .dropdown.open .dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* ---- DESKTOP: Show dropdown on hover ---- */
@media (min-width: 1025px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.75rem 1rem;
        top: 0;
    }

    .logo-image {
        height: 35px;
    }
}

/* --- Hotel Info --- */
.hotel-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #EAEAEA;
    flex-wrap: wrap;
    gap: 1rem;
}

.hotel-name {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    font-family: 'Cormorant', serif;
    color: #0269b4;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #0269b4;
}

.rating-dot.half {
    background: linear-gradient(90deg, #0269b4 50%, #e6e6e6 50%);
}

.rating-score {
    font-weight: 600;
    color: #1a1a1a;
}

.reviews-link {
    text-decoration: none;
    font-size: 0.9rem;
    color: #666666;
    border-bottom: 1px dotted #666666;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.reviews-link:hover {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
}

.hotel-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: #1a1a1a;
    border-bottom: 1px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.contact-link:hover {
    color: #0055a5;
    border-bottom-color: #0055a5;
}

/* Responsive Hotel Info */
@media (max-width: 1024px) {
    .hotel-info {
        display: none;
    }
}


.booking-bar { display: flex; padding: 1.5rem; width: 100%; }
.booking-bar form { display: flex; align-items: flex-end; gap: 1rem; flex-wrap: wrap; width: 100%; }
.booking-option { display: flex; flex-direction: column; gap: 0.5rem; flex: 1 1 150px; }
.date-wrap { position: relative; }
.booking-option label { font-size: 0.75rem; color: #666666; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; padding-left: 0.25rem; }
#adults, #children { font-weight: 600; font-size: 1rem; color: #1a1a1a; border: 0px solid #dcdcdc; padding: 0.75rem; height: 50px; box-sizing: border-box; cursor: pointer; background-color: #fff; -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230055a5' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 1em; }
.calendar-input-style { font-weight: 600; font-size: 1rem; color: #1a1a1a; border: 0px solid #dcdcdc; border-radius: 4px; padding: 0.75rem; height: 50px; box-sizing: border-box; background-color: #fff; width: 100%; }
.separator { width: 1px; background-color: #EAEAEA; align-self: stretch; margin: 0.5rem 0; }
#viewRatesBtn { background-color: #0055a5; color: #FFFFFF; border: 1px solid #0055a5; padding: 0.75rem 2rem; height: 50px; box-sizing: border-box; font-size: 1rem; font-weight: 700; border-radius: 4px; cursor: pointer; flex-shrink: 0; }

/* Fake placeholder system */
.date-wrap { position: relative; }

.fake-placeholder {
    position:absolute;
    left: 12px;
    top: 65%;
    transform:translateY(-50%);
    color:black;
    pointer-events:none;
    font-size:15px;
}

.date-wrap.has-value .fake-placeholder {
    display:none;
}

/* --- Hero Slider Section --- */
.hero-slider {
      width: 100%;
    }

    .hero-slider__track {
      position: relative;
      width: 100%;
      height: 75vh;
      overflow: hidden;
      background: #ffffff;
    }

    .hero-slider__slide {
      position: absolute;
      top: 0;
      height: 100%;
      overflow: hidden;
      width: 48%;
      left: 26%;
    }

    .hero-slider__slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hero-slider__btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 64px;
      background: rgba(34, 34, 34, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.4);
      cursor: pointer;
      z-index: 20;
      outline: none;
      transition: background 0.2s;
    }

    .hero-slider__btn:hover {
      background: #000000;
    }

    .hero-slider__btn--prev {
      left: 0;
      border-left: none;
    }

    .hero-slider__btn--next {
      right: 0;
      border-right: none;
    }

    .hero-slider__counter {
      position: absolute;
      bottom: 0;
      right: 0;
      background: rgba(51, 51, 51, 0.9);
      color: #ffffff;
      padding: 6px 12px;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.05em;
      z-index: 20;
      font-family: sans-serif;
    }

    /* Image list — sirf JS source hai, screen pe nahi dikhega */
    #image-list {
      display: none;
    }

    @media (max-width: 639px) {
      .hero-slider__track { height: 40vh; }
      .hero-slider__btn { width: 32px; height: 48px; }
      .hero-slider__counter { font-size: 12px; }
    }

    @media (min-width: 640px) and (max-width: 767px) {
      .hero-slider__track { height: 50vh; }
    }

    @media (min-width: 768px) and (max-width: 1023px) {
      .hero-slider__track { height: 60vh; }
    }

    @media (min-width: 1024px) {
      .hero-slider__track { height: 75vh; }
    }


/* --- Welcome Section --- */
.welcome-section {
    position: relative;
    z-index: 2;
    background-color: #F8F7F5;
    padding: 20px 20px;
    text-align: center;
    background-image: none;
    overflow: hidden;
}

.welcome-header h1 {
    font-size: 3rem;
    color: #1a1a1a;
    font-weight: 600;
    margin: 0 0 15px 0;
    font-family: 'Cormorant', serif;
    letter-spacing: 1px;
}

.welcome-header .separator {
    width: 90px;
    height: 3px;
    background-color: #0269b4;
    margin: 0 auto 60px auto;
    border: none;
}

.welcome-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.content-column {
    flex: 1;
    text-align: left;
}

.content-column p {
    color: #666666;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.content-column h2 {
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Cormorant', serif;
}

.image-column {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.read-more-btn {
    background-color: #0269b4;
    color: #FFFFFF;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    margin-top: 20px;
    cursor: pointer;
    border: 1px solid #121212;
}

.read-more-btn:hover {
    background-color: #FFFFFF;
    color: #121212;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.read-more-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.7s ease-out, opacity 0.5s ease-out;
    max-width: 1000px;
    margin: 40px auto 0;
    text-align: left;
    color: #666666;
    padding: 0 20px;
}

.read-more-content h2 {
    color: #1a1a1a;
    font-family: 'Cormorant', serif;
    margin-bottom: 20px;
    font-size: 2.2rem;
    text-align: center;
}

.read-more-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.read-more-content.content-visible {
    max-height: 1000px;
    opacity: 1;
    transition: max-height 0.7s ease-in, opacity 0.5s ease-in 0.2s;
    padding-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .welcome-content {
        flex-direction: column;
        gap: 50px;
    }

    .content-column, .image-column {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .image-column { order: 1; }
    .content-column { order: 2; }
    .welcome-header h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .welcome-section { padding: 60px 20px; }
    .welcome-header h1 { font-size: 2.2rem; }
    .content-column h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .welcome-header h1 { font-size: 2rem; }
    .content-column h2 { font-size: 1.5rem; }
    .content-column p { font-size: 1rem; }
    .read-more-btn { padding: 14px 28px; font-size: 0.9rem; }
}

/* --- Rooms Section --- */
.rooms-section {
    background-color: #FFFFFF;
}

.main-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 40px 20px;
}

.main-title {
    color: #1a1a1a;
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    font-family: 'Cormorant', serif;
}

/* Wrapper holds arrows + grid together */
.rooms-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}

/* Left / Right Arrow Buttons */
.slider-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 2px solid #121212;
    color: #121212;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    z-index: 2;
    line-height: 1;
}

.slider-arrow:hover {
    background-color: #121212;
    color: #FFFFFF;
    transform: scale(1.08);
}

.arrow-prev { margin-right: 16px; }
.arrow-next { margin-left: 16px; }

/* Rooms Grid */
.rooms-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    min-height: 420px;
    overflow: hidden;
}

/* Swipe Animations */
@keyframes slideInFromRight {
    from { opacity: 0; transform: translateX(60px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInFromLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Direction classes applied by JS */
.rooms-grid.slide-next .room-card {
    animation: slideInFromRight 0.4s ease-out both;
}

.rooms-grid.slide-prev .room-card {
    animation: slideInFromLeft 0.4s ease-out both;
}

/* Staggered delay for each card */
.rooms-grid .room-card:nth-child(1) { animation-delay: 0s;    }
.rooms-grid .room-card:nth-child(2) { animation-delay: 0.08s; }
.rooms-grid .room-card:nth-child(3) { animation-delay: 0.16s; }

/* Room Cards */
.room-card {
    background-color: #FFFFFF;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 1px solid #EAEAEA;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.room-image-wrapper {
    overflow: hidden;
    height: 180px;
}

.room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease-in-out;
}

.room-card:hover .room-image {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-family: 'Cormorant', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    min-height: 50px;
    color: #1a1a1a;
}

.room-details-link {
    color: #0055a5;
    text-decoration: none;
    margin-bottom: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
    border-bottom: 1px solid #0055a5;
    align-self: flex-start;
}

.room-details-link:hover {
    opacity: 0.8;
}

.features-list {
    list-style-type: none;
    padding-left: 0;
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.features-list li {
    padding-left: 1.5rem;
    margin-bottom: 6px;
    position: relative;
}

.features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0269b4;
    font-weight: 700;
}

/* Pagination Dots */
.pagination-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #CCCCCC;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    padding: 0;
}

.pagination-dot.active {
    background-color: #0269b4;
    transform: scale(1.4);
}

/* Explore Button */
.price-info {
    color: #666666;
    text-align: center;
    margin: 40px 0;
    font-size: 0.9rem;
}

.explore-all-button {
    display: block;
    margin: 0 auto;
    background-color: transparent;
    border: 2px solid #121212;
    color: #0269b4;
    border-radius: 2px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.explore-all-button:hover {
    background-color: #121212;
    color: #FFFFFF;
    border-color: #121212;
    transform: translateY(-3px);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    .arrow-prev { margin-right: 10px; }
    .arrow-next { margin-left: 10px; }
}

@media (max-width: 768px) {
    .main-container { padding: 40px 15px; }
    .main-title { font-size: 2.5rem; }
    .rooms-grid { grid-template-columns: 1fr; }
    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}


/* --- Featured Amenities Section --- */
#featured-amenities {
    padding: 2rem 0;
    background-color: #F8F7F5;
    transition: padding 0.3s ease-in-out;
}

#amenities-container {
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

#amenities-container .main-title {
    font-weight: 600;
    letter-spacing: 1px;
    color: #1a1a1a;
    font-family: 'Cormorant', serif;
    text-transform: none;
}

#amenities-container .tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    padding: 0;
    border-bottom: 1px solid #EAEAEA;
}

#amenities-container .tab {
    padding: 1rem 0;
    cursor: pointer;
    color: #666666;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

#amenities-container .tab:hover {
    color: #0055a5;
}

#amenities-container .tab.active {
    color: #0055a5;
    border-bottom-color: #0055a5;
}

#amenities-container .section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
}

#amenities-container .section-title {
    font-family: 'Cormorant', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1a1a1a;
    text-transform: none;
    margin: 0;
}

#amenities-container .included-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666666;
    font-weight: 500;
    background-color: #edebe8;
    padding: 5px 10px;
    border-radius: 4px;
}

#amenities-container .included-info i {
    font-size: 18px;
    color: #0269b4;
}

/* ── Hide all sections by default ── */
#amenities-container .amenity-category-section {
    display: none;
}

/* ── Single tab active ── */
#amenities-container .amenity-category-section.active {
    display: block;
}

/* ── View All: both sections visible, stacked independently ── */
#amenities-container .amenity-category-section.show-all {
    display: block;
}

/* ── Divider between the two sections in View All ── */
#amenities-container #property-services-section.show-all {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #EAEAEA;
}

/* ── Grid: align-items start keeps every row top-aligned ── */
#amenities-container .amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 1rem;
    align-items: start;
}

#amenities-container .amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

#amenities-container .amenity-item > i {
    margin-top: 4px;
    font-size: 25px;
    flex-shrink: 0;
    color: #0269b4;
}

#amenities-container .amenity-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#amenities-container .amenity-name {
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

#amenities-container .amenity-name .check-icon {
    font-size: 16px;
    color: #1a1a1a;
}

#amenities-container .amenity-subtitle {
    font-size: 0.9rem;
    color: #666666;
    margin-top: 0.25rem;
}

@media (max-width: 1024px) {
    #amenities-container .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }
}

@media (max-width: 768px) {
    #featured-amenities {
        padding: 4rem 0;
    }
    #amenities-container {
        padding: 0 1.5rem;
    }
    #amenities-container .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
        align-items: start;
    }
    #amenities-container .main-title {
        font-size: 2.5rem;
    }
    #amenities-container .tabs {
        gap: 1.5rem;
        justify-content: center;
    }
    #amenities-container #property-services-section.show-all {
        margin-top: 2rem;
        padding-top: 2rem;
    }
}

@media (max-width: 480px) {
    #featured-amenities {
        padding: 3rem 0;
    }
    #amenities-container {
        padding: 0 1rem;
    }
    #amenities-container .main-title {
        font-size: 2rem;
    }
    #amenities-container .tabs {
        gap: 0.5rem 1.5rem;
    }
    #amenities-container .section-header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    #amenities-container .section-title {
        font-size: 1.25rem;
    }
    #amenities-container .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
        align-items: start;
    }
    #amenities-container #property-services-section.show-all {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
}


/* ============================================================
           ATTRACTIONS SECTION
        ============================================================ */
        .attractions {
            width: 100%;
            max-width: 1920px;
            min-height: 100vh;
            padding: 30px 24px 48px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            position: relative;
            overflow: hidden;
            user-select: none;
            background-color: #FFFFFF;
        }
        .attractions .font-serif { font-family: 'Cormorant', serif; }
        .attractions .gold-border { border: 1px solid #0269b4; }

        /* ---- Header ---- */
        .attractions .attractions-header {
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 80px;
            margin-top: 16px;
            padding: 0 16px;
            transition: all 0.7s ease;
        }
        @media (min-width: 768px) {
            .attractions .attractions-header { flex-direction: row; align-items: flex-end; }
        }
        .attractions .header-title-container { display: flex; flex-direction: column; }
        .attractions .header-subtitle {
            font-family: 'Cormorant', serif;
            font-style: normal;
            font-size: 2rem;
            color: #0269b4;
            line-height: 1;
            margin-bottom: 4px;
        }
        .attractions .header-title {
            font-family: 'Cormorant', serif;
            font-size: 4rem;
            letter-spacing: 0.05em;
            color: #1a1a1a;
            line-height: 1.1;
            text-transform: uppercase;
        }

        /* ---- Tab Buttons ---- */
        .attractions .tab-buttons {
            display: flex;
            align-items: center;
            gap: 0;
            margin-top: 32px;
            border: 1px solid #0269b4;
            border-radius: 2px;
            overflow: hidden;
            flex-shrink: 0;
        }
        @media (min-width: 768px) { .attractions .tab-buttons { margin-top: 0; } }

        .attractions .tab-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 36px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: #0269b4;
            background: transparent;
            border: none;
            cursor: pointer;
            transition: background 0.3s ease, color 0.3s ease;
            white-space: nowrap;
        }
        .attractions .tab-btn + .tab-btn { border-left: 1px solid #0269b4; }
        .attractions .tab-btn svg {
            width: 15px; height: 15px;
            stroke: currentColor; stroke-width: 1.8; fill: none; flex-shrink: 0;
            transition: stroke 0.3s ease;
        }
        .attractions .tab-btn.active { background: #0269b4; color: #ffffff; }
        .attractions .tab-btn:hover:not(.active) { background: rgba(2,105,180,0.07); }

        /* ---- Tab Panels ---- */
        .attractions .tab-panel {
            display: none;
            width: 100%;
            flex-direction: column;
            align-items: center;
        }
        .attractions .tab-panel.active { display: flex; }

        /* ---- Slider Content Area ---- */
        .attractions .attractions-content {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 540px;
            margin-bottom: 64px;
            padding: 0 16px;
            position: relative;
        }
        .attractions .content-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 1600px;
            gap: 48px;
            position: relative;
        }
        .attractions .side-column {
            width: 340px; height: 520px;
            flex-shrink: 0; overflow: hidden;
            box-shadow: 0 1px 2px rgba(0,0,0,0.07);
            border-radius: 4px;
            background-color: #F8F7F5;
            position: relative;
        }
        .attractions .side-image-container {
            width: 100%; height: 100%;
            position: absolute; top: 0; left: 0; overflow: hidden;
        }
        .attractions .side-image-container img { width: 100%; height: 100%; object-fit: cover; }
        .attractions .center-column {
            position: relative; width: 860px; height: 520px;
            display: flex; align-items: center; flex-shrink: 0;
        }
        .attractions .main-image-container {
            position: absolute; top: 65px; left: 0;
            width: 620px; height: 385px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            background-color: #000; border-radius: 4px;
            transition: all 1s ease-in-out;
        }
        .attractions .main-image-wrapper { width: 100%; height: 100%; position: relative; }
        .attractions .main-image {
            width: 100%; height: 100%; object-fit: cover;
            position: absolute; top: 0; left: 0; opacity: 1;
        }
        .attractions .info-card {
            position: absolute; z-index: 20;
            background-color: white; padding: 40px; width: 480px;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
            border: 1px solid #0269b4;
            text-align: center; display: flex; flex-direction: column;
            align-items: center; border-radius: 2px;
        }
        .attractions .info-card.top-right    { top: 10px; right: 0; }
        .attractions .info-card.bottom-right { bottom: 10px; right: 0; }
        .attractions .category {
            font-size: 11px; letter-spacing: 0.3em; font-weight: 700;
            color: #666666; margin-bottom: 24px; text-transform: uppercase;
        }
        .attractions .hotel-name {
            font-family: 'Cormorant', serif; font-size: 2.2rem;
            color: #1a1a1a; margin-bottom: 24px; font-weight: 600; line-height: 1.2;
        }
        .attractions .description {
            font-size: 14px; color: #666666; line-height: 1.8;
            font-weight: 400; margin-bottom: 48px; padding: 0 8px; opacity: 0.9;
        }
        .attractions .explore-link { display: inline-block; position: relative; }
        .attractions .explore-link a {
            font-size: 12px; font-weight: 700; letter-spacing: 0.25em;
            text-transform: uppercase; color: #1a1a1a; display: block;
            margin-bottom: 8px; text-decoration: none; transition: color 0.3s ease;
        }
        .attractions .explore-link a:hover { color: #0055a5; }
        .attractions .link-underline { width: 100%; height: 2px; background-color: #0269b4; }

        /* ---- Footer Controls ---- */
        .attractions .attractions-footer {
            width: 100%; display: flex; flex-direction: column; align-items: center; margin-top: auto;
        }
        .attractions .controls {
            display: flex; align-items: center; justify-content: center;
            gap: 48px; margin-bottom: 32px;
        }
        .attractions .nav-btn {
            display: flex; align-items: center; gap: 12px;
            font-size: 12px; letter-spacing: 0.2em; color: #666666;
            text-transform: uppercase; font-weight: 600;
            background: none; border: none; cursor: pointer; transition: color 0.3s ease;
        }
        .attractions .nav-btn:hover { color: #0055a5; }
        .attractions .nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
        .attractions .nav-btn svg { stroke-width: 2px; }
        .attractions .progress-container {
            width: 420px; height: 1px; background-color: #0269b4; position: relative;
        }
        .attractions .progress-fill {
            position: absolute; top: -1px; height: 3px;
            background-color: #0269b4; transition: all 0.8s ease-in-out;
        }
        .attractions .counter {
            font-size: 12px; letter-spacing: 0.35em; font-weight: 500; color: #666666;
        }

        /* ---- Animations ---- */
        .attractions .sliding { transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
        .attractions .stagger-1 { animation: attractions_fadeUp 0.9s 0.3s ease-out both; }
        .attractions .stagger-2 { animation: attractions_fadeUp 0.9s 0.4s ease-out both; }
        .attractions .stagger-3 { animation: attractions_fadeUp 0.9s 0.5s ease-out both; }
        .attractions .stagger-4 { animation: attractions_fadeUp 0.9s 0.6s ease-out both; }
        @keyframes attractions_fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .tab-fade-in { animation: tabFadeIn 0.45s ease both; }
        @keyframes tabFadeIn {
            from { opacity: 0; transform: translateY(12px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* ---- Responsive ---- */
        @media (max-width: 1400px) {
            .attractions .content-wrapper,
            .attractions .sliding { gap: 24px; }
            .attractions .side-column   { width: 280px; height: 480px; }
            .attractions .center-column { width: 720px; height: 480px; }
            .attractions .main-image-container { height: 340px; width: 520px; }
            .attractions .info-card { width: 420px; padding: 30px; }
            .attractions .progress-container { width: 360px; }
        }
        @media (max-width: 1024px) {
            .attractions { padding: 40px 16px; }
            .attractions .attractions-header { margin-bottom: 64px; }
            .attractions .header-title  { font-size: 3rem; }
            .attractions .header-subtitle { font-size: 1.5rem; }
            .attractions .attractions-content { height: auto; padding: 0; }
            .attractions .content-wrapper { flex-direction: column; gap: 0; height: auto; }
            .attractions .side-column { display: none; }
            .attractions .center-column { width: 100%; height: auto; justify-content: center; flex-direction: column; }
            .attractions .main-image-container { position: relative; top: 0; left: 0; width: 100% !important; max-width: 600px; height: 400px; }
            .attractions .info-card { position: relative; width: 90%; max-width: 500px; margin-top: -60px; top: auto; right: auto; bottom: auto; }
            .attractions .controls { gap: 24px; }
            .attractions .progress-container { width: 300px; }
        }
        @media (max-width: 640px) {
            .attractions .attractions-header { margin-bottom: 48px; }
            .attractions .header-title  { font-size: 2.5rem; letter-spacing: 0.08em; }
            .attractions .header-subtitle { font-size: 1.2rem; }
            .attractions .tab-buttons   { margin-top: 24px; }
            .attractions .tab-btn       { padding: 12px 22px; font-size: 10px; letter-spacing: 0.2em; }
            .attractions .hotel-name    { font-size: 1.8rem; }
            .attractions .description   { font-size: 14px; margin-bottom: 32px; }
            .attractions .main-image-container { height: 350px; }
            .attractions .info-card     { padding: 32px 24px; width: 100%; margin-top: 24px; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.07); }
            .attractions .progress-container { width: 200px; }
            .attractions .controls      { gap: 16px; }
        }


.support-section-wrapper { font-family: 'DM Sans', sans-serif; }
.support-section-wrapper ::-webkit-scrollbar { width: 6px; }
.support-section-wrapper ::-webkit-scrollbar-track { background: #f3f4f6; }
.support-section-wrapper ::-webkit-scrollbar-thumb { background: #0269b4; border-radius: 10px; }
.support-section-wrapper ::-webkit-scrollbar-thumb:hover { background: #014f87; }

@keyframes support-fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

.support-section-wrapper .faq-section .faq-item { padding: 1.25rem 0; border-bottom: 1px solid #EAEAEA;}
.support-section-wrapper .faq-section .faq-item:last-child { border-bottom: none; }
.support-section-wrapper .faq-section .faq-button { display: flex; width: 100%; align-items: center; justify-content: space-between; text-align: left; background: none; border: none; cursor: pointer; padding: 0; transition: all 0.3s ease; }
.support-section-wrapper .faq-section .faq-question { font-size: 1.125rem; font-weight: 600; color: #1f2933; padding-right: 1rem; transition: color 0.3s ease; }
.support-section-wrapper .faq-section .faq-button:hover .faq-question { color: #0269b4; }

.support-section-wrapper .faq-section .faq-toggle { flex-shrink: 0; width: 2rem; height: 2rem; border-radius: 50%; border: 1px solid #EAEAEA; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; background-color: transparent; }
.support-section-wrapper .faq-section .faq-toggle.open { background-color: #0269b4; border-color: #0269b4; }

.support-section-wrapper .faq-section .faq-toggle-icon { font-size: 1.25rem; line-height: 1; transition: transform 0.3s ease; color: #5b6b7c; }
.support-section-wrapper .faq-section .faq-toggle.open .faq-toggle-icon { transform: rotate(45deg); color: white; }

.support-section-wrapper .faq-section .faq-answer { color: #5f6f82; line-height: 1.625; padding-top: 1rem; padding-left: 0.25rem; display: none; animation: support-fadeIn 0.3s ease-out forwards; }

.support-section-wrapper .form-section .form-label { font-size: 0.75rem; font-weight: 600; color: #5f6f82; text-transform: uppercase; letter-spacing: 0.1em; padding-left: 0; margin-bottom: 0.5rem; display: block; }

.support-section-wrapper .form-section .form-input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border-radius: 2px;
  border: 1px solid #EAEAEA;
  background-color: #F8F9FB;
  outline: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
}

.support-section-wrapper .form-section .form-input:focus {
  box-shadow: 0 0 0 3px rgba(2, 105, 180, 0.15);
  border-color: #0269b4;
}

.support-section-wrapper .form-section .submit-button {
  width: 100%;
  padding: 1rem 2.5rem;
  background-color: #0269b4;
  color: white;
  font-weight: 600;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(2, 105, 180, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid #0269b4;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}

.support-section-wrapper .form-section .submit-button:hover {
  background-color: #ffffff;
  color: #0269b4;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 105, 180, 0.35);
}

.support-section-wrapper .form-section .submit-button:active { transform: scale(0.98); }

.support-section-wrapper .form-section textarea.form-input { resize: none; min-height: 6rem; }

.support-section-wrapper .grid-container { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start; }
@media (min-width: 1024px) { .support-section-wrapper .grid-container { grid-template-columns: 1fr 1fr; } }

.support-section-wrapper .section-card {
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.07);
  border: 1px solid #EAEAEA;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.support-section-wrapper .section-header {
  background: linear-gradient(135deg, #0269b4, #014f87);
  padding: 2rem;
  color: white;
  position: relative;
}

@media (min-width: 768px) { .support-section-wrapper .section-header { padding: 2.5rem; } }

.support-section-wrapper .header-label { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.support-section-wrapper .label-text { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; opacity: 0.8; }
.support-section-wrapper .label-line { height: 1px; width: 2rem; background-color: #9fd0ff; opacity: 0.8;}

.support-section-wrapper .section-title {
  font-family: 'Cormorant', serif;
  font-size: 2.25rem;
  font-weight: 600;
}

@media (min-width: 768px) { .support-section-wrapper .section-title { font-size: 2.5rem; } }

.support-section-wrapper .section-content { padding: 2rem; flex-grow: 1; background-color: white; }
@media (min-width: 768px) { .support-section-wrapper .section-content { padding: 2.5rem; } }

.support-section-wrapper .faq-hero {
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0269b4, #013a63);
  overflow: hidden;
}

.support-section-wrapper .faq-hero-bg { position: absolute; inset: 0; opacity: 0.15; }

.support-section-wrapper .faq-hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/double-bed-room-4.jpg');
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  filter: grayscale(100%);
}

.support-section-wrapper .faq-hero-gradient {
  position: absolute;
  inset: 0;
}

.support-section-wrapper .faq-hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
}

.support-section-wrapper .faq-hero-title {
  font-family: 'Cormorant', serif;
  font-size: 3rem;
  font-weight: 600;
  color: white;
  line-height: 1.25;
}

@media (min-width: 768px) { .support-section-wrapper .faq-hero-title { font-size: 3.5rem; } }

.support-section-wrapper .main-content {
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: -4rem;
  padding-bottom: 5rem;
  position: relative;
  z-index: 20;
}

@media (min-width: 1280px) { .support-section-wrapper .main-content { max-width: 1400px; } }

.support-section-wrapper .form-container {
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.07);
  border: 1px solid #EAEAEA;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (min-width: 768px) { .support-section-wrapper .form-container { padding: 2.5rem; } }

.support-section-wrapper .form-header { margin-bottom: 2.5rem; }

.support-section-wrapper .form-header-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  color: #0269b4;
}

.support-section-wrapper .form-label-text { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }

.support-section-wrapper .form-label-line { height: 1px; width: 2rem; background-color: #0269b4; }

.support-section-wrapper .form-title {
  font-family: 'Cormorant', serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: #1f2933;
  line-height: 1.25;
}

@media (min-width: 768px) { .support-section-wrapper .form-title { font-size: 2.5rem; } }

.support-section-wrapper .form-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .support-section-wrapper .form-grid-2 { grid-template-columns: 1fr 1fr; } }

.support-section-wrapper .flex-col { display: flex; flex-direction: column; }
.support-section-wrapper .gap-1_5 { gap: 0.375rem; }
.support-section-wrapper .gap-5 { gap: 1.25rem; }
.support-section-wrapper .space-y-5 > * + * { margin-top: 1.25rem; }
.support-section-wrapper .h-5 { height: 1.25rem; }
.support-section-wrapper .w-5 { width: 1.25rem; }


/* This CSS styles the container for the text, now using the class "Assecibility" */
  .Assecibility {
    background-color: #0055a5;
    color: white;
    padding: 15px;
    font-family: sans-serif;
    text-align: center;
    font-size: 16px;
  }

  .Assecibility-phone-link {
    color: lightyellow;
    text-decoration: none;
  }
  
  .Assecibility-phone-link:hover {
    text-decoration: underline;
  }


/* ====================================================== */
/* ============== Testimonial Section Start ============= */
/* ====================================================== */

.testimonial-section,
.testimonial-page-wrapper {
    width: 100%;
    font-family: 'DM Sans', sans-serif;
    background-color: #121212;
}

.testimonial-page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

/* Background Layer with Overlay */
.testimonial-background-layer {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(18, 18, 18, 0.72), rgba(18, 18, 18, 0.72)),
        url('images/double-bed-room-5.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Track Wrapper */
.testimonial-track-wrapper {
    position: relative;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    overflow: hidden;
    z-index: 10;
}

/* Track */
.testimonial-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.15, 1);
    will-change: transform;
}

/* Individual Column */
.testimonial-column {
    flex: 0 0 100%;
    min-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 30px;
    user-select: none;
    box-sizing: border-box;
}

/* Icon/Quote Mark */
.testimonial-icon-container {
    margin-bottom: 28px;
    opacity: 0.9;
}

.testimonial-icon-container svg {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* Customer Name */
.testimonial-name-label {
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Cormorant', serif;
    font-weight: 600;
    margin-bottom: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

/* Thin Divider Below Name */
.testimonial-divider {
    width: 36px;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
    margin: 0 auto 28px;
}

/* Quote Text */
.testimonial-text-content {
    font-family: 'Cormorant', serif;
    font-size: 1.55rem;
    line-height: 1.7;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    font-style: italic;
    max-width: 1000px;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Navigation Arrows */
.testimonial-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    cursor: pointer;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    opacity: 0.55;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
}

.testimonial-nav-arrow:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-50%) scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.testimonial-nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.testimonial-left-arrow {
    left: 20px;
}

.testimonial-right-arrow {
    right: 20px;
}

/* Arrow SVG Icons */
.testimonial-nav-arrow svg {
    width: 20px;
    height: 40px;
    transition: transform 0.25s ease;
}

.testimonial-left-arrow:hover svg {
    transform: translateX(-3px);
}

.testimonial-right-arrow:hover svg {
    transform: translateX(3px);
}

/* Navigation Dots */
.testimonial-dots-container {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    z-index: 10;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    position: relative;
}

.testimonial-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.testimonial-dot.active {
    background: #0269b4;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(2, 105, 180, 0.3);
}

.testimonial-dot:focus-visible {
    outline: 2px solid #0269b4;
    outline-offset: 2px;
}

/* Tablet Devices */
@media (max-width: 992px) {
    .testimonial-slider-container {
        height: 550px;
    }
    
    .testimonial-track-wrapper {
        max-width: 700px;
    }
    
    .testimonial-text-content {
        font-size: 1.4rem;
        max-width: 600px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .testimonial-slider-container {
        height: auto;
        min-height: 520px;
        padding: 50px 0 90px;
    }
    
    .testimonial-track-wrapper {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .testimonial-column {
        padding: 0 20px;
    }
    
    .testimonial-text-content {
        font-size: 1.25rem;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .testimonial-name-label {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }
    
    .testimonial-icon-container {
        margin-bottom: 22px;
    }
    
    .testimonial-icon-container svg {
        height: 32px;
    }
    
    .testimonial-divider {
        width: 30px;
        margin: 0 auto 22px;
    }
    
    /* Move arrows to bottom on mobile */
    .testimonial-nav-arrow {
        top: auto;
        bottom: 25px;
        transform: none;
        opacity: 0.8;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(5px);
        width: 42px;
        height: 42px;
        border-color: rgba(255, 255, 255, 0.25);
    }
    
    .testimonial-nav-arrow:hover {
        transform: scale(1.05);
        background: rgba(0, 0, 0, 0.4);
    }
    
    .testimonial-left-arrow {
        left: calc(50% - 55px);
    }
    
    .testimonial-right-arrow {
        right: calc(50% - 55px);
    }
    
    .testimonial-dots-container {
        margin-top: 30px;
        gap: 10px;
    }
    
    .testimonial-dot {
        width: 7px;
        height: 7px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .testimonial-slider-container {
        min-height: 480px;
        padding: 40px 0 80px;
    }
    
    .testimonial-text-content {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .testimonial-name-label {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        margin-bottom: 16px;
    }
    
    .testimonial-icon-container svg {
        height: 28px;
    }
    
    .testimonial-divider {
        width: 25px;
        margin: 0 auto 18px;
    }
    
    .testimonial-nav-arrow {
        width: 38px;
        height: 38px;
        bottom: 20px;
    }
    
    .testimonial-nav-arrow svg {
        width: 16px;
        height: 32px;
    }
    
    .testimonial-left-arrow {
        left: calc(50% - 45px);
    }
    
    .testimonial-right-arrow {
        right: calc(50% - 45px);
    }
    
    .testimonial-dots-container {
        margin-top: 25px;
    }
}
/* ====================================================== */
/* =============== Testimonial Section End ============== */
/* ====================================================== */


/* Gallery Section Styling */
.photo-gallery { 
    width: 100%; 
    max-width: 1400px; 
    margin: 0 auto; 
    text-align: center; 
    padding: 30px 30px;
}

.gallery-container h2 { 
    font-family: 'Cormorant', serif;
    font-size: 3rem;
    margin-bottom: 10px; 
    color: #1a1a1a;
}

.gallery-container p { 
    font-size: 1.1rem; 
    color: #666666;
    margin-bottom: 40px; 
}

#filter-buttons { 
    margin-bottom: 40px;
    display: flex; 
    justify-content: center; 
    flex-wrap: wrap; 
    gap: 15px; 
}

.filter-btn { 
    background-color: #F8F7F5;
    color: #666666;
    border: 1px solid #EAEAEA;
    padding: 10px 25px; 
    font-size: 1rem; 
    font-weight: 500; 
    border-radius: 2px;
    cursor: pointer; 
    transition: all 0.3s ease; 
}

.filter-btn:hover { 
    background-color: #0055a5;
    color: #FFFFFF;
    border-color: #0055a5;
}

.filter-btn.active { 
    background-color: #0055a5;
    color: #FFFFFF;
    border-color: #0055a5;
}

.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-item { 
    overflow: hidden; 
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease; 
    cursor: pointer; 
    position: relative;
    aspect-ratio: 1/1;
}

.gallery-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
    transition: transform 0.4s ease; 
}

.gallery-item:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover img { 
    transform: scale(1.05); 
}

.gallery-item.hide { display: none; }

.see-more-container { margin-top: 10px; margin-bottom: 10px; }

#see-more-btn { 
    display: inline-block; 
    background-color: #0269b4;
    color: #FFFFFF;
    border: 1px solid #121212;
    padding: 15px 40px; 
    font-size: 1.1rem; 
    font-weight: 600; 
    border-radius: 2px;
    cursor: pointer; 
    text-decoration: none; 
    transition: all 0.3s ease; 
    box-shadow: 0 4px 10px rgba(0,0,0, 0.1);
}

#see-more-btn:hover { 
    background-color: #FFFFFF;
    color: #121212;
    transform: translateY(-3px); 
    box-shadow: 0 6px 15px rgba(0,0,0, 0.15);
}

/* Lightbox */
.lightbox { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(18, 18, 18, 0.95);
    z-index: 1000; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    opacity: 0; 
    visibility: hidden; 
    transition: opacity 0.4s ease, visibility 0.4s ease; 
    backdrop-filter: blur(8px);
    padding: 20px;
    box-sizing: border-box;
}

.lightbox.active { 
    opacity: 1; 
    visibility: visible; 
}

.lightbox-content { 
    position: relative; 
    max-width: 60vw;
    max-height: 80vh;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
}

.lightbox-image { 
    max-width: 100%; 
    max-height: 100%; 
    border-radius: 2px; 
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5); 
    animation: zoomIn 0.4s ease; 
}

.lightbox-caption { 
    margin-top: 15px; 
    color: #ffffff; 
    font-size: 1.2rem;
    text-align: center; 
    animation: fadeIn 0.4s ease; 
    padding: 10px 20px; 
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 2px; 
    max-width: 70ch;
}

.lightbox-close { 
    position: absolute; 
    top: 20px; 
    right: 30px; 
    font-size: 2.5rem; 
    font-weight: 300; 
    color: #fff; 
    cursor: pointer; 
    transition: color 0.3s ease, transform 0.3s ease; 
    z-index: 1001; 
}

.lightbox-close:hover { 
    color: #ccc; 
    transform: rotate(90deg); 
}

.lightbox-prev, .lightbox-next { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff; font-size: 2.5rem; cursor: pointer; 
    padding: 10px 15px; border-radius: 50%; width: 50px; height: 50px; display:flex; justify-content:center; align-items:center;
    transition: background-color 0.3s ease, transform 0.3s ease; 
    user-select: none; z-index: 1001; backdrop-filter: blur(5px);
}

.lightbox-prev:hover, .lightbox-next:hover { 
    background-color: rgba(255, 255, 255, 0.1); 
    transform: translateY(-50%) scale(1.05);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@keyframes zoomIn { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }


/* Responsive Gallery */
@media (max-width: 1100px) { 
    .gallery-grid { grid-template-columns: repeat(3, 1fr); } 
}

@media (max-width: 768px) { 
    .gallery-grid { grid-template-columns: repeat(2, 1fr); } 
    .photo-gallery { padding: 40px 20px; } 
    .gallery-container h2 { font-size: 2.5rem; } 
    
    .lightbox-content {
        max-width: 85vw;
        max-height: 75vh;
    }
}

@media (max-width: 480px) { 
    .gallery-grid { grid-template-columns: 1fr; gap: 15px; } 
    #filter-buttons { gap: 10px; } 
    .filter-btn { padding: 8px 20px; font-size: 0.9rem; } 
    .lightbox-prev, .lightbox-next { 
        font-size: 2rem; width: 40px; height: 40px; padding: 0; top: 90%;
    } 
    .lightbox-prev { left: 20px; }
    .lightbox-next { right: 20px; }
    .lightbox-close { font-size: 2rem; top: 15px; right: 20px; }
    
    .lightbox-content {
        max-width: 95vw;
        max-height: 70vh;
    }
    .lightbox-caption {
        font-size: 1rem;
    }
}


 /* --- Base Footer Styles (Desktop First) --- */
#elysian-footer-isolated * {
    margin: 0; padding: 0; box-sizing: border-box; font-family: inherit;
    color: white;
}

#elysian-footer-isolated {
    all: initial; contain: content; display: block;
    
    --background-dark: #0c0c0c;
    --accent-blue: #0269b4;
    --text-bright-white: #FFFFFF;
    --text-normal-white: #F0F0F0;
    --text-muted-bluegrey: #B0C4DE;
    --border-line: rgba(2, 105, 180, 0.3);
}

#elysian-footer-isolated .grand-footer {
    position: relative;
    width: 100%;
    background-color: var(--background-dark);
    color: var(--text-normal-white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
}

#elysian-footer-isolated .bg-layer {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('images/exterior.jpg');
    background-size: cover; background-position: center 60%;  
    z-index: 0; 
    opacity: 0.38; 
}

#elysian-footer-isolated .overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, var(--background-dark) 0%, rgba(12,12,12,0.5) 50%, var(--background-dark) 5000%);
    z-index: 1;
}

#elysian-footer-isolated #effect-canvas { 
    position: absolute; top: 0; left: 0; z-index: 2; display: block;
}

#elysian-footer-isolated .footer-content-layer {
    position: relative; z-index: 10; width: 95%; max-width: 1800px; padding: 70px 0 30px;
}

#elysian-footer-isolated .main-row {
    display: grid; grid-template-columns: 1fr min-content 1fr;
    gap: 5vw; align-items: start;
    border-bottom: 1px solid var(--border-line);
    padding-bottom: 40px; margin-bottom: 30px;
}

#elysian-footer-isolated .link-group { 
    display: flex; flex-direction: column; 
}
#elysian-footer-isolated .link-group.left { 
    align-items: flex-end; text-align: right; 
}
#elysian-footer-isolated .link-group.right { 
    align-items: flex-start; text-align: left; 
}
#elysian-footer-isolated .link-header {
    color: var(--text-bright-white);
    font-family: 'Cormorant', serif;
    font-size: 1.25rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

#elysian-footer-isolated .footer-a {
    text-decoration: none; 
    color: white;
    font-size: 1rem;
    padding: 6px 0; font-weight: 400; 
    letter-spacing: 0.8px;
    transition: all 0.3s ease; position: relative; display: inline-block;
}

#elysian-footer-isolated .footer-a:hover {
    color: var(--accent-blue);
    transform: translateX(5px);
}
#elysian-footer-isolated .link-group.left .footer-a:hover { 
    transform: translateX(-5px); 
}

#elysian-footer-isolated .center-brand { 
    text-align: center; white-space: nowrap; padding: 0 20px; 
}
#elysian-footer-isolated .hotel-name {
    font-family: 'Cormorant', serif;
    font-size: 4rem; 
    color: var(--text-bright-white);
    line-height: 1; 
    text-shadow: 0 0 20px rgba(2, 105, 180, 0.4);
    margin-bottom: 10px; font-weight: 600;
}
#elysian-footer-isolated .hotel-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-style: italic; 
    color: var(--text-normal-white);
    margin-bottom: 30px;
}
#elysian-footer-isolated .contact-large { 
    font-size: 1.1rem; line-height: 1.6; 
    color: var(--text-normal-white);
}
#elysian-footer-isolated .contact-large div { 
    margin-bottom: 8px;
    word-break: break-word;
}
#elysian-footer-isolated .contact-large a { 
    color: var(--text-normal-white);
    text-decoration: none; transition: 0.3s; border-bottom: 1px solid transparent; 
}
#elysian-footer-isolated .contact-large a:hover { 
    color: var(--accent-blue); border-color: var(--accent-blue);
}

#elysian-footer-isolated .policies-bar {
    width: 100%; display: flex; justify-content: center;
    gap: 40px; flex-wrap: wrap; font-size: 0.95rem; 
    color: var(--text-muted-bluegrey);
    margin-bottom: 35px; padding: 15px 0;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--border-line);
    border-bottom: 1px solid var(--border-line);
}
#elysian-footer-isolated .policies-bar span b { 
    color: var(--text-bright-white); margin-right: 5px;
}


/* --- YEH WALLA SOCIAL WRAP BLOCK CHANGED TO REMOVE RINGS & FIT PROPER COLOR -- */

#elysian-footer-isolated .social-wrap { 
    text-align: center; margin-bottom: 30px; 
}
#elysian-footer-isolated .social-icon {
    display: inline-flex; justify-content: center; align-items: center;
    width: 45px; height: 45px; 
    text-decoration: none; transition: transform 0.4s ease, filter 0.4s ease;
    margin: 0 10px;
}
/* Ab purane box wale blue bg aur safed ring style hatakar fresh native shadow animation dali he - beautiful ! */
#elysian-footer-isolated .social-icon:hover {
    transform: translateY(-4px) scale(1.12);
    filter: drop-shadow(0px 8px 10px rgba(0,0,0,0.4));
}


#elysian-footer-isolated .copyright-row { 
    text-align: center; font-size: 0.8rem; 
    color: var(--text-muted-bluegrey);
    margin-top: 20px;
    padding: 0 15px;
}
#elysian-footer-isolated .copyright-row p {
    margin-bottom: 12px;
    word-break: break-word;
}
#elysian-footer-isolated .copyright-row a { 
    color: var(--text-muted-bluegrey); margin: 0 5px; text-decoration: none; 
}
#elysian-footer-isolated .copyright-row a:hover { 
    color: var(--accent-blue);
}

/* Helper Styles for SVGs (Icons Fixed So Native Layout Is Shown Size Maintained To Container Only */
.icon-svg { fill: currentColor; }
.social-icon .icon-svg { width: 100%; height: 100%; } 
.contact-large .icon-svg { width: 1.1rem; height: 1.1rem; vertical-align: -0.1em; }


/* Tablet */
@media (max-width: 1024px) {
    #elysian-footer-isolated .footer-content-layer {
        width: 90%;
        padding: 60px 0 25px;
    }
    #elysian-footer-isolated .main-row { gap: 3vw; }
    #elysian-footer-isolated .hotel-name { font-size: 3rem; }
    #elysian-footer-isolated .hotel-tagline { font-size: 1.2rem; }

    #elysian-footer-isolated .center-brand {
        white-space: normal;
    }
}

/* Mobile */
@media (max-width: 768px) {
    #elysian-footer-isolated .footer-content-layer { padding: 50px 0 20px; }

    #elysian-footer-isolated .main-row {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-bottom: 30px; margin-bottom: 25px;
    }
    
    #elysian-footer-isolated .link-group.left,
    #elysian-footer-isolated .link-group.right {
        align-items: center; text-align: center;
    }

    #elysian-footer-isolated .footer-a:hover,
    #elysian-footer-isolated .link-group.left .footer-a:hover { transform: none; }

    #elysian-footer-isolated .center-brand { padding: 0; }
    #elysian-footer-isolated .hotel-name { font-size: 2.5rem; }
    #elysian-footer-isolated .hotel-tagline { font-size: 1.1rem; }
    #elysian-footer-isolated .contact-large { font-size: 1rem; }
    
    #elysian-footer-isolated .policies-bar {
        gap: 15px 30px; margin-bottom: 30px; text-align: center;
    }
    #elysian-footer-isolated .copyright-row { font-size: 0.75rem; }
    #elysian-footer-isolated .copyright-row a { margin: 8px 5px; } 
}

/* Small Mobile */
@media (max-width: 480px) {
    #elysian-footer-isolated .hotel-name { font-size: 2.2rem; }
    #elysian-footer-isolated .hotel-tagline { font-size: 1rem; margin-bottom: 25px; }

    #elysian-footer-isolated .policies-bar {
        flex-direction: column; align-items: center;
        gap: 15px; background: none;
    }
    
    #elysian-footer-isolated .social-icon { width: 44px; height: 44px; margin: 0 8px; }
    .social-icon .icon-svg { width: 100%; height: 100%; }
}


.date-wrap {
    position: relative;
}

.date-wrap input {
    padding-left: 40px;
}

.fake-placeholder {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    font-size: 14px;
    z-index: 2;
    background: transparent;
}

.date-wrap.has-value .fake-placeholder {
    display: none;
}








/* Sticky Button - Middle Right Position */
.sticky-book-btn {
  /* Screen Ke Middle Right Par Chipkane Ke Liye */
  position: fixed;
  top: 50%; /* Screen ke absolute center (Upar/Niche) */
  margin-top: -26px; /* Ekdam exact center balance ke liye (Button ke size ka aadha) */
  right: 0px; /* Right kinare (border) se chipak kar */
  z-index: 99999;
  
  display: flex;
  align-items: center;
  gap: 8px;
  
  background-color: #2143B8; 
  color: #ffffff;
  padding: 15px 20px 15px 20px;
  
  /* Styling (Gol left side, chokor (flat) right side) */
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px 0 0 50px; /* <-- Trick jo ise kinare se merge karta hai */
  box-shadow: -5px 5px 15px rgba(0,0,0,0.25);
  
  /* Initial hidden state - ye bahar ki taraf chupa rahega right side me */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy slide-in effect */
  opacity: 0;
  transform: translateX(120%); 
  pointer-events: none;
}

/* Hover (Touch Karne Par) Ka Effect */
.sticky-book-btn:hover {
  background-color: #172F81;
  padding-right: 30px; /* Thoda sa andar aur slide hoga bahar nikal ke ! */
  box-shadow: -8px 8px 20px rgba(0,0,0,0.3);
  color: white;
}

/* Jab user scroll down karega, JS ye class laga dega jisse wo appear hoga */
.sticky-book-btn.show-btn {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

@media (max-width: 768px) {
  .sticky-book-btn {
    padding: 12px 16px 12px 16px;
    font-size: 14px;
    margin-top: -22px; /* Phone screens k according adjust */
  }
}









.highlighted-attraction-section {
    color: #000000; 
    text-align: center;
    font-family: 'DM Sans', sans-serif; /* Base paragraph font applied globally */
}

.highlighted-container {
    max-width: 1200px;
    margin: 40px auto;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #ffffff; /* Clean white container */
}

.highlighted-header {
    margin-bottom: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f6fc, #d6e4f0); /* Updated to a slight, subtle blue tint to match the theme */
}

.highlighted-title {
    font-family: 'Cormorant', serif; /* Updated title font */
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #0b519d; /* Accented title with the primary color */
}

.highlighted-subtitle {
    font-family: 'Cormorant', serif; /* Updated title font */
    font-size: 1.3rem;
    color: #000000;
}

.highlighted-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 40px;
}

.highlighted-description {
    flex: 1;
    text-align: left;
}

.highlighted-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.highlighted-features li {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #000000; /* Set text to Black */
    display: flex;
    align-items: center;
}

.highlighted-features li strong {
    color: #0b519d; /* Feature highlight updated to your #0b519d color */
}

.highlighted-text {
    font-family: 'DM Sans', sans-serif; /* Updated paragraph font */
    font-size: 1rem;
    line-height: 1.6;
    color: #000000; /* Set Paragraph to Black */
    margin-bottom: 15px;
}

.highlighted-reservation-btn {
    font-family: 'DM Sans', sans-serif;
    display: inline-block;
    padding: 12px 24px;
    background: #0b519d; /* Background mapped to your #0b519d color */
    color: #ffffff !important;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.highlighted-reservation-btn:hover {
    background: #07386d; /* Deepened shade of the primary color for an elegant hover state */
    transform: translateY(-3px);
}

.highlighted-image {
    flex: 1;
    max-height: 300px;
    overflow: hidden;
}

.highlighted-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlighted-img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .highlighted-content {
        flex-direction: column;
    }
    .highlighted-title {
        font-size: 2rem;
    }
    .highlighted-subtitle {
        font-size: 1.1rem;
    }
}




/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #0b519d; /* Dark blue from color palette */
    color: white; /* Yellow from color palette */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s, transform 0.3s;
}

.back-to-top:hover {
    background-color: #0b519d; /* Light blue on hover */
    transform: translateY(-5px); /* Lift effect on hover */
}

.back-to-top i {
    color: white; /* Yellow icon */
}

.back-to-top.visible {
    visibility: visible;
    opacity: 1;
}