/* ==========================================================================
   1. IMPORTS & ROOT VARIABLES
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* CRITICAL: Remove default body/html margins for full-width sections */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
   /*  overflow-x: hidden; */
}

:root {
    /* Color Variables */
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --border-color: #ddd;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --info-color: #16a085;
    --white: #fff;
    --gray-light: #f8f9fa;
    --gray-medium: #dee2e6;
    --gray-dark: #6c757d;
    --beige: #f5f5f5;
    
    /* Slick Carousel Variables */
    --slick-arrow-color: #27ae60;
    --slick-dot-color: #27ae60;
}

/* ==========================================================================
   2. GLOBAL RESET & BASE STYLES
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:focus {
    outline: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

/* ==========================================================================
   3. MAIN CONTAINER
   ========================================================================== */

.lodge-overview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0 20px;
    box-sizing: border-box;
}

/* ==========================================================================
   4. HEADER SECTION
   ========================================================================== */
/* Apply to the whole page */

html {
    scroll-behavior: smooth;
}

/* Add scroll offset to account for sticky nav */
#overview,
#options,
#facilities,
#experience,
#activities,
#getting-there,
#important_and_legal,
#reviews,
#faq {
    scroll-margin-top: 100px; /* Adjust based on your nav height */
}
/* Header Container */
.lodge-overview-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
    margin-bottom: 0px !important;
}
/* ==========================================================================
   Content section links
   ========================================================================== */


/* Sections end here /*
/* Top Row - Navigation and Actions */
.lodge-overview-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    margin-bottom: 15px;
}

.lodge-overview-back-link {
    color: var(--success-color);
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.lodge-overview-back-link:before {
    content: "←";
    margin-right: 8px;
    font-size: 18px;
}

.lodge-overview-back-link:hover {
    text-decoration: underline;
}

.lodge-overview-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.lodge-overview-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--success-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.lodge-overview-action-btn img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.lodge-overview-action-btn:hover {
    color: #218838;
}

/* Title */
.lodge-overview-title {
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0px;
    line-height: 1.2;
    color: var(--dark-color);
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: manual;
}

/* Bottom Row - Location and Logo */
.lodge-overview-bottom-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.lodge-overview-location-info {
    flex: 1;
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    word-break: keep-all;
    white-space: normal;
    max-width: 680px;
}

.lodge-overview-location-info:before {
    content: url(https://8820531.fs1.hubspotusercontent-na1.net/hubfs/8820531/07%20Namibian.org/General%20Media/Icons/GC-icons/location.png);
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 2px;
    width: 16px;
    height: 16px;
}

.lodge-overview-logo {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.lodge-overview-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ==========================================================================
   5. NAVIGATION TABS
   ========================================================================== */

.lodge-overview-nav-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    border: 0.8px solid var(--border-color);
    margin-bottom: 20px;
    border-radius: 50px;
    overflow: visible;
    position: sticky;
    background-color: white;
    z-index: 1000;
    transition: all 0.3s ease;
    max-width: 1198px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.lodge-overview-nav-tab {
    padding: 20px 25px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: var(--primary-color);
    white-space: nowrap;
}

.lodge-overview-nav-tab.active {
    background-color: white;
    text-decoration: underline 3px solid var(--success-color);
    text-underline-offset: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.lodge-overview-nav-tab:hover {
    background-color: #f8f9fa;
}

/* ==========================================================================
   6. IMAGE GALLERY
   ========================================================================== */

.lodge-overview-image-gallery {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 10px;
    margin-bottom: 50px;
    height: 390px;
    overflow: hidden;
  border-radius: 8px
}

.lodge-overview-main-image,
.lodge-overview-right-column,
.lodge-overview-top-right-image,
.lodge-overview-bottom-right-container,
.lodge-overview-bottom-left-image,
.lodge-overview-bottom-right-image {
    min-height: 0;
}

.lodge-overview-main-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
    cursor: pointer;
}

.lodge-overview-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.lodge-overview-main-image:hover img {
    transform: scale(1.05);
}

.lodge-overview-right-column {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    height: 100%;
}

.lodge-overview-top-right-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
    cursor: pointer;
}

.lodge-overview-top-right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.lodge-overview-top-right-image:hover img {
    transform: scale(1.05);
}

.lodge-overview-bottom-right-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    height: 100%;
}

.lodge-overview-bottom-left-image,
.lodge-overview-bottom-right-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
    cursor: pointer;
}

.lodge-overview-bottom-left-image img,
.lodge-overview-bottom-right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.lodge-overview-bottom-left-image:hover img,
.lodge-overview-bottom-right-image:hover img {
    transform: scale(1.05);
}

.lodge-overview-photo-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: var(--success-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.3s ease;
}

.lodge-overview-photo-count:hover {
    background-color: #218838;
}

/* Mobile Carousel Elements */
.lodge-overview-carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 2;
    display: none;
}

.lodge-overview-carousel-arrow {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.lodge-overview-carousel-arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.lodge-overview-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
    display: none;
}

.lodge-overview-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.lodge-overview-carousel-dot.active {
    background-color: white;
}

/* ==========================================================================
   7. MAIN CONTENT & SIDEBAR
   ========================================================================== */

.lodge-overview-content-wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.lodge-overview-main-content {
    flex: 2;
}

.lodge-overview-main-content h2 {
    text-align: left;
}

.lodge-overview-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lodge-overview-section-title {
    text-align: center;
    font-size: 38px;
    font-weight: bold;
    margin: 0px 0 40px;
    color: var(--dark-color);
}

.lodge-overview-text {
    margin-bottom: 20px;
    line-height: 1.6;
}

.lodge-overview-text p {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #4b3d3a;
}

.lodge-overview-text strong {
    font-weight: 600;
}

/* ==========================================================================
   8. SIDEBAR COMPONENTS
   ========================================================================== */

/* Map Card */
.lodge-overview-map-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    z-index: 0;
}

.lodge-overview-map-image {
    width: 100%;
    height: 160px;
    background-color: #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

#map-container {
    height: 150px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.leaflet-container {
    border-radius: 8px;
}

.lodge-overview-address {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    padding: 3px 10px;
    color: var(--primary-color);
}

.lodge-overview-gps-coordinates {
    font-size: 12px;
    color: #666;
    padding: 0 15px;
    margin-bottom: 15px;
}

.lodge-overview-view-map {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    color: var(--warning-color);
    text-decoration: none;
    font-size: 14px;
    padding: 0 15px 10px;
}

.lodge-overview-view-map:hover {
    text-decoration: underline;
}

.lodge-overview-view-map:after {
    content: "→";
    font-size: 12px;
}

/* Reviews Card */
.lodge-overview-reviews-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    border: 1px solid var(--border-color);
    height: 260px;
}

.lodge-overview-reviews-card iframe {
    height: 100%;
    width: 100%;
}

/* ==========================================================================
   9. ROOMS CAROUSEL - SLICK STYLES
   ========================================================================== */

/* Remove old grid styles */
.lodge-overview-stay-options-grid {
    display: none;
}

/* Rooms Carousel Container */
.rooms-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 0 20px;
}

.rooms-slider {
    position: relative;
    margin: 0 -15px;
}

/* Hide slides before initialization */
.rooms-slider:not(.slick-initialized) > div {
    display: none;
}

.rooms-slider:not(.slick-initialized) > div:first-child {
    display: block;
}

.rooms-slider .slick-list {
    margin: 0 !important;
    padding: 20px 0 !important;
    overflow: hidden !important;
}

.rooms-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

.rooms-slider .slick-slide {
    margin: 0 15px;
    height: auto;
    float: none;
}

.rooms-slider .slick-slide > div {
    height: 100%;
}

/* Hide default Slick navigation */
.rooms-slider .slick-prev,
.rooms-slider .slick-next,
.rooms-slider .slick-arrow,
.rooms-slider .slick-dots {
    display: none !important;
}

/* Custom Navigation */
.rooms-navigation-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.rooms-arrow-prev,
.rooms-arrow-next {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 2px solid rgba(39, 174, 96, 0.3);
    border-radius: 50%;
    background-color: var(--success-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.rooms-arrow-prev:hover,
.rooms-arrow-next:hover {
    background-color: #218838;
    border-color: var(--success-color);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.rooms-arrow-prev svg,
.rooms-arrow-next svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    display: block;
}

.rooms-dots-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.rooms-dot {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(39, 174, 96, 0.5);
    border-radius: 50%;
    background-color: rgba(39, 174, 96, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

.rooms-dot.active {
    background-color: var(--success-color);
    width: 36px;
    border-radius: 6px;
}

.rooms-dot:hover {
    background-color: rgba(39, 174, 96, 0.5);
    transform: scale(1.15);
}

/* Room Card Styles */
.lodge-overview-room-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    background: white;
    box-sizing: border-box;
    height: 100%;
    min-height: 570px;
}

.rooms-slider .lodge-overview-room-card {
    height: 100%;
}

.lodge-overview-room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.lodge-overview-room-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.lodge-overview-room-card:hover .lodge-overview-room-image img {
    transform: scale(1.05);
}

.lodge-overview-room-content {
    padding: 25px;
    background-color: var(--white);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.lodge-overview-room-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    color: var(--dark-color);
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.lodge-overview-room-description {
    font-size: 14px;
    color: var(--gray-dark);
    margin-bottom: 20px;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.lodge-overview-room-features {
    margin-bottom: 5px;
    flex-grow: 1;
    max-height: 80px;
}

.lodge-overview-feature-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.lodge-overview-feature-item {
    font-size: 10px;
    color: var(--text-color);
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    width: auto;
}

.lodge-overview-feature-item strong {
    font-size: 11px;
    font-weight: 600;
    min-width: 110px;
    flex-shrink: 0;
}

.lodge-overview-feature-item:before {
    content: "•";
    margin-right: 8px;
    color: var(--success-color);
    font-weight: bold;
    flex-shrink: 0;
}

.lodge-overview-price-section {
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.lodge-overview-price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    word-break: keep-all;
    white-space: nowrap;
    font-size: 12px;
  
}

.lodge-overview-price-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-dark);
}

.lodge-overview-price-value {
    font-size: 18px;
    font-weight: bold;
    color: var(--dark-color);
    word-break: keep-all;
}

.lodge-overview-book-button {
    display: none;
    width: 100%;
    padding: 0px 0px;
    background-color: var(--white);
    color: var(--dark-color);
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 14px;
    border: solid 2px red;
}

.lodge-overview-book-button:hover {
    background-color: var(--info-color);
    color: var(--white);
    border-color: var(--info-color);
}

/* ==========================================================================
   10. FACILITIES SECTION - FIXED FOR MOBILE OVERFLOW
   ========================================================================== */

.facilities-container-wrapper {
    /* 
    width: 100%;
    max-width: 100%;
    padding: 60px 0 0 0;
    position: relative;
    overflow: hidden;
    */
 
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 60px 0 0 0;
    position: relative;
    overflow: hidden;
}

.facilities-main-title {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.facilities-main-title:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #dadada;
}

.facilities-bg-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
}

.facilities-content-column {
    padding: 60px 40px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.facilities-content-wrapper {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-x: hidden;
    box-sizing: border-box;
}

.facility-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.facility-card.expanded {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #dadada;
}

.facility-card-header {
    padding: 15px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #dadada;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.facility-card-header:hover {
    background: #f1f5f9;
}

.facility-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.expand-icon {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #318F53;
    flex-shrink: 0;
}

.facility-card.expanded .expand-icon {
    transform: rotate(180deg);
    background: #dadada;
}

.facility-card-header:hover .expand-icon {
    background: #dadada;
}

.facility-card-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.facility-card.expanded .facility-card-content {
    padding: 32px;
    max-height: 2000px;
    overflow-x: hidden;
}

/* Facility Details */
.facility-detail {
    margin-bottom: 28px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.facility-detail:last-child {
    margin-bottom: 0;
}

.facility-detail-label {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.facility-detail-value {
    font-size: 18px;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 8px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.room-count {
    display: inline-block;
    padding: 8px 16px;
    background: #e0f2fe;
    border-radius: 6px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #0369a1;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.facility-note {
    font-size: 14px;
    color: #64748b;
    font-style: italic;
    margin-top: 6px;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Facility Tags */
.facility-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    max-width: 100%;
    overflow-x: hidden;
}

.facility-tag {
    padding: 8px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 14px;
    color: #475569;
    font-weight: 500;
    max-width: calc(100% - 16px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.facility-tag.highlighted {
    background: #dbeafe;
    color: #1d4ed8;
    border-color: #bfdbfe;
}

/* Check-in/Check-out */
.checkin-checkout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 500px;
    overflow: hidden;
}

.time-block {
    text-align: center;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
}

.time-label {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.time-value {
    font-size: 24px;
    font-weight: 700;
    color: #318F53;
    margin-bottom: 8px;
}

.time-note {
    font-size: 12px;
    color: #94a3b8;
    font-style: italic;
}

/* Contact Details */
.contact-details,
.contact-item,
.contact-value {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.contact-link {
    word-break: break-all;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
}

/* Amenities */
.amenities-list,
.amenity-item,
.amenity-name {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.amenity-item ul,
.amenity-item li {
    line-height: 1.4;
    margin-bottom: 2px;
}
/* Service Questions */
.service-questions,
.question-item,
.question-text,
.answer-text {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Policy Content */
.policy-content {
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* TRANSFERS TABLE SECTION */
.transfer-content {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
}

.transfer-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: white;
    margin: 0;
    table-layout: fixed;
}

.transfer-table thead {
    background-color: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
}

.transfer-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    color: #334155;
    font-size: 14px;
}

.transfer-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
    vertical-align: top;
    line-height: 1.5;
    word-break: break-word;
}

.transfer-table tbody tr:last-child td {
    border-bottom: none;
}

.transfer-table .date-row {
    background-color: #eff6ff;
    font-weight: 600;
    color: #1e40af;
    text-align: center;
    font-size: 15px;
    padding: 12px 16px;
}

.transfer-table td:nth-child(1) {
    font-weight: 500;
    color: #111827;
    width: 20%;
}

.transfer-table td:nth-child(2) {
    color: #4b5563;
    width: 55%;
}

.transfer-table td:nth-child(3) {
    font-weight: 600;
    color: #059669;
    text-align: right;
    width: 25%;
}

.transfer-table td br {
    display: block;
    margin-bottom: 4px;
}

.transfer-table tbody tr:hover {
    background-color: #f8fafc;
}

/* Facilities Image Column */
.facilities-image-column {
    position: relative;
    height: 100%;
}

.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.full-height-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Cutout Effect - Desktop Only */
@media (min-width: 1025px) {
    .facilities-image-column .full-height-image {
        -webkit-mask-image: url('https://8820531.fs1.hubspotusercontent-na1.net/hubfs/8820531/01%20Gondwana%20Website/01%20HOME/cout-out.png');
        mask-image: url('https://8820531.fs1.hubspotusercontent-na1.net/hubfs/8820531/01%20Gondwana%20Website/01%20HOME/cout-out.png');
        -webkit-mask-size: cover;
        mask-size: cover;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
    }
}

@media (max-width: 1024px) {
    .facilities-image-column .full-height-image {
        -webkit-mask-image: none !important;
        mask-image: none !important;
    }
}

/* ==========================================================================
   11. ACTIVITIES CAROUSEL - SLICK STYLES
   ========================================================================== */

.lodge-overview-activities-grid {
    display: none;
}

.activities-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.activities-slider {
    position: relative;
    margin: 0 -15px;
}

.activities-slider:not(.slick-initialized) > div {
    display: none;
}

.activities-slider:not(.slick-initialized) > div:first-child {
    display: block;
}

.activities-slider .slick-list {
    margin: 0 !important;
    padding: 20px 0 !important;
    overflow: hidden !important;
}

.activities-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

.activities-slider .slick-slide {
    margin: 0 15px;
    height: auto;
    float: none;
}

.activities-slider .slick-slide > div {
    height: 100%;
}

.activities-slider .slick-prev,
.activities-slider .slick-next,
.activities-slider .slick-arrow,
.activities-slider .slick-dots {
    display: none !important;
}

.activities-navigation-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.activities-arrow-prev,
.activities-arrow-next {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 2px solid rgba(39, 174, 96, 0.3);
    border-radius: 50%;
    background-color: var(--success-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.activities-arrow-prev:hover,
.activities-arrow-next:hover {
    background-color: #218838;
    border-color: var(--success-color);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.activities-arrow-prev svg,
.activities-arrow-next svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    display: block;
}

.activities-dots-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.activities-dot {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(39, 174, 96, 0.5);
    border-radius: 50%;
    background-color: rgba(39, 174, 96, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

.activities-dot.active {
    background-color: var(--success-color);
    width: 36px;
    border-radius: 6px;
}

.activities-dot:hover {
    background-color: rgba(39, 174, 96, 0.5);
    transform: scale(1.15);
}

.lodge-overview-activity-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    background: white;
    box-sizing: border-box;
    height: 100%;
    min-height: 450px;
}

.activities-slider .lodge-overview-activity-card {
    height: 100%;
}

.lodge-overview-activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.lodge-overview-activity-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.lodge-overview-activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lodge-overview-activity-card:hover .lodge-overview-activity-image img {
    transform: scale(1.05);
}

.lodge-overview-activity-content {
    padding: 20px;
    background-color: var(--white);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.lodge-overview-activity-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    margin-bottom: 4px !important;
}

.lodge-overview-activity-description {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.5;
    flex-grow: 1;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.lodge-overview-activity-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
    flex-shrink: 0;
}

.lodge-overview-activity-price-info {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    word-break: keep-all;
    white-space: nowrap;
}

.lodge-overview-read-more {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #318F53;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    word-break: keep-all;
    white-space: nowrap;
}

.lodge-overview-read-more:hover {
    text-decoration: underline;
}

.lodge-overview-read-more:after {
    content: "→";
    font-size: 12px;
}

/* Activity Expandable Content Styles */
.activity-expandable-content {
    padding: 15px 0;
    line-height: 1.6;
    color: #555;
    animation: slideDown 0.3s ease;
    overflow: hidden;
}

.lodge-overview-activity-card.activity-expanded .activity-expandable-content {
    display: block !important;
}

.lodge-overview-activity-description.activity-truncated {
    margin-bottom: 0;
}

@keyframes slideDown {
    from {
        max-height: 0;
        opacity: 0;
    }
    to {
        max-height: 1000px;
        opacity: 1;
    }
}

/* ==========================================================================
   12. REMOVE OLD CAROUSEL STYLES
   ========================================================================== */

.swiper-button-next,
.swiper-button-prev,
.swiper-pagination,
.swiper-pagination-bullet,
.swiper-pagination-bullet-active,
.rooms-swiper,
.activities-swiper,
.rooms-carousel-container,
.activities-carousel-container,
.room-carousel-wrapper,
.activity-carousel-wrapper,
.carousel-navigation,
.carousel-nav-btn,
.carousel-dots,
.carousel-dot {
    display: none !important;
}

/* ==========================================================================
   13. TRANSPORT GRID
   ========================================================================== */
.lodge-overview-transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.lodge-overview-transport-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    margin: 0;
}

.lodge-overview-transport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.lodge-overview-transport-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    flex-shrink: 0;
}

.lodge-overview-transport-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.lodge-overview-transport-card:hover .lodge-overview-transport-image img {
    transform: scale(1.05);
}

.lodge-overview-transport-content {
    padding: 20px;
    background-color: var(--white);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lodge-overview-transport-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 5px 0;
    color: var(--dark-color);
}

.lodge-overview-transport-subtitle {
    font-size: 14px;
    color: var(--gray-dark);
    margin: 0 0 10px 0;
    font-style: italic;
    flex-grow: 1;
}

.lodge-overview-book-car-button {
    width: auto;
    min-width: 150px;
    padding: 12px 20px;
    background-color: var(--white);
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
    box-sizing: border-box;
}

.lodge-overview-book-car-button:hover {
    background-color: var(--info-color);
    color: var(--white);
    border-color: var(--info-color);
}

/* CRITICAL: Force single column on mobile/tablet */
@media (max-width: 992px) {
    .lodge-overview-transport-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0 15px;
    }
}

/* Tablet optimization */
@media (max-width: 768px) {
    .lodge-overview-transport-image {
        height: 220px;
    }
    
    .lodge-overview-transport-content {
        padding: 18px;
    }
    
    .lodge-overview-transport-title {
        font-size: 18px;
    }
    
    .lodge-overview-book-car-button {
        width: 100%;
        min-width: unset;
    }
}

/* Mobile optimization */
@media (max-width: 480px) {
    .lodge-overview-transport-grid {
        gap: 15px;
        padding: 0 10px;
    }
    
    .lodge-overview-transport-image {
        height: 180px;
    }
    
    .lodge-overview-transport-content {
        padding: 15px;
    }
    
    .lodge-overview-transport-title {
        font-size: 17px;
    }
    
    .lodge-overview-transport-subtitle {
        font-size: 13px;
    }
}
/* ==========================================================================
   14. FAQ SECTION
   ========================================================================== */

.lodge-overview-faq-section {
    background-color: var(--gray-light);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0 40px;
}

.lodge-overview-faq-grid {
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
   grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.lodge-overview-faq-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100px;
}

.lodge-overview-faq-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.lodge-overview-faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.lodge-overview-faq-question {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    flex-grow: 1;
    padding-right: 10px;
}

.lodge-overview-faq-icon {
    width: 24px;
    height: 24px;
    background-color: var(--gray-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.lodge-overview-faq-card.expanded .lodge-overview-faq-icon {
    transform: rotate(180deg);
}

.lodge-overview-faq-answer {
    display: none;
    padding-top: 10px;
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.5;
}

.lodge-overview-faq-card.expanded .lodge-overview-faq-answer {
    display: block;
}

/* ==========================================================================
   15. SOUVENIR SECTION
   ========================================================================== */

.lodge-overview-souvenir-section {
    background-color: #F2F1EC;
    border-radius: 20px;
    overflow: hidden;
    margin: 40px 0 80px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.lodge-overview-souvenir-content {
    flex: 1;
    padding: 40px;
}

.lodge-overview-souvenir-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--dark-color);
    line-height: 1.3;
}

.lodge-overview-souvenir-subtitle {
    font-size: 16px;
    color: var(--gray-dark);
    margin-bottom: 30px;
}

.lodge-overview-buy-button {
    padding: 12px 24px;
    background-color: #318F53;
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-block;
    border: none;
    text-decoration: none;
}

.lodge-overview-buy-button:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.lodge-overview-souvenir-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 300px;
}

.lodge-overview-souvenir-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Cutout Effect for Souvenir - Desktop Only */
@media (min-width: 1025px) {
    .lodge-overview-souvenir-image img {
        -webkit-mask-image: url('https://8820531.fs1.hubspotusercontent-na1.net/hubfs/8820531/01%20Gondwana%20Website/01%20HOME/cout-out.png');
        mask-image: url('https://8820531.fs1.hubspotusercontent-na1.net/hubfs/8820531/01%20Gondwana%20Website/01%20HOME/cout-out.png');
        -webkit-mask-size: cover;
        mask-size: cover;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
    }
}

@media (max-width: 1024px) {
    .lodge-overview-souvenir-image img {
        -webkit-mask-image: none !important;
        mask-image: none !important;
    }
}

/* ==========================================================================
   16. EXPERIENCE & VIDEO SECTIONS
   ========================================================================== */


/* Experience new start */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.lodge-overview-virtual-tour-container,
.lodge-overview-video-container {
    width: 100%;
}

.lodge-overview-virtual-tour-container iframe,
.lodge-overview-video-player iframe {
    border-radius: 12px;
}

@media (max-width: 968px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 968px) {
    .experience-grid {
        grid-template-columns: 1fr;
        padding-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .lodge-overview-container#experience {
        padding-bottom: 3.5rem !important;
        margin-bottom: 3.5rem !important;
    }
    
    .experience-grid {
        padding-bottom: 2rem !important;
        margin-bottom: 2rem !important;
    }
}
/* Experience new ends */
 /* ==========
.experience-video-wrapper {
    width: 100%;
    height: 480;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.experience-video-wrapper > .lodge-overview-container {
    flex: 1;
    min-width: 300px;
    margin-bottom: 0;
    padding: 0;
}

.experience-video-wrapper > .lodge-overview-container:only-child {
    flex: 0 0 100%;
    max-width: 100%;
}

.experience-video-wrapper .lodge-overview-section-title {
    margin-bottom: 20px;
    text-align: left;
}

.experience-video-wrapper .lodge-overview-container {
    padding: 0;
}

.experience-video-wrapper .lodge-overview-virtual-tour-container,
.experience-video-wrapper .lodge-overview-video-container {
    width: 100%;
}

.experience-video-wrapper .lodge-overview-virtual-tour-container iframe,
.experience-video-wrapper .lodge-overview-video-player iframe {
    width: 100%;
    height: 400px;
}

.lodge-overview-virtual-tour-container {
    width: 100%;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
}

.lodge-overview-virtual-tour-container iframe {
    width: 100%;
    height: 480px;
    display: block;
    border: none;
}

.lodge-overview-video-container {
    width: 100%;
    margin-bottom: 40px;
}

.lodge-overview-video-player {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    background-color: #000;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.lodge-overview-video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
 ========== */
/* ==========================================================================
   17. LIGHTBOX GALLERY
   ========================================================================== */

.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
    display: flex;
    opacity: 1;
}

.gallery-lightbox-container {
    display: flex;
    flex-direction: column;
    width: 90%;
    height: 90vh;
    max-width: 1400px;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: #1a1a1a;
    border-bottom: 1px solid #333;
}

.gallery-lightbox-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.gallery-lightbox-close {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 24px;
    width: 40px;
    height: 40px;
}

.gallery-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.gallery-lightbox-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px;
    overflow: hidden;
    background: #000;
}

.gallery-main-image-wrapper {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#gallery-main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.gallery-image-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    font-size: 24px;
}

.gallery-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 30px;
}

.gallery-next {
    right: 30px;
}

.gallery-thumbnails-container {
    padding: 20px 30px 30px;
    background: #1a1a1a;
    border-top: 1px solid #333;
}

.gallery-thumbnails {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: #555 #1a1a1a;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 10px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 5px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 5px;
}

.gallery-thumbnail {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.gallery-thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
    border-color: rgba(49, 143, 83, 0.5);
}

.gallery-thumbnail.active {
    border-color: #318F53;
    opacity: 1;
    box-shadow: 0 0 15px rgba(49, 143, 83, 0.4);
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   18. READ MORE FUNCTIONALITY - LODGE OVERVIEW
   ========================================================================== */

.lodge-overview-text-container {
    position: relative;
}

.lodge-overview-readmore-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #27ae60, #219653);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
}

.lodge-overview-readmore-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
    background: linear-gradient(135deg, #219653, #1e874b);
}

.lodge-overview-readmore-toggle:active {
    transform: translateY(0);
}

.lodge-overview-readmore-toggle.expanded {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
}

.lodge-overview-readmore-toggle.expanded:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

/* Fade effect for truncated text - Lodge Overview */
.lodge-overview-text.truncated {
    position: relative;
    max-height: none;
    overflow: visible;
}

.lodge-overview-text.truncated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.9));
    pointer-events: none;
}

/* Animation for expanding/collapsing - Lodge Overview */
#overview-text {
    transition: max-height 0.5s ease;
}

/* ==========================================================================
   19. UTILITY CLASSES
   ========================================================================== */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.rooms-arrow-prev,
.rooms-arrow-next,
.activities-arrow-prev,
.activities-arrow-next {
    display: none !important;
}

.rooms-arrow-prev.visible,
.rooms-arrow-next.visible,
.activities-arrow-prev.visible,
.activities-arrow-next.visible {
    display: flex !important;
}

/* ==========================================================================
   20. RESPONSIVE DESIGN - TABLET (768px - 1024px)
   ========================================================================== */

@media (max-width: 1024px) {
    .lodge-overview-container {
        padding: 0 15px;
    }

    .lodge-overview-title {
        font-size: 32px;
        letter-spacing: 1.5px;
    }

    .lodge-overview-location-info {
        font-size: 15px;
    }

    .lodge-overview-logo {
        width: 58px;
        height: 58px;
         align-self: flex-start;
    }

    .lodge-overview-image-gallery {
        height: 400px;
    }

    .lodge-overview-nav-tabs {
        padding: 0 15px;
    }

    .facilities-bg-container {
        grid-template-columns: 1fr;
    }

    .facilities-content-column {
        padding: 40px 20px;
        order: 2;
    }

    .facilities-image-column {
        height: 400px;
        order: 1;
    }

    .lodge-overview-transport-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==========================================================================
   21. RESPONSIVE DESIGN - MOBILE (MAX-WIDTH: 768px)
   ========================================================================== */
/* Fix the gap between Experience and Facilities on mobile */
@media (max-width: 768px) {
    .lodge-overview-container#experience {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .facilities-container-wrapper {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
}
@media (max-width: 768px) {
    .lodge-overview-container {
        padding: 0 10px;
    }

    .lodge-overview-header {
        gap: 15px;
        padding: 15px 0;
    }

    .lodge-overview-header-top {
        gap: 10px;
    }

    .lodge-overview-back-link {
        font-size: 13px;
    }

    .lodge-overview-title {
        font-size: 22px;
        letter-spacing: 1px;
        line-height: 1.4;
    }

    .lodge-overview-bottom-row {
        gap: 10px;
    }

    .lodge-overview-location-info {
        font-size: 14px;
        max-width: 350px;
    }

    .lodge-overview-location-info:before {
        width: 14px;
        height: 14px;
    }

    .lodge-overview-logo {
        width: 60px;
        height: 60px;
    }

    .lodge-overview-actions {
        gap: 15px;
    }

    .lodge-overview-action-btn {
        font-size: 13px;
        gap: 6px;
    }

    .lodge-overview-action-btn img {
        width: 18px;
        height: 18px;
    }

    .lodge-overview-nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        border-radius: 25px;
        padding: 5px 20px;
        width: 93%;
        top: 0;
        margin: 0 auto 10px;
        justify-content: left;
    }

    .lodge-overview-nav-tabs::-webkit-scrollbar {
        display: none;
    }

    .lodge-overview-nav-tab {
        padding: 12px 20px;
        font-size: 13px;
        flex-shrink: 0;
    }
     /* =============================================
       Mobile navigation - Scoll effects on
       ============================================== */
  @media (max-width: 768px) {
    .lodge-overview-nav-tabs {
        position: sticky;
        z-index: 999;
        background: white;
        transition: transform 0.3s ease;
        /* Add gradient fade on right edge */
        position: relative;
    }
    
    /* Fade gradient to show more content */
    .lodge-overview-nav-tabs::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 40px;
        height: 100%;
        background: linear-gradient(to left, white, transparent);
        pointer-events: none;
        z-index: 10;
    }
    
    /* Hide gradient when scrolled to the end */
    .lodge-overview-nav-tabs.scrolled-end::after {
        display: none;
    }
    
    .lodge-overview-nav-tabs.hidden {
        transform: translateY(-100%);
    }
}
       

     /* ADD THIS - Mobile only sticky behavior */
     @media (max-width: 768px) {
    .lodge-overview-nav-tabs {
        position: sticky;
        z-index: 999;
        background: white;
        transition: transform 0.3s ease;
    }
    
    .lodge-overview-nav-tabs.hidden {
        transform: translateY(-100%);
    }
}
    .lodge-overview-image-gallery {
        display: block;
        position: relative;
        height: 350px;
        margin-bottom: 30px;
    }

    .lodge-overview-main-image,
    .lodge-overview-top-right-image,
    .lodge-overview-bottom-left-image,
    .lodge-overview-bottom-right-image {
        width: 100% !important;
        height: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        opacity: 0 !important;
        transition: opacity 0.5s ease !important;
        z-index: 0 !important;
        display: block !important;
    }

    .lodge-overview-main-image.active,
    .lodge-overview-top-right-image.active,
    .lodge-overview-bottom-left-image.active,
    .lodge-overview-bottom-right-image.active {
        opacity: 1 !important;
        z-index: 1 !important;
    }

    .lodge-overview-right-column,
    .lodge-overview-bottom-right-container {
        display: block !important;
        position: static !important;
        background: transparent !important;
        height: 0 !important;
        width: 0 !important;
        min-height: 0 !important;
        overflow: visible !important;
    }

    .lodge-overview-carousel-nav,
    .lodge-overview-carousel-dots {
        display: flex !important;
    }

    .lodge-overview-content-wrapper {
        flex-direction: column;
    }

    .lodge-overview-section-title {
        font-size: 38px;
        margin: 30px 0 40px;
    }

    .rooms-carousel-wrapper,
    .activities-carousel-wrapper {
        padding: 0 10px;
        margin-bottom: 40px;
    }
    
    .rooms-slider .slick-slide,
    .activities-slider .slick-slide {
        margin: 0 8px;
    }
    
    .rooms-slider,
    .activities-slider {
        margin: 0 -8px;
    }
    
    .rooms-navigation-wrapper,
    .activities-navigation-wrapper {
        margin-top: 30px;
        gap: 20px;
    }
    
    .rooms-arrow-prev,
    .rooms-arrow-next,
    .activities-arrow-prev,
    .activities-arrow-next {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    .rooms-dot,
    .activities-dot {
        width: 10px;
        height: 10px;
    }
    
    .rooms-dot.active,
    .activities-dot.active {
        width: 28px;
    }

    .lodge-overview-room-image {
        height: 200px;
    }

    .lodge-overview-transport-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .lodge-overview-transport-image {
        height: 250px;
    }

    .lodge-overview-book-car-button {
        width: 50%;
    }

    .lodge-overview-faq-section {
        padding: 20px 15px;
    }

    .lodge-overview-faq-grid {
        grid-template-columns: 1fr;
    }

    .lodge-overview-souvenir-section {
        flex-direction: column;
    }

    .lodge-overview-souvenir-content {
        padding: 25px 20px;
    }

    .lodge-overview-souvenir-title {
        font-size: 24px;
    }

    .lodge-overview-souvenir-image {
        height: 250px;
    }

    /* Facilities Mobile Fixes */
    .facilities-container-wrapper {
        padding: 30px 0 0 0;
        overflow-x: hidden;
    }
    
    .facilities-main-title {
        font-size: 26px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .facilities-bg-container {
        overflow-x: hidden;
    }

    .facilities-content-column {
        padding: 30px 15px;
        overflow-x: hidden;
    }
    
    .facilities-content-wrapper {
        padding: 0;
        overflow-x: hidden;
    }
    
    .facility-card {
        margin: 0;
        overflow: hidden;
    }
    
    .facility-card-header {
        padding: 15px 18px;
        overflow: hidden;
    }
    
    .facility-card.expanded .facility-card-content {
        padding: 20px 15px;
        overflow-x: hidden;
    }
    
    .facility-tags {
        gap: 8px;
    }
    
    .facility-tag {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .transfer-content {
        margin: 0 -15px;
        padding: 0 15px;
        overflow-x: auto;
    }
    
    .checkin-checkout-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .time-block {
        padding: 20px 15px;
        overflow: hidden;
    }

    .facilities-image-column {
        height: 300px;
    }

    .facility-card-header {
        padding: 18px 20px;
    }

    .facility-card.expanded .facility-card-content {
        padding: 20px;
    }

    .lodge-overview-virtual-tour-container iframe {
        height: 400px;
    }

    .experience-video-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0 15px;
    }
    
    .experience-video-wrapper > .lodge-overview-container {
        width: calc(50% - 15px);
    }
    
    .experience-video-wrapper > .lodge-overview-container:only-child {
        width: 100%;
    }

    .experience-video-wrapper .lodge-overview-virtual-tour-container iframe,
    .experience-video-wrapper .lodge-overview-video-player iframe {
        height: 500px;
    }

    .gallery-lightbox-container {
        width: 100%;
        height: 87vh;
        border-radius: 0;
    }

    .gallery-lightbox-header {
        padding: 15px 20px;
    }

    .gallery-lightbox-title {
        font-size: 18px;
    }

    .gallery-lightbox-image-container {
        padding: 20px 10px;
    }

    .gallery-nav-btn {
        width: 45px;
        height: 45px;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

    .gallery-thumbnail {
        width: 80px;
        height: 60px;
    }

    /* Lodge Overview Read More - Mobile */
    .lodge-overview-text.truncated {
        max-height: 200px;
        overflow: hidden;
    }
    
    .lodge-overview-readmore-toggle {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Transfer Table Responsive */
    .transfer-content {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -16px;
        padding: 0 16px;
    }
    
    .transfer-table {
        min-width: 700px;
    }
    
    .transfer-table th,
    .transfer-table td {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .transfer-table td:nth-child(1) {
        width: 25%;
        min-width: 120px;
    }
    
    .transfer-table td:nth-child(2) {
        width: 50%;
        min-width: 200px;
    }
    
    .transfer-table td:nth-child(3) {
        width: 25%;
        min-width: 120px;
    }
}

/* ==========================================================================
   22. RESPONSIVE DESIGN - SMALL MOBILE (MAX-WIDTH: 480px)
   ========================================================================== */

@media (max-width: 480px) {
    .lodge-overview-header {
        gap: 12px;
        padding: 10px 0;
    }

    .lodge-overview-back-link {
        font-size: 12px;
    }

    .lodge-overview-title {
        font-size: 22px;
        letter-spacing: 0.5px;
    }

    .lodge-overview-bottom-row {
        gap: 12px;
    }

    .lodge-overview-location-info {
        font-size: 13px;
        max-width: 350px;
    }

    .lodge-overview-logo {
        width: 50px;
        height: 50px;
    }

    .lodge-overview-actions {
        gap: 12px;
    }

    .lodge-overview-action-btn {
        font-size: 12px;
        gap: 4px;
    }

    .lodge-overview-action-btn img {
        width: 16px;
        height: 16px;
    }

    .lodge-overview-nav-tab {
        padding: 10px 16px;
        font-size: 12px;
    }

    .lodge-overview-image-gallery {
        height: 300px;
    }

    .lodge-overview-carousel-arrow {
        width: 35px;
        height: 35px;
    }

    .lodge-overview-carousel-dot {
        width: 8px;
        height: 8px;
    }

    .lodge-overview-section-title {
        font-size: 28px;
        margin: 15px 0 15px;
    }

    .lodge-overview-room-image {
        height: 180px;
    }

    .lodge-overview-room-title {
        font-size: 18px;
    }

    .lodge-overview-room-description {
        font-size: 12px;
    }

    .lodge-overview-feature-column {
        grid-template-columns: 1fr 1fr;
    }

    .lodge-overview-feature-item {
        font-size: 13px;
    }

    .lodge-overview-price-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .lodge-overview-price-label {
        font-size: 13px;
    }

    .lodge-overview-price-value {
        font-size: 18px;
    }

    .lodge-overview-book-button {
        padding: 10px;
        font-size: 13px;
    }

    .rooms-slider {
        min-height: 500px;
    }
  
     .lodge-overview-room-card {
        min-height: 500px;
    }

    .activities-slider .lodge-overview-activity-card {
        min-height: 400px;
    }

    .rooms-navigation-wrapper,
    .activities-navigation-wrapper {
        gap: 16px;
        margin-top: 5px;
    }
    
    .rooms-arrow-prev,
    .rooms-arrow-next,
    .activities-arrow-prev,
    .activities-arrow-next {
        width: 36px;
        height: 36px;
    }

    .lodge-overview-activity-image {
        height: 160px;
    }

    .lodge-overview-activity-title {
        font-size: 16px;
    }

    .lodge-overview-transport-image {
        height: 200px;
    }

    .lodge-overview-transport-title {
        font-size: 18px;
    }

    .lodge-overview-transport-subtitle {
        font-size: 13px;
    }

    .lodge-overview-faq-section {
        padding: 15px 10px;
    }

    .lodge-overview-faq-card {
        padding: 15px;
    }

    .lodge-overview-faq-question {
        font-size: 14px;
    }

    .lodge-overview-faq-answer {
        font-size: 13px;
    }

    .lodge-overview-souvenir-content {
        padding: 20px 15px;
    }

    .lodge-overview-souvenir-title {
        font-size: 20px;
    }

    .lodge-overview-souvenir-subtitle {
        font-size: 14px;
    }

    .lodge-overview-buy-button {
        padding: 10px 20px;
        font-size: 13px;
    }

    .lodge-overview-souvenir-image {
        height: 200px;
    }

    /* Facilities Small Mobile */
    .facilities-main-title {
        font-size: 22px;
        padding: 0 10px;
    }
    
    .facilities-content-column {
        padding: 20px 10px;
    }
    
    .facility-card-header {
        padding: 12px 15px;
    }
    
    .facility-card-title {
        font-size: 16px;
        word-break: break-word;
    }
    
    .facility-card.expanded .facility-card-content {
        padding: 15px 10px;
    }
    
    .facility-tag {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .time-block {
        padding: 16px 12px;
    }
    
    .facility-detail-value,
    .facility-note,
    .policy-content {
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .facilities-image-column {
        height: 250px;
    }

    .lodge-overview-virtual-tour-container iframe {
        height: 300px;
    }

    .experience-video-wrapper {
        flex-direction: column;
        padding: 0 10px;
        gap: 20px;
    }
    
    .experience-video-wrapper > .lodge-overview-container {
        width: 100%;
    }
  
  .lodge-overview-video-player {
       height: 300px;
  }

    .experience-video-wrapper .lodge-overview-virtual-tour-container iframe,
    .experience-video-wrapper .lodge-overview-video-player iframe {
        height: 300px;
    }

    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .gallery-thumbnail {
        width: 70px;
        height: 50px;
    }

    .gallery-image-counter {
        bottom: 15px;
        right: 15px;
        font-size: 13px;
        padding: 6px 12px;
    }

    .lodge-overview-view-map {
        justify-content: flex-start;
        margin-left: 0;
        padding-left: 15px;
    }

    /* Lodge Overview Read More - Small Mobile */
    .lodge-overview-text.truncated {
        max-height: 150px;
    }

    .lodge-overview-readmore-toggle {
        font-size: 14px;
        padding: 6px 0;
    }

    /* Transfer Table Mobile - Stacked Cards */
    .transfer-content {
        overflow-x: visible;
        margin: 0;
        padding: 0;
    }
    
    .transfer-table,
    .transfer-table thead,
    .transfer-table tbody,
    .transfer-table tr,
    .transfer-table td {
        display: block;
        width: 100%;
        min-width: 100% !important;
    }
    
    .transfer-table thead {
        display: none;
    }
    
    .transfer-table tr:not(.date-row) {
        margin-bottom: 16px;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 16px;
        background: #f8fafc;
    }
    
    .transfer-table .date-row {
        display: block;
        text-align: center;
        margin-bottom: 20px;
        border-radius: 6px;
        padding: 12px;
    }
    
    .transfer-table td {
        padding: 8px 0;
        border: none;
        text-align: left;
        display: block;
        width: 100% !important;
    }
    
    .transfer-table td:nth-child(1) {
        font-weight: 600;
        color: #111827;
        font-size: 15px;
        margin-bottom: 8px;
        padding-bottom: 8px;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .transfer-table td:nth-child(2) {
        color: #4b5563;
        margin-bottom: 8px;
        padding-bottom: 8px;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .transfer-table td:nth-child(3) {
        font-weight: 700;
        color: #059669;
        font-size: 15px;
        text-align: left;
        margin-top: 4px;
        padding-top: 8px;
    }
    
    .transfer-table td:nth-child(1)::before {
        content: "Service: ";
        font-weight: 600;
        font-size: 12px;
        color: #64748b;
        display: block;
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .transfer-table td:nth-child(2)::before {
        content: "Details: ";
        font-weight: 600;
        font-size: 12px;
        color: #64748b;
        display: block;
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .transfer-table td:nth-child(3)::before {
        content: "Price: ";
        font-weight: 600;
        font-size: 12px;
        color: #64748b;
        display: block;
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .transfer-table td br {
        margin-bottom: 8px;
    }
}

/* ==========================================================================
   23. RESPONSIVE DESIGN - EXTRA SMALL MOBILE (MAX-WIDTH: 375px)
   ========================================================================== */

@media (max-width: 375px) {
    .lodge-overview-title {
        font-size: 20px;
    }

    .lodge-overview-location-info {
        font-size: 12px;
    }

    .lodge-overview-section-title {
        font-size: 20px;
    }

    .facilities-main-title {
        font-size: 20px;
    }

    .transfer-table tr:not(.date-row) {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .transfer-table td {
        font-size: 13px;
    }
    
    .transfer-table td:nth-child(1) {
        font-size: 14px;
    }
    
    .transfer-table .date-row {
        font-size: 13px;
        padding: 10px;
    }
}

/* ==========================================================================
   24. TABLET (992px and below) - TRANSFER TABLE
   ========================================================================== */

@media (max-width: 992px) {
    .transfer-table {
        font-size: 12px;
    }
    
    .transfer-table th,
    .transfer-table td {
        padding: 10px 12px;
    }
    
    .transfer-table .date-row {
        font-size: 14px;
        padding: 10px 14px;
    }
}

/* ==========================================================================
   25. DESKTOP - READ MORE OVERRIDE
   ========================================================================== */

@media (min-width: 769px) {
    .lodge-overview-text {
        max-height: none !important;
    }
    
    .lodge-overview-readmore-toggle {
        display: none !important;
    }

    .experience-video-wrapper {
        flex-wrap: nowrap;
        padding: 0 20px;
    }
    
    .experience-video-wrapper > .lodge-overview-container {
        width: 50%;
    }
    
    .experience-video-wrapper > .lodge-overview-container:only-child {
        width: 100%;
    }

    .experience-video-wrapper .lodge-overview-virtual-tour-container iframe,
    .experience-video-wrapper .lodge-overview-video-player iframe {
        height: 600px;
    }
}

/* ==========================================================================
   END OF STYLESHEET
   Complete & Optimized Version with All Fixes Applied
   ========================================================================== */