/* ================================================
   PARADISE RESORTS - LANDING PAGE STYLES
   Beautiful UI/UX for Multi-Branch Resort
   ================================================ */

/* CSS Variables */
:root {
    /* Primary Colors - Teal/Turquoise (Ocean-inspired) */
    --resort-primary: #1a9b8e;
    --resort-primary-dark: #147a70;
    --resort-primary-light: #2bc4b4;
    --resort-primary-rgb: 26, 155, 142;
    
    /* Secondary Colors - Coral/Sunset */
    --resort-secondary: #ff7b54;
    --resort-secondary-dark: #e5684a;
    --resort-secondary-light: #ff9f7f;
    
    /* Accent Colors - Gold/Luxury */
    --resort-accent: #ffa726;
    --resort-gold: #d4af37;
    
    /* Neutral Colors */
    --resort-dark: #1a1a2e;
    --resort-gray-dark: #2d3436;
    --resort-gray: #636e72;
    --resort-gray-light: #b2bec3;
    --resort-light: #f8f9fa;
    --resort-white: #ffffff;
    
    /* Gradients */
    --resort-gradient: linear-gradient(135deg, #1a9b8e 0%, #2bc4b4 50%, #1a9b8e 100%);
    --resort-gradient-secondary: linear-gradient(135deg, #ff7b54 0%, #ffa726 100%);
    --resort-gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #2d3436 100%);
    --resort-gradient-hero: linear-gradient(135deg, rgba(26, 155, 142, 0.9) 0%, rgba(43, 196, 180, 0.7) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(26, 155, 142, 0.4);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--resort-gray-dark);
    background-color: var(--resort-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--resort-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
}

/* ================================================
   PRELOADER
   ================================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--resort-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-ring {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--resort-white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-text {
    color: var(--resort-white);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 3px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ================================================
   NAVIGATION
   ================================================ */
.navbar {
    padding: 20px 0;
    transition: all var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 42px;
    width: auto;
    transition: var(--transition-normal);
}

.logo-dark {
    display: none;
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: var(--resort-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--resort-white);
    font-size: 20px;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--resort-white);
    transition: var(--transition-normal);
}

.navbar.scrolled .brand-text {
    color: var(--resort-dark);
}

.navbar.scrolled .logo-light {
    display: none;
}

.navbar.scrolled .logo-dark {
    display: block;
}

.brand-highlight {
    color: var(--resort-primary);
}

.navbar-nav {
    gap: 5px;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 10px 18px !important;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition-normal);
}

.navbar.scrolled .nav-link {
    color: var(--resort-gray-dark) !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--resort-white) !important;
    background: rgba(255, 255, 255, 0.15);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--resort-primary) !important;
    background: rgba(26, 155, 142, 0.1);
}

.nav-buttons {
    display: flex;
    gap: 12px;
    margin-left: 20px;
}

.btn-nav {
    padding: 10px 24px;
    font-weight: 500;
    border-radius: var(--radius-sm);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--resort-white);
}

.btn-outline-light:hover {
    background: var(--resort-white);
    color: var(--resort-primary);
    border-color: var(--resort-white);
}

.navbar.scrolled .btn-outline-light {
    border-color: var(--resort-primary);
    color: var(--resort-primary);
}

.navbar.scrolled .btn-outline-light:hover {
    background: var(--resort-primary);
    color: var(--resort-white);
}

.btn-primary {
    background: var(--resort-gradient);
    border: none;
    color: var(--resort-white);
    font-weight: 500;
}

.btn-primary:hover {
    background: var(--resort-gradient-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-glow {
    box-shadow: 0 0 20px rgba(26, 155, 142, 0.4);
}

.navbar-toggler {
    border: none;
    padding: 8px 12px;
    color: var(--resort-white);
}

.navbar.scrolled .navbar-toggler {
    color: var(--resort-dark);
}

.navbar-toggler-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(26, 155, 142, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    color: var(--resort-white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: var(--resort-accent);
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    color: var(--resort-white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #2bc4b4 0%, #ffa726 50%, #ff7b54 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-buttons .btn {
    padding: 16px 36px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-video {
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-video:hover {
    background: var(--resort-white);
    color: var(--resort-primary);
    border-color: var(--resort-white);
}

/* Hero Booking Form */
.hero-booking-form {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.booking-form-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 30px 35px;
    box-shadow: var(--shadow-xl);
}

.booking-form-card label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--resort-gray);
    margin-bottom: 8px;
}

.booking-form-card label i {
    color: var(--resort-primary);
    margin-right: 6px;
}

.booking-form-card .form-control,
.booking-form-card .form-select {
    height: 50px;
    border: 2px solid #e9ecef;
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: var(--transition-normal);
}

.booking-form-card .form-control:focus,
.booking-form-card .form-select:focus {
    border-color: var(--resort-primary);
    box-shadow: 0 0 0 4px rgba(26, 155, 142, 0.1);
}

.btn-search {
    height: 50px;
    font-size: 15px;
    font-weight: 600;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: var(--resort-white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

.scroll-indicator span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* ================================================
   STATS SECTION
   ================================================ */
.stats-section {
    background: var(--resort-gradient);
    padding: 60px 0;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--resort-white);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--resort-white);
    font-family: var(--font-heading);
    line-height: 1.2;
}

.stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
}

/* ================================================
   SECTION HEADERS
   ================================================ */
.section-header {
    margin-bottom: 50px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 155, 142, 0.1);
    color: var(--resort-primary);
    padding: 8px 18px;
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--resort-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-text {
    font-size: 16px;
    color: var(--resort-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* ================================================
   DESTINATIONS SECTION
   ================================================ */
.destinations-section {
    padding: 100px 0;
    background: var(--resort-light);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.destination-card {
    background: var(--resort-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.destination-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.destination-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.destination-card.featured .destination-image {
    height: 100%;
    min-height: 400px;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--resort-gradient);
    color: var(--resort-white);
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 600;
}

.destination-badge.new {
    background: var(--resort-gradient-secondary);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transition: var(--transition-normal);
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.destination-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--resort-accent);
}

.destination-rating span {
    color: var(--resort-white);
    font-weight: 600;
    margin-left: 8px;
}

.destination-content {
    padding: 24px;
}

.destination-location {
    color: var(--resort-primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.destination-location i {
    margin-right: 5px;
}

.destination-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.destination-content p {
    color: var(--resort-gray);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.destination-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.destination-features span {
    background: rgba(26, 155, 142, 0.1);
    color: var(--resort-primary);
    padding: 5px 12px;
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 500;
}

.destination-features span i {
    margin-right: 5px;
}

.destination-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.destination-price {
    color: var(--resort-gray);
    font-size: 14px;
}

.destination-price span {
    font-size: 24px;
    font-weight: 700;
    color: var(--resort-primary);
    font-family: var(--font-heading);
}

/* ================================================
   EXPERIENCES SECTION
   ================================================ */
.experiences-section {
    padding: 100px 0;
    background: var(--resort-white);
}

.experience-images {
    position: relative;
    padding: 30px;
}

.exp-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.exp-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.exp-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--resort-white);
}

.exp-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.exp-floating-card {
    position: absolute;
    top: 50px;
    left: 0;
    background: var(--resort-white);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-icon {
    width: 50px;
    height: 50px;
    background: var(--resort-gradient-secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--resort-white);
    font-size: 20px;
}

.floating-text strong {
    display: block;
    font-size: 28px;
    font-family: var(--font-heading);
    color: var(--resort-dark);
}

.floating-text span {
    font-size: 13px;
    color: var(--resort-gray);
}

.experience-content {
    padding-left: 40px;
}

.experience-list {
    margin: 30px 0;
}

.experience-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.experience-item:hover {
    background: var(--resort-light);
}

.exp-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: var(--resort-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--resort-white);
    font-size: 22px;
}

.exp-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-weight: 600;
}

.exp-text p {
    color: var(--resort-gray);
    font-size: 14px;
    margin: 0;
}

/* ================================================
   AMENITIES SECTION
   ================================================ */
.amenities-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.amenity-card {
    background: var(--resort-white);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.amenity-card:hover .amenity-icon {
    background: var(--resort-gradient);
    color: var(--resort-white);
}

.amenity-icon {
    width: 70px;
    height: 70px;
    background: rgba(26, 155, 142, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--resort-primary);
    transition: var(--transition-normal);
}

.amenity-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-weight: 600;
}

.amenity-card p {
    color: var(--resort-gray);
    font-size: 14px;
    margin: 0;
}

/* ================================================
   GALLERY SECTION
   ================================================ */
.gallery-section {
    padding: 100px 0;
    background: var(--resort-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 155, 142, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--resort-white);
    font-size: 32px;
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a9b8e 0%, #147a70 100%);
}

.testimonials-section .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--resort-white);
}

.testimonials-section .section-title {
    color: var(--resort-white);
}

.testimonial-card {
    background: var(--resort-white);
    padding: 35px;
    border-radius: var(--radius-lg);
    height: 100%;
    transition: all var(--transition-normal);
}

.testimonial-card:hover,
.testimonial-card.featured {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, #fff 0%, #f0fffe 100%);
    border: 2px solid var(--resort-primary);
}

.testimonial-rating {
    color: var(--resort-accent);
    margin-bottom: 20px;
}

.testimonial-rating i {
    margin-right: 3px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--resort-gray-dark);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 3px solid var(--resort-primary);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 16px;
    margin-bottom: 4px;
    font-family: var(--font-body);
    font-weight: 600;
}

.author-info span {
    font-size: 13px;
    color: var(--resort-gray);
}

/* ================================================
   NEWSLETTER SECTION
   ================================================ */
.newsletter-section {
    padding: 80px 0;
    background: var(--resort-light);
}

.newsletter-card {
    background: var(--resort-gradient-dark);
    padding: 50px;
    border-radius: var(--radius-lg);
    color: var(--resort-white);
}

.newsletter-card h3 {
    font-size: 28px;
    color: var(--resort-white);
    margin-bottom: 10px;
}

.newsletter-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin-left: auto;
}

.newsletter-form .form-control {
    height: 55px;
    border: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    padding-left: 20px;
}

.newsletter-form .btn {
    padding: 0 30px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    white-space: nowrap;
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact-section {
    padding: 100px 0;
    background: var(--resort-white);
}

.contact-info {
    padding-right: 40px;
}

.contact-info > p {
    color: var(--resort-gray);
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: var(--resort-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--resort-white);
    font-size: 20px;
}

.contact-text h5 {
    font-size: 16px;
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-weight: 600;
}

.contact-text p {
    color: var(--resort-gray);
    font-size: 14px;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(26, 155, 142, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--resort-primary);
    font-size: 18px;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--resort-gradient);
    color: var(--resort-white);
    transform: translateY(-3px);
}

.contact-form-card {
    background: var(--resort-light);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form-card h3 {
    font-size: 24px;
    margin-bottom: 25px;
    font-family: var(--font-body);
    font-weight: 600;
}

.contact-form-card label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--resort-gray-dark);
    margin-bottom: 8px;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    height: 50px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    background: var(--resort-white);
}

.contact-form-card textarea.form-control {
    height: auto;
    min-height: 120px;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--resort-primary);
    box-shadow: 0 0 0 4px rgba(26, 155, 142, 0.1);
}

/* ================================================
   FOOTER
   ================================================ */
.main-footer {
    background: var(--resort-dark);
    color: rgba(255, 255, 255, 0.8);
}

.footer-top {
    padding: 70px 0 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .brand-text {
    color: var(--resort-white);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links h5 {
    color: var(--resort-white);
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--resort-primary-light);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--resort-white);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--resort-gradient);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

.payment-methods span {
    font-size: 13px;
}

.payment-methods i {
    font-size: 28px;
    opacity: 0.7;
}

/* ================================================
   BACK TO TOP
   ================================================ */
.back-to-top {
    position: fixed;
    bottom: 170px;
    right: 30px;
    width: 54px;
    height: 54px;
    background: var(--resort-gradient);
    color: var(--resort-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    color: var(--resort-white);
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 128px;
        right: 16px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    padding: 12px 28px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

.btn-outline-primary {
    border: 2px solid var(--resort-primary);
    color: var(--resort-primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--resort-gradient);
    border-color: var(--resort-primary);
    color: var(--resort-white);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 1200px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .destination-card.featured {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .destination-card.featured .destination-image {
        height: 220px;
        min-height: 220px;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 52px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .experience-content {
        padding-left: 0;
        margin-top: 50px;
    }
    
    .exp-floating-card {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 20px;
        display: inline-flex;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 2;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .navbar-collapse {
        background: var(--resort-white);
        padding: 20px;
        border-radius: var(--radius-md);
        margin-top: 15px;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-link {
        color: var(--resort-gray-dark) !important;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--resort-primary) !important;
        background: rgba(26, 155, 142, 0.1);
    }
    
    .nav-buttons {
        margin-left: 0;
        margin-top: 15px;
        flex-direction: column;
    }
    
    .btn-outline-light {
        border-color: var(--resort-primary);
        color: var(--resort-primary);
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons .btn {
        padding: 14px 28px;
        width: 100%;
        justify-content: center;
    }
    
    .booking-form-card {
        padding: 25px 20px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .destinations-grid,
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    
    .gallery-item.large,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .testimonials-slider .col-lg-4 {
        margin-bottom: 20px;
    }
    
    .newsletter-card {
        padding: 30px 20px;
        text-align: center;
    }
    
    .newsletter-form {
        margin-top: 25px;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .newsletter-form .form-control,
    .newsletter-form .btn {
        border-radius: var(--radius-sm);
        width: 100%;
    }
    
    .newsletter-form .btn {
        margin-top: 10px;
        height: 55px;
    }
    
    .footer-top {
        padding: 50px 0 30px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .exp-img-main img {
        height: 300px;
    }
    
    .exp-img-secondary {
        width: 150px;
    }
    
    .exp-img-secondary img {
        height: 150px;
    }
}

@media (max-width: 575px) {
    .hero-section {
        min-height: auto;
        padding: 140px 0 60px;
    }
    
    .hero-booking-form {
        display: none;
    }
    
    .payment-methods {
        justify-content: center;
        margin-top: 15px;
    }
    
    .contact-form-card {
        padding: 25px 20px;
    }
}

/* ================================================
   VIDEO MODAL
   ================================================ */
#videoModal .modal-content {
    border: none;
    border-radius: var(--radius-md);
    overflow: hidden;
}

#videoModal .modal-header {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    padding: 0;
}

#videoModal .btn-close {
    opacity: 1;
    filter: brightness(0) invert(1);
}
/* ================================================
   ROOM CATEGORIES PAGE
   ================================================ */
.categories-section {
    padding: 80px 0;
    background: var(--resort-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: var(--resort-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.category-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.category-badge.premium {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: var(--resort-dark);
}

.category-badge.exclusive {
    background: linear-gradient(135deg, #1a1a2e, #2d3436);
    color: var(--resort-white);
}

.category-badge.family {
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    color: var(--resort-white);
}

.category-badge.romantic {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: var(--resort-white);
}

.category-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.category-header h3 {
    font-size: 24px;
    margin: 0;
}

.category-price {
    text-align: right;
    font-size: 14px;
    color: var(--resort-gray);
}

.category-price span {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--resort-primary);
}

.category-description {
    color: var(--resort-gray);
    margin-bottom: 20px;
    flex: 1;
}

.category-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.spec-item {
    text-align: center;
}

.spec-item i {
    color: var(--resort-primary);
    font-size: 20px;
    margin-bottom: 5px;
    display: block;
}

.spec-item span {
    font-size: 13px;
    color: var(--resort-gray-dark);
}

.category-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.category-amenities span {
    padding: 6px 12px;
    background: rgba(26, 155, 142, 0.1);
    border-radius: var(--radius-xl);
    font-size: 12px;
    color: var(--resort-primary-dark);
}

.category-amenities span i {
    margin-right: 5px;
}

.category-footer {
    display: flex;
    gap: 15px;
}

.category-footer .btn {
    flex: 1;
    padding: 12px 20px;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background: var(--resort-white);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 50px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.comparison-table th {
    background: var(--resort-primary);
    color: var(--resort-white);
    font-weight: 600;
}

.comparison-table th:first-child {
    border-radius: var(--radius-md) 0 0 0;
    background: var(--resort-dark);
}

.comparison-table th:last-child {
    border-radius: 0 var(--radius-md) 0 0;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    background: rgba(0,0,0,0.02);
}

.comparison-table tr:hover td {
    background: rgba(26, 155, 142, 0.05);
}

.comparison-table .text-success {
    color: #28a745 !important;
}

.comparison-table .text-danger {
    color: #dc3545 !important;
}

.comparison-table .action-row td {
    padding: 30px 20px;
    background: transparent !important;
}

/* ================================================
   ROOMS LISTING PAGE
   ================================================ */
.rooms-section {
    padding: 60px 0;
}

.rooms-sidebar {
    background: var(--resort-white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--resort-primary);
}

.sidebar-header h4 {
    margin: 0;
    font-size: 18px;
}

.sidebar-header h4 i {
    margin-right: 10px;
    color: var(--resort-primary);
}

.btn-clear-filter {
    background: none;
    border: none;
    color: var(--resort-secondary);
    font-size: 13px;
    cursor: pointer;
}

.btn-clear-filter:hover {
    text-decoration: underline;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--font-body);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

.filter-checkbox input {
    display: none;
}

.filter-checkbox .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--resort-gray-light);
    border-radius: 4px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.filter-checkbox input:checked + .checkmark {
    background: var(--resort-primary);
    border-color: var(--resort-primary);
}

.filter-checkbox input:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 10px;
}

.filter-checkbox .count {
    margin-left: auto;
    color: var(--resort-gray);
    font-size: 12px;
}

.filter-checkbox i {
    margin-right: 8px;
    color: var(--resort-primary);
    width: 20px;
    text-align: center;
}

.price-range-slider {
    padding: 10px 0;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--resort-gray-light);
    border-radius: var(--radius-sm);
    text-align: center;
}

.btn-apply-filter {
    width: 100%;
    margin-top: 20px;
}

/* Sort Bar */
/* Rooms Filter Bar */
.rooms-filter-bar {
    background: var(--resort-white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.rooms-filter-form {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.rooms-filter-form .filter-group {
    flex: 1;
    min-width: 180px;
}

.rooms-filter-form .filter-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--resort-gray-dark);
    margin-bottom: 6px;
}

.rooms-filter-form .filter-group label i {
    color: var(--resort-primary);
    margin-right: 5px;
}

.rooms-filter-form .filter-group .form-select {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 14px;
}

.btn-clear-filters {
    padding: 10px 18px;
    font-size: 14px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

/* Room Card Meta Tag */
.room-meta-tag {
    font-size: 13px;
    color: var(--resort-primary);
    font-weight: 500;
}

.room-meta-tag i {
    margin-right: 4px;
}

.rooms-sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--resort-white);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.results-count span {
    color: var(--resort-gray);
}

.results-count strong {
    color: var(--resort-dark);
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-options label {
    color: var(--resort-gray);
    font-size: 14px;
}

.sort-options .form-select {
    width: auto;
    border-radius: var(--radius-sm);
    padding: 8px 35px 8px 15px;
}

.view-toggle {
    display: flex;
    gap: 5px;
}

.btn-view {
    width: 38px;
    height: 38px;
    border: 1px solid var(--resort-gray-light);
    background: var(--resort-white);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-view:hover,
.btn-view.active {
    background: var(--resort-primary);
    border-color: var(--resort-primary);
    color: var(--resort-white);
}

/* Rooms Grid */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.rooms-grid.list-view {
    grid-template-columns: 1fr;
}

.rooms-grid.list-view .room-card {
    display: flex;
    flex-direction: row;
}

.rooms-grid.list-view .room-image {
    width: 300px;
    flex-shrink: 0;
}

.rooms-grid.list-view .room-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Room Card */
.room-card {
    background: var(--resort-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.room-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: var(--radius-xl);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.room-badge.premium {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: var(--resort-dark);
}

.room-badge.exclusive {
    background: linear-gradient(135deg, #1a1a2e, #2d3436);
    color: var(--resort-white);
}

.room-badge.family {
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    color: var(--resort-white);
}

.room-badge.romantic {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: var(--resort-white);
}

.btn-favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.btn-favorite:hover,
.btn-favorite.active {
    background: var(--resort-secondary);
    color: var(--resort-white);
}

.room-gallery-count {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    font-size: 12px;
}

.room-content {
    padding: 20px;
}

.room-location {
    font-size: 13px;
    color: var(--resort-gray);
    margin-bottom: 8px;
}

.room-location i {
    color: var(--resort-secondary);
    margin-right: 5px;
}

.room-name {
    font-size: 18px;
    margin-bottom: 5px;
}

.room-name a {
    color: var(--resort-dark);
}

.room-name a:hover {
    color: var(--resort-primary);
}

.room-category {
    font-size: 13px;
    color: var(--resort-primary);
    margin-bottom: 12px;
}

.room-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--resort-gray);
}

.room-specs i {
    color: var(--resort-primary);
    margin-right: 5px;
}

.room-amenities {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.room-amenities span {
    width: 32px;
    height: 32px;
    background: rgba(26, 155, 142, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--resort-primary);
    font-size: 14px;
}

.room-amenities .more-amenities {
    background: var(--resort-gray-light);
    color: var(--resort-gray-dark);
    font-size: 11px;
    font-weight: 600;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.room-price .price {
    font-size: 22px;
    font-weight: 700;
    color: var(--resort-primary);
}

.room-price .per-night {
    font-size: 13px;
    color: var(--resort-gray);
}

.btn-book {
    padding: 10px 20px;
}

/* ================================================
   ROOM DETAILS PAGE
   ================================================ */
.page-header-compact {
    padding: 100px 0 20px;
    background: var(--resort-light);
    min-height: auto;
}

.page-header-compact .breadcrumb {
    margin: 0;
    background: transparent;
    padding: 0;
}

/* Room Gallery */
.room-gallery-section {
    padding: 20px 0 40px;
    background: var(--resort-light);
}

.room-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 15px;
}

.gallery-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-badges {
    position: absolute;
    top: 20px;
    left: 20px;
}

.gallery-badges .badge {
    padding: 10px 20px;
    font-size: 13px;
    border-radius: var(--radius-xl);
}

.gallery-badges .badge.premium {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: var(--resort-dark);
}

.btn-favorite-large {
    position: absolute;
    top: 20px;
    right: 70px;
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition-fast);
}

.btn-favorite-large:hover,
.btn-favorite-large.active {
    background: var(--resort-secondary);
    color: var(--resort-white);
}

.btn-fullscreen {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition-fast);
}

.btn-fullscreen:hover {
    background: var(--resort-primary);
    color: var(--resort-white);
}

.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thumb-item {
    position: relative;
    height: 95px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.thumb-item:hover,
.thumb-item.active {
    opacity: 1;
}

.thumb-item.active {
    box-shadow: 0 0 0 3px var(--resort-primary);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-more .more-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

/* Room Details Content */
.room-details-section {
    padding: 40px 0 80px;
}

.room-details-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.room-category-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(26, 155, 142, 0.1);
    color: var(--resort-primary);
    border-radius: var(--radius-xl);
    font-size: 13px;
    margin-bottom: 10px;
}

.room-title-wrap h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.room-location-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--resort-gray);
}

.room-location-info i {
    color: var(--resort-secondary);
}

.view-resort-link {
    color: var(--resort-primary);
    font-size: 13px;
}

.view-resort-link:hover {
    text-decoration: underline;
}

.room-rating-info {
    text-align: right;
}

.rating-stars {
    color: #ffc107;
    margin-bottom: 5px;
}

.rating-score {
    font-size: 24px;
    font-weight: 700;
    color: var(--resort-dark);
}

.rating-count {
    font-size: 13px;
    color: var(--resort-gray);
}

/* Quick Specs */
.room-quick-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.spec-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--resort-light);
    border-radius: var(--radius-md);
}

.spec-card i {
    font-size: 28px;
    color: var(--resort-primary);
}

.spec-info {
    display: flex;
    flex-direction: column;
}

.spec-value {
    font-weight: 600;
    color: var(--resort-dark);
}

.spec-label {
    font-size: 13px;
    color: var(--resort-gray);
}

/* Room Description */
.room-description-section {
    margin-bottom: 40px;
}

.room-description-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.room-description-section p {
    color: var(--resort-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.room-highlights {
    margin-top: 30px;
    padding: 25px;
    background: var(--resort-light);
    border-radius: var(--radius-md);
}

.room-highlights h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--resort-white);
    border-radius: var(--radius-sm);
}

.highlight-item i {
    color: var(--resort-primary);
    font-size: 18px;
}

/* Room Amenities */
.room-amenities-section {
    margin-bottom: 40px;
}

.room-amenities-section h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.amenities-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.amenity-category {
    background: var(--resort-light);
    padding: 25px;
    border-radius: var(--radius-md);
}

.amenity-category h5 {
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--resort-primary);
    font-family: var(--font-body);
}

.amenity-category h5 i {
    margin-right: 10px;
    color: var(--resort-primary);
}

.amenity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amenity-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--resort-gray-dark);
}

.amenity-list li i {
    color: var(--resort-primary);
    margin-right: 10px;
}

/* Room Policies */
.room-policies-section {
    margin-bottom: 40px;
}

.room-policies-section h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.policy-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--resort-light);
    border-radius: var(--radius-md);
}

.policy-icon {
    width: 50px;
    height: 50px;
    background: var(--resort-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--resort-white);
    font-size: 20px;
    flex-shrink: 0;
}

.policy-info h5 {
    font-size: 15px;
    margin-bottom: 5px;
    font-family: var(--font-body);
}

.policy-info p {
    font-weight: 600;
    color: var(--resort-dark);
    margin: 0 0 5px;
}

.policy-info small {
    font-size: 12px;
    color: var(--resort-gray);
}

/* Room Reviews */
.room-reviews-section {
    margin-bottom: 40px;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.reviews-header h3 {
    font-size: 24px;
    margin: 0;
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--resort-primary);
    line-height: 1;
}

.rating-details .rating-stars {
    margin-bottom: 5px;
}

.rating-details span {
    font-size: 13px;
    color: var(--resort-gray);
}

.rating-breakdown {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--resort-light);
    border-radius: var(--radius-md);
}

.rating-bar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-category {
    font-size: 13px;
    color: var(--resort-gray);
}

.bar-track {
    height: 6px;
    background: var(--resort-gray-light);
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--resort-primary);
    border-radius: 3px;
    transition: width 1s ease;
}

.rating-value {
    font-weight: 600;
    color: var(--resort-dark);
}

/* Review Cards */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.review-card {
    padding: 25px;
    background: var(--resort-light);
    border-radius: var(--radius-md);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h5 {
    margin: 0 0 5px;
    font-size: 16px;
    font-family: var(--font-body);
}

.review-date {
    font-size: 13px;
    color: var(--resort-gray);
}

.stay-type {
    font-size: 12px;
    padding: 3px 10px;
    background: rgba(26, 155, 142, 0.1);
    color: var(--resort-primary);
    border-radius: var(--radius-xl);
    margin-left: 10px;
}

.review-rating {
    color: #ffc107;
}

.review-rating span {
    margin-left: 5px;
    color: var(--resort-dark);
    font-weight: 600;
}

.review-content h6 {
    font-size: 16px;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.review-content p {
    color: var(--resort-gray);
    line-height: 1.7;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.review-tags .tag {
    padding: 5px 12px;
    border-radius: var(--radius-xl);
    font-size: 12px;
}

.review-tags .tag.positive {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.review-tags .tag.neutral {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.btn-load-more {
    display: block;
    margin: 0 auto;
}

/* Booking Sidebar */
.room-booking-sidebar {
    position: relative;
}

.booking-card {
    background: var(--resort-white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
}

.booking-price-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.price-main .currency {
    font-size: 24px;
    color: var(--resort-primary);
}

.price-main .amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--resort-primary);
    line-height: 1;
}

.price-main .per-night {
    font-size: 16px;
    color: var(--resort-gray);
}

.price-note {
    font-size: 13px;
    color: var(--resort-gray);
    margin-top: 10px;
}

.price-note i {
    color: var(--resort-secondary);
    margin-right: 5px;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form label {
    display: block;
    font-size: 13px;
    color: var(--resort-gray);
    margin-bottom: 8px;
}

.booking-form label i {
    margin-right: 5px;
    color: var(--resort-primary);
}

.booking-form .form-control,
.booking-form .form-select {
    border-radius: var(--radius-sm);
    padding: 12px 15px;
    border: 1px solid var(--resort-gray-light);
    width: 100%;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: var(--resort-primary);
    box-shadow: 0 0 0 3px rgba(var(--resort-primary-rgb), 0.15);
    outline: none;
}

.date-range {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.date-input {
    flex: 1;
    min-width: 0;
}

.date-separator {
    padding-bottom: 15px;
    color: var(--resort-gray-light);
}

/* Stack date inputs in narrow sidebar context */
.booking-card .date-range,
.booking-sidebar-card .date-range {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.booking-card .date-separator,
.booking-sidebar-card .date-separator {
    display: none;
}

.price-breakdown {
    padding: 20px;
    background: var(--resort-light);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: var(--resort-gray);
}

.price-row.total {
    border-top: 2px solid rgba(0,0,0,0.08);
    margin-top: 10px;
    padding-top: 15px;
    font-weight: 700;
    font-size: 18px;
    color: var(--resort-dark);
}

.btn-book-now {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

.btn-book-now i {
    margin-right: 10px;
}

.booking-note {
    text-align: center;
    font-size: 12px;
    color: var(--resort-gray);
    margin-top: 15px;
    margin-bottom: 0;
}

.booking-note i {
    color: #28a745;
    margin-right: 5px;
}

.booking-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.btn-action {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--resort-gray-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 13px;
    transition: var(--transition-fast);
}

.btn-action:hover {
    border-color: var(--resort-primary);
    color: var(--resort-primary);
}

.btn-action i {
    margin-right: 5px;
}

/* Quick Contact Card */
.quick-contact-card {
    background: var(--resort-white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.quick-contact-card h5 {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.quick-contact-card h5 i {
    margin-right: 10px;
    color: var(--resort-primary);
}

.quick-contact-card p {
    font-size: 14px;
    color: var(--resort-gray);
    margin-bottom: 20px;
}

.quick-contact-card .btn-block {
    width: 100%;
    margin-bottom: 10px;
}

/* Similar Rooms */
.similar-rooms-section {
    padding: 60px 0 80px;
    background: var(--resort-light);
}

.similar-rooms-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.similar-rooms-section .section-header h2 {
    margin: 0;
}

.view-all-link {
    color: var(--resort-primary);
    font-weight: 500;
}

.view-all-link:hover {
    text-decoration: underline;
}

.view-all-link i {
    margin-left: 5px;
}

.similar-rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Gallery Modal */
#galleryModal .modal-content {
    background: rgba(0,0,0,0.95);
    border: none;
}

#galleryModal .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

#galleryModal .btn-close:hover {
    opacity: 1;
}

#galleryModal .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 60px 20px;
}

.gallery-modal-slider {
    max-width: 1200px;
    width: 100%;
}

.gallery-slide {
    display: none;
}

.gallery-slide.active {
    display: block;
}

.gallery-slide img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.gallery-modal-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.gallery-modal-controls button {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-modal-controls button:hover {
    background: var(--resort-primary);
    border-color: var(--resort-primary);
}

.slide-counter {
    color: white;
    font-size: 16px;
}

/* Responsive - Room Pages */
@media (max-width: 1199px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .room-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-thumbs {
        flex-direction: row;
    }
    
    .thumb-item {
        height: 80px;
        flex: 1;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amenities-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .policies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rating-breakdown {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .similar-rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .rooms-sidebar {
        position: static;
        margin-bottom: 30px;
    }
    
    .rooms-grid.list-view .room-card {
        flex-direction: column;
    }
    
    .rooms-grid.list-view .room-image {
        width: 100%;
        height: 220px;
    }
    
    .room-details-header {
        flex-direction: column;
    }
    
    .room-rating-info {
        text-align: left;
        margin-top: 15px;
    }
    
    .room-quick-specs {
        grid-template-columns: repeat(2, 1fr);
    }

    .room-booking-sidebar {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .category-specs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-footer {
        flex-direction: column;
    }
    
    .rooms-sort-bar {
        flex-direction: column;
        gap: 15px;
    }
    
    .sort-options {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-main {
        height: 300px;
    }
    
    .room-title-wrap h1 {
        font-size: 28px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-categories {
        grid-template-columns: 1fr;
    }
    
    .policies-grid {
        grid-template-columns: 1fr;
    }
    
    .rating-breakdown {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .date-range {
        flex-direction: column;
    }
    
    .date-separator {
        display: none;
    }
    
    .similar-rooms-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   PAGE HEADER (Compact for listing pages)
   ================================================ */
.page-header {
    position: relative;
    padding: 120px 0 40px;
    background: var(--resort-dark);
    min-height: auto;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.9));
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header .breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 15px;
    padding: 0;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumb-item.active {
    color: var(--resort-white);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.page-header h1 {
    font-size: 36px;
    color: var(--resort-white);
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin: 0;
}

/* ================================================
   FILTER SECTION
   ================================================ */
.filter-section {
    padding: 30px 0;
    background: var(--resort-white);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.filter-card {
    background: var(--resort-light);
    padding: 20px 25px;
    border-radius: var(--radius-md);
}

.filter-card label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--resort-gray);
    margin-bottom: 8px;
}

.filter-card .form-select,
.filter-card .form-control {
    border-radius: var(--radius-sm);
    border: 1px solid var(--resort-gray-light);
    padding: 10px 15px;
}

.filter-card .btn {
    padding: 10px 25px;
    height: 100%;
}

/* ================================================
   BRANCHES LISTING (Simple Cards)
   ================================================ */
.branches-section {
    padding: 50px 0;
    padding-top: 100px;
    background: var(--resort-light);
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.branch-card {
    background: var(--resort-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.branch-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.branch-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.branch-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.branch-card:hover .branch-card-image img {
    transform: scale(1.05);
}

.branch-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    background: var(--resort-primary);
    color: var(--resort-white);
    border-radius: var(--radius-xl);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.branch-card-favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.branch-card-favorite:hover {
    background: var(--resort-secondary);
    color: var(--resort-white);
}

.branch-card-content {
    padding: 20px;
}

.branch-card-location {
    font-size: 13px;
    color: var(--resort-gray);
    margin-bottom: 8px;
}

.branch-card-location i {
    color: var(--resort-secondary);
    margin-right: 5px;
}

.branch-card-title {
    font-size: 20px;
    margin-bottom: 8px;
}

.branch-card-title a {
    color: var(--resort-dark);
}

.branch-card-title a:hover {
    color: var(--resort-primary);
}

.branch-card-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
    font-size: 14px;
}

.branch-card-rating i {
    color: #ffc107;
}

.branch-card-rating span {
    color: var(--resort-gray);
    font-size: 13px;
}

.branch-card-description {
    font-size: 14px;
    color: var(--resort-gray);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.branch-card-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.branch-card-amenities span {
    padding: 4px 10px;
    background: rgba(26, 155, 142, 0.1);
    color: var(--resort-primary-dark);
    border-radius: var(--radius-sm);
    font-size: 12px;
}

.branch-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.branch-card-price {
    font-size: 13px;
    color: var(--resort-gray);
}

.branch-card-price strong {
    font-size: 20px;
    color: var(--resort-primary);
    font-weight: 700;
}

.branch-card-footer .btn {
    padding: 8px 20px;
}

/* Branch Card Alternate Class Names (used in HTML) */
.branch-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.branch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.branch-card:hover .branch-image img {
    transform: scale(1.05);
}

.branch-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    background: var(--resort-primary);
    color: var(--resort-white);
    border-radius: var(--radius-xl);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.branch-badge.new {
    background: var(--resort-secondary);
}

.branch-favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.branch-favorite:hover,
.branch-favorite .active {
    background: var(--resort-secondary);
    color: var(--resort-white);
}

.branch-content {
    padding: 20px;
}

.branch-location {
    font-size: 18px;
    color: var(--resort-gray);
    margin-bottom: 8px;
}

.branch-location i {
    color: var(--resort-secondary);
    margin-right: 5px;
}

.branch-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--resort-dark);
}

.branch-card h3:hover {
    color: var(--resort-primary);
}

.branch-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
}

.branch-rating .stars {
    color: #ffc107;
}

.branch-rating span {
    color: var(--resort-gray);
    font-size: 13px;
}

.branch-card p {
    font-size: 16px;
    color: var(--resort-gray);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.branch-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.branch-amenities span {
    padding: 4px 10px;
    background: rgba(26, 155, 142, 0.1);
    color: var(--resort-primary-dark);
    border-radius: var(--radius-sm);
    font-size: 12px;
}

.branch-amenities span i {
    margin-right: 4px;
}

.branch-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.branch-price {
    font-size: 16px;
    color: var(--resort-gray);
}

.branch-price span {
    font-size: 22px;
    color: var(--resort-primary);
    font-weight: 700;
}

.branch-footer .btn {
    padding: 8px 20px;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination {
    gap: 5px;
}

.pagination .page-link {
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    color: var(--resort-gray-dark);
    transition: var(--transition-fast);
}

.pagination .page-link:hover {
    background: var(--resort-primary);
    color: var(--resort-white);
}

.pagination .page-item.active .page-link {
    background: var(--resort-primary);
    color: var(--resort-white);
}

.pagination .page-item.disabled .page-link {
    background: var(--resort-light);
    color: var(--resort-gray-light);
}

/* ================================================
   BRANCH DETAILS PAGE
   ================================================ */
.branch-hero {
    position: relative;
    height: 350px;
    background: var(--resort-dark);
    margin-top: 70px;
}

.branch-hero-slider {
    position: absolute;
    inset: 0;
}

.branch-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.branch-hero-slide.active {
    opacity: 1;
}

.branch-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.branch-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.3));
}

.branch-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 30px 0;
}

.branch-hero-content .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 15px;
}

.branch-hero-content .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.branch-hero-content .breadcrumb-item.active {
    color: var(--resort-white);
}

.branch-hero-content .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.branch-hero-location {
    color: var(--resort-secondary);
    font-size: 14px;
    margin-bottom: 8px;
}

.branch-hero-location i {
    margin-right: 5px;
}

.branch-hero-content h1 {
    font-size: 36px;
    color: var(--resort-white);
    margin-bottom: 15px;
}

.branch-hero-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.branch-hero-rating {
    color: #ffc107;
}

.branch-hero-rating span {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 8px;
}

.branch-hero-price {
    color: var(--resort-white);
    font-size: 14px;
}

.branch-hero-price strong {
    font-size: 24px;
    font-weight: 700;
}

.branch-hero-thumbs {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.branch-thumb {
    width: 80px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.branch-thumb:hover,
.branch-thumb.active {
    opacity: 1;
    border-color: var(--resort-white);
}

.branch-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Branch Details Content */
.branch-details-section {
    padding: 50px 0;
}

.branch-overview {
    margin-bottom: 40px;
}

.branch-overview h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.branch-overview p {
    color: var(--resort-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Branch Amenities */
.branch-amenities-section {
    margin-bottom: 40px;
}

.branch-amenities-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--resort-light);
    border-radius: var(--radius-sm);
}

.amenity-item i {
    width: 40px;
    height: 40px;
    background: var(--resort-primary);
    color: var(--resort-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.amenity-item span {
    font-size: 14px;
    color: var(--resort-gray-dark);
}

/* Branch Activities */
.branch-activities-section {
    margin-bottom: 40px;
}

.branch-activities-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.activity-card {
    background: var(--resort-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.activity-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.activity-card-image {
    height: 150px;
    overflow: hidden;
}

.activity-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-card-content {
    padding: 15px;
}

.activity-card-content h5 {
    font-size: 16px;
    margin-bottom: 5px;
    font-family: var(--font-body);
}

.activity-card-content p {
    font-size: 13px;
    color: var(--resort-gray);
    margin: 0;
}

/* Branch Gallery */
.branch-gallery-section {
    margin-bottom: 40px;
}

/* ===== Branch Detail - Room Categories Section (Full Width) ===== */
.branch-categories-section {
    padding: 60px 0;
    background: var(--resort-light);
}

.branch-category-card {
    background: var(--resort-white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.branch-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.branch-category-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.branch-category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.branch-category-card:hover .branch-category-img img {
    transform: scale(1.05);
}

.branch-category-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.branch-category-body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.branch-category-body .btn {
    margin-top: auto;
}

.branch-category-body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #212529;
}

.branch-category-body p {
    font-size: 0.88rem;
    color: #6c757d;
    margin-bottom: 12px;
    line-height: 1.5;
}

.branch-category-meta {
    font-size: 0.82rem;
    color: #6c757d;
    margin-bottom: 4px;
}

.branch-category-meta i {
    color: var(--resort-primary, #0d6efd);
    margin-right: 4px;
}

/* ===== Inline Cards (Need Help / Location inside About section) ===== */
.detail-inline-card {
    background: var(--resort-light, #f8f9fa);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.06);
}

.detail-inline-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #212529;
}

.detail-inline-card h5 i {
    color: var(--resort-primary, #0d6efd);
    margin-right: 6px;
}

.detail-inline-card p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}

.detail-inline-card .contact-info-mini {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-inline-card .contact-info-mini a {
    color: #495057;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s ease;
    background: var(--resort-white, #fff);
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.06);
}

.detail-inline-card .contact-info-mini a:hover {
    background: var(--resort-primary, #0d6efd);
    color: #fff;
    border-color: var(--resort-primary, #0d6efd);
}

.detail-inline-card .contact-info-mini a i {
    color: var(--resort-primary, #0d6efd);
    margin-right: 6px;
    width: 16px;
    text-align: center;
    transition: color 0.25s ease;
}

.detail-inline-card .contact-info-mini a:hover i {
    color: #fff;
}

/* ===== Inline Room Category Cards (inside left column) ===== */
.branch-category-card-inline {
    display: flex;
    background: var(--resort-white, #fff);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.branch-category-card-inline:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    color: inherit;
    text-decoration: none;
}

.branch-cat-inline-img {
    position: relative;
    width: 140px;
    min-height: 120px;
    flex-shrink: 0;
    overflow: hidden;
}

.branch-cat-inline-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.branch-category-card-inline:hover .branch-cat-inline-img img {
    transform: scale(1.05);
}

.branch-cat-inline-img .branch-category-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.7rem;
    padding: 3px 8px;
}

.branch-cat-inline-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.branch-cat-inline-body h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #212529;
}

.branch-cat-inline-body p {
    font-size: 0.82rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.4;
}

@media (max-width: 575px) {
    .branch-category-card-inline {
        flex-direction: column;
    }
    .branch-cat-inline-img {
        width: 100%;
        height: 140px;
    }
    .detail-inline-card {
        padding: 16px;
    }
}

/* ===== Branch Detail - Activities Section (Full Width, Reworked) ===== */
.branch-activities-section {
    padding: 60px 0;
    background: #fff;
}

.activity-card-media {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--resort-light, #f8f9fa);
}

.activity-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.activity-card:hover .activity-card-media img {
    transform: scale(1.05);
}

.activity-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    font-size: 2.5rem;
    color: #adb5bd;
}

.activity-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--resort-primary, #0d6efd);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.activity-play-btn:hover {
    background: var(--resort-primary, #0d6efd);
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.activity-card-body {
    padding: 18px 20px 20px;
}

.activity-card-body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #212529;
}

.activity-card-body p {
    font-size: 0.88rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .branch-categories-section,
    .branch-activities-section {
        padding: 40px 0;
    }
    .branch-category-img,
    .activity-card-media {
        height: 180px;
    }
}

.branch-gallery-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    background: rgba(26, 155, 142, 0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Branch Room Categories */
.branch-rooms-section {
    margin-bottom: 40px;
}

.branch-rooms-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Branch Sidebar */
.branch-sidebar {
    position: sticky;
    top: 100px;
}

.branch-booking-card {
    background: var(--resort-white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
}

.branch-booking-card h4 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-family: var(--font-body);
}

.branch-contact-card {
    background: var(--resort-light);
    border-radius: var(--radius-md);
    padding: 20px;
}

.branch-contact-card h5 {
    font-size: 16px;
    margin-bottom: 15px;
    font-family: var(--font-body);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--resort-gray-dark);
}

.contact-item i {
    width: 36px;
    height: 36px;
    background: var(--resort-primary);
    color: var(--resort-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: var(--resort-gradient);
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    color: var(--resort-white);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 25px;
}

.cta-section .btn {
    padding: 15px 40px;
    font-size: 16px;
}

.btn-white {
    background: var(--resort-white);
    color: var(--resort-primary);
}

.btn-white:hover {
    background: var(--resort-light);
    color: var(--resort-primary-dark);
}

/* Branch Hero Thumbnails */
.branch-hero-thumbnails {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.thumbnail {
    width: 80px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: var(--resort-white);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail.more {
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.thumbnail.more span {
    color: var(--resort-white);
    font-size: 12px;
    font-weight: 600;
}

/* Branch Details Content */
.detail-card {
    background: var(--resort-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.detail-title {
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-title i {
    color: var(--resort-primary);
}

.detail-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.detail-title-row .detail-title {
    margin-bottom: 0;
}

.detail-text {
    color: var(--resort-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.detail-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.detail-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--resort-light);
    border-radius: var(--radius-sm);
}

.detail-highlights .highlight-item i {
    color: var(--resort-primary);
    font-size: 20px;
}

.detail-highlights .highlight-item span {
    font-size: 14px;
    font-weight: 500;
}

/* Activity Cards Mini */
.activity-card-mini {
    background: var(--resort-light);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition-normal);
}

.activity-card-mini:hover {
    background: var(--resort-primary);
    color: var(--resort-white);
}

.activity-card-mini:hover .activity-mini-icon {
    background: rgba(255,255,255,0.2);
    color: var(--resort-white);
}

.activity-card-mini:hover h4,
.activity-card-mini:hover p {
    color: var(--resort-white);
}

.activity-mini-icon {
    width: 60px;
    height: 60px;
    background: var(--resort-primary);
    color: var(--resort-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
    transition: var(--transition-normal);
}

.activity-card-mini h4 {
    font-size: 16px;
    margin-bottom: 8px;
    font-family: var(--font-body);
    transition: var(--transition-normal);
}

.activity-card-mini p {
    font-size: 13px;
    color: var(--resort-gray);
    margin: 0;
    transition: var(--transition-normal);
}

/* Room Preview Cards */
.room-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.room-preview-card {
    background: var(--resort-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.room-preview-image {
    height: 150px;
    overflow: hidden;
}

.room-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-preview-content {
    padding: 20px;
}

.room-preview-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.room-preview-content p {
    font-size: 13px;
    color: var(--resort-gray);
    margin-bottom: 12px;
}

.room-preview-price {
    font-size: 14px;
    color: var(--resort-gray);
    margin-bottom: 15px;
}

.room-preview-price span {
    font-size: 20px;
    font-weight: 700;
    color: var(--resort-primary);
}

/* Reviews in Branch Details */
.review-item {
    padding: 20px;
    background: var(--resort-light);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-meta {
    flex: 1;
}

.review-meta h5 {
    font-size: 16px;
    margin-bottom: 3px;
    font-family: var(--font-body);
}

.review-meta span {
    font-size: 13px;
    color: var(--resort-gray);
}

.review-item .review-rating {
    color: #ffc107;
}

.review-text {
    font-size: 14px;
    color: var(--resort-gray);
    line-height: 1.7;
    margin: 0;
}

/* Booking Sidebar Card */
.booking-sidebar-card {
    background: var(--resort-white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
    position: sticky;
    top: 90px;
    z-index: 10;
}

.booking-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.booking-price .price-from {
    font-size: 13px;
    color: var(--resort-gray);
}

.booking-price .price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--resort-primary);
}

.booking-price .price-per {
    font-size: 14px;
    color: var(--resort-gray);
}

.booking-card-header .booking-rating {
    background: var(--resort-primary);
    color: var(--resort-white);
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.booking-sidebar-card .form-group {
    margin-bottom: 15px;
}

.booking-sidebar-card label {
    display: block;
    font-size: 13px;
    color: var(--resort-gray);
    margin-bottom: 8px;
}

.booking-sidebar-card label i {
    margin-right: 5px;
    color: var(--resort-primary);
}

.booking-sidebar-card .form-control,
.booking-sidebar-card .form-select {
    border-radius: var(--radius-sm);
    padding: 12px 15px;
    border: 1px solid var(--resort-gray-light);
    width: 100%;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.booking-sidebar-card .form-control:focus,
.booking-sidebar-card .form-select:focus {
    border-color: var(--resort-primary);
    box-shadow: 0 0 0 3px rgba(var(--resort-primary-rgb), 0.15);
    outline: none;
}

.booking-note {
    text-align: center;
    font-size: 12px;
    color: var(--resort-gray);
    margin-top: 15px;
}

.booking-note i {
    color: #28a745;
    margin-right: 5px;
}

/* Sidebar Cards */
.sidebar-card {
    background: var(--resort-white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.sidebar-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-family: var(--font-body);
}

.sidebar-card h4 i {
    margin-right: 10px;
    color: var(--resort-primary);
}

.sidebar-card p {
    font-size: 14px;
    color: var(--resort-gray);
    margin-bottom: 15px;
}

.contact-info-mini {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info-mini a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--resort-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--resort-gray-dark);
    transition: var(--transition-fast);
}

.contact-info-mini a:hover {
    background: var(--resort-primary);
    color: var(--resort-white);
}

.contact-info-mini a i {
    color: var(--resort-primary);
}

.contact-info-mini a:hover i {
    color: var(--resort-white);
}

/* Map Placeholder */
.map-placeholder {
    position: relative;
    height: 150px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 15px;
    background: var(--resort-light);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay-btn {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-details p {
    font-size: 13px;
    margin-bottom: 8px;
}

/* Weather Card */
.weather-card .weather-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.weather-temp {
    display: flex;
    align-items: center;
    gap: 10px;
}

.weather-temp i {
    font-size: 36px;
    color: #ffc107;
}

.weather-temp span {
    font-size: 32px;
    font-weight: 700;
    color: var(--resort-dark);
}

.weather-details p {
    font-size: 14px;
    color: var(--resort-gray);
    margin-bottom: 5px;
}

/* Similar Section */
.similar-section {
    padding: 60px 0;
    background: var(--resort-light);
}

.similar-section .section-header {
    margin-bottom: 30px;
}

.branch-card.compact .branch-image {
    height: 180px;
}

.branch-card.compact .branch-content {
    padding: 15px;
}

.branch-card.compact h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Responsive - Branch Pages */
@media (max-width: 1199px) {
    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amenities-list {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .activities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .branch-hero {
        height: 300px;
    }
    
    .branch-hero-content h1 {
        font-size: 28px;
    }
    
    .branch-hero-thumbs,
    .branch-hero-thumbnails {
        display: none;
    }
    
    .branch-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .booking-sidebar-card {
        position: static;
    }
    
    .amenities-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .detail-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .room-preview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 100px 0 30px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }
    
    .branch-hero {
        height: 280px;
        margin-top: 60px;
    }
    
    .branch-hero-content h1 {
        font-size: 24px;
    }
    
    .branch-hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .amenities-list {
        grid-template-columns: 1fr;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .detail-card {
        padding: 20px;
    }
    
    .detail-title {
        font-size: 20px;
    }
    
    .detail-highlights {
        grid-template-columns: 1fr;
    }
    
    .booking-sidebar-card {
        padding: 20px;
    }
    
    .booking-price .amount {
        font-size: 28px;
    }
    
    .room-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .room-preview-card {
        flex-direction: column;
    }
    
    .room-preview-image {
        width: 100%;
        height: 180px;
    }
    
    .similar-section .branches-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Branch Header (Compact - No Big Image)
======================================== */
.branch-header {
    padding: 100px 0 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: 70px;
}

.branch-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 15px;
}

.branch-header .breadcrumb-item a {
    color: var(--resort-primary);
    text-decoration: none;
}

.branch-header .breadcrumb-item.active {
    color: #666;
}

.branch-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.branch-header-info {
    flex: 1;
}

.branch-location-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--resort-primary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.branch-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 15px;
}

.branch-header-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.branch-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.branch-rating i {
    color: #ffc107;
    font-size: 14px;
}

.branch-rating span {
    color: #666;
    font-size: 14px;
    margin-left: 6px;
}

.branch-price-tag {
    font-size: 14px;
    color: #666;
}

.branch-price-tag span {
    font-size: 24px;
    font-weight: 700;
    color: var(--resort-primary);
}

.branch-header-actions .btn {
    padding: 12px 30px;
}

/* ========================================
   Gallery Cards Grid (Photos & Videos)
======================================== */
.gallery-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-card-media {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-card-media img {
    transform: scale(1.05);
}

.gallery-card .video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--resort-primary);
    transition: all 0.3s ease;
}

.gallery-card:hover .video-play-icon {
    background: var(--resort-primary);
    color: white;
}

.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-type-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.gallery-type-badge.photo {
    background: rgba(26, 155, 142, 0.9);
    color: white;
}

.gallery-type-badge.video {
    background: rgba(255, 123, 84, 0.9);
    color: white;
}

.gallery-view-btn {
    align-self: flex-end;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: white;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-view-btn:hover {
    background: var(--resort-primary);
    color: white;
}

/* ========================================
   Room Categories Grid
======================================== */
.room-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.room-category-card {
    display: block;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.room-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    color: inherit;
    text-decoration: none;
}

.room-category-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.room-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-category-card:hover .room-category-image img {
    transform: scale(1.08);
}

.room-category-count {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.room-category-content {
    padding: 18px;
}

.room-category-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 8px;
}

.room-category-content p {
    color: #666;
    font-size: 13px;
    margin: 0 0 12px;
    line-height: 1.5;
}

.room-category-price {
    font-size: 14px;
    color: #888;
}

.room-category-price span {
    font-size: 20px;
    font-weight: 700;
    color: var(--resort-primary);
}

/* ========================================
   Gallery Lightbox
======================================== */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--resort-primary);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Responsive - Gallery & Room Categories */
@media (max-width: 991px) {
    .branch-header h1 {
        font-size: 28px;
    }
    
    .branch-header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .gallery-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .room-categories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .branch-header {
        padding: 90px 0 25px;
    }
    
    .branch-header h1 {
        font-size: 24px;
    }
    
    .branch-header-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .gallery-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .room-category-image {
        height: 150px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ================================================
   MISSING BASE STYLES (RoomDetails components)
   ================================================ */
.room-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.amenities-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.amenity-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--resort-light);
    border-radius: var(--radius-sm);
}

.amenity-icon-wrap {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--resort-primary);
    color: var(--resort-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.amenity-info h5 {
    font-size: 15px;
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.amenity-info p {
    font-size: 13px;
    color: var(--resort-gray);
    margin: 0;
}

.booking-info-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--resort-gray);
}

.booking-info-item i {
    color: #28a745;
    font-size: 14px;
    flex-shrink: 0;
}

.specs-summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specs-summary-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 14px;
    color: var(--resort-gray-dark);
}

.specs-summary-list li:last-child {
    border-bottom: none;
}

.specs-summary-list li strong {
    color: var(--resort-dark);
    margin-right: 8px;
}

/* ===== Room Details - Inline Info Cards (Room Details & Need Help) ===== */
.room-info-inline-card {
    background: var(--resort-white);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.room-info-inline-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--resort-primary, #0d6efd);
}

.room-info-inline-header i {
    font-size: 20px;
    color: var(--resort-primary, #0d6efd);
}

.room-info-inline-header h4 {
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    color: var(--resort-dark, #212529);
}

.room-info-inline-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.room-info-inline-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 14px;
}

.room-info-inline-list li:last-child {
    border-bottom: none;
}

.room-info-inline-list li strong {
    color: var(--resort-gray, #6c757d);
    font-weight: 500;
}

.room-info-inline-list li span {
    color: var(--resort-dark, #212529);
    font-weight: 600;
}

.room-info-inline-text {
    font-size: 14px;
    color: var(--resort-gray, #6c757d);
    margin-bottom: 16px;
    line-height: 1.5;
}

.room-info-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.room-info-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: var(--resort-light, #f8f9fa);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

.room-info-contact-item:hover {
    background: var(--resort-primary, #0d6efd);
    color: #fff;
    transform: translateX(4px);
}

.room-info-contact-item:hover .room-info-contact-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.room-info-contact-item:hover .room-info-contact-label,
.room-info-contact-item:hover .room-info-contact-value {
    color: #fff;
}

.room-info-contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.1);
    color: var(--resort-primary, #0d6efd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.25s ease;
}

.room-info-contact-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: var(--resort-gray, #6c757d);
    margin-bottom: 1px;
}

.room-info-contact-value {
    display: block;
    font-size: 14px;
    color: var(--resort-dark, #212529);
    font-weight: 500;
}

.sticky-sidebar {
    position: sticky;
    top: 90px;
    z-index: 10;
}

/* ================================================
   COMPREHENSIVE RESPONSIVE ENHANCEMENTS
   Desktop, Tablet, Mobile — All Public Pages
   ================================================ */

/* ---------- TABLET LANDSCAPE (≤1199px) ---------- */
@media (max-width: 1199px) {
    /* Room Details */
    .room-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-detail-grid {
        grid-template-columns: 1fr;
    }

    /* Rooms grid already handled (repeat(2)) */
}

/* ---------- TABLET PORTRAIT (≤991px) ---------- */
@media (max-width: 991px) {
    /* --- Navbar --- */
    .navbar-toggler {
        border: none;
        padding: 8px 12px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* --- Page Headers --- */
    .page-header h1 {
        font-size: 30px;
    }

    .page-header p {
        font-size: 14px;
    }

    /* --- Branches Page --- */
    .branches-section {
        padding: 40px 0;
        padding-top: 90px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    /* --- Room Categories Page --- */
    .categories-section {
        padding: 50px 0;
    }

    .category-image {
        height: 220px;
    }

    .category-header {
        flex-direction: column;
        gap: 8px;
    }

    .category-price {
        text-align: left;
    }

    /* --- Rooms Page --- */
    .rooms-section {
        padding: 40px 0;
    }

    /* --- Room Details Page --- */
    .room-gallery-section {
        padding: 15px 0 30px;
    }

    .gallery-main {
        height: 350px;
    }

    .room-specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .room-details-section {
        padding: 30px 0 60px;
    }

    .sticky-sidebar {
        position: static;
    }

    /* --- Branch Details Page --- */
    .branch-details-section {
        padding: 30px 0;
    }

    /* --- Filter Section --- */
    .filter-card {
        padding: 15px 20px;
    }

    /* --- CTA Section --- */
    .cta-section {
        padding: 40px 0;
    }

    .cta-section h2 {
        font-size: 26px;
    }

    .cta-section .btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* ---------- MOBILE LARGE (≤767px) ---------- */
@media (max-width: 767px) {
    /* --- General --- */
    body {
        font-size: 15px;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-tag {
        font-size: 12px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 13px;
        padding: 0;
    }

    /* --- Page Headers (all pages) --- */
    .page-header {
        padding: 90px 0 25px;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .page-header p {
        font-size: 13px;
    }

    .page-header .breadcrumb {
        font-size: 13px;
    }

    /* --- Branches Page --- */
    .branches-section {
        padding: 30px 0;
        padding-top: 80px;
    }

    .branches-section .section-header {
        margin-bottom: 20px;
    }

    .branches-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .branch-card {
        border-radius: var(--radius-md);
    }

    .branch-image {
        height: 180px;
    }

    .branch-content {
        padding: 16px;
    }

    .branch-card h3 {
        font-size: 20px;
    }

    .branch-card p {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .branch-amenities {
        gap: 6px;
        margin-bottom: 12px;
    }

    .branch-amenities span {
        font-size: 11px;
        padding: 3px 8px;
    }

    .branch-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .branch-footer .btn {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
    }

    /* --- Room Categories Page --- */
    .categories-section {
        padding: 30px 0;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 25px;
    }

    .category-card {
        border-radius: var(--radius-md);
    }

    .category-image {
        height: 200px;
    }

    .category-content {
        padding: 20px;
    }

    .category-header h3 {
        font-size: 20px;
    }

    .category-description {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .category-specs {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 15px 0;
    }

    .spec-item i {
        font-size: 18px;
    }

    .spec-item span {
        font-size: 12px;
    }

    .category-footer {
        flex-direction: column;
        gap: 10px;
    }

    .category-footer .btn {
        width: 100%;
        text-align: center;
    }

    .comparison-section {
        padding: 40px 0;
    }

    /* --- Filter Section --- */
    .filter-section {
        padding: 20px 0;
    }

    .filter-card {
        padding: 15px;
    }

    .filter-card .btn {
        margin-top: 5px;
    }

    /* --- Rooms Page --- */
    .rooms-section {
        padding: 30px 0;
    }

    .rooms-filter-bar {
        padding: 16px;
    }

    .rooms-filter-form {
        flex-direction: column;
        gap: 12px;
    }

    .rooms-filter-form .filter-group {
        min-width: 100%;
    }

    .btn-clear-filters {
        width: 100%;
        text-align: center;
    }

    .rooms-sort-bar {
        flex-direction: column;
        gap: 12px;
        padding: 12px 16px;
        align-items: stretch;
    }

    .results-count {
        text-align: center;
    }

    .sort-options {
        justify-content: center;
        gap: 10px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .room-card {
        border-radius: var(--radius-md);
    }

    .rooms-grid.list-view {
        grid-template-columns: 1fr;
    }

    .rooms-grid.list-view .room-card {
        flex-direction: column;
    }

    .rooms-grid.list-view .room-image {
        width: 100%;
        height: 200px;
    }

    .room-image {
        height: 200px;
    }

    .room-content {
        padding: 16px;
    }

    .room-name {
        font-size: 17px;
    }

    .room-specs {
        flex-wrap: wrap;
        gap: 8px;
        font-size: 12px;
    }

    .room-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .room-price {
        text-align: center;
    }

    .btn-book {
        width: 100%;
        text-align: center;
    }

    /* --- Room Details Page --- */
    .room-gallery-section {
        padding: 10px 0 20px;
    }

    .room-gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-main {
        height: 250px;
        border-radius: var(--radius-md);
    }

    .gallery-thumbs {
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 8px;
        padding-bottom: 4px;
    }

    .thumb-item {
        height: 60px;
        min-width: 80px;
        flex-shrink: 0;
    }

    .gallery-badges .badge {
        padding: 6px 14px;
        font-size: 11px;
    }

    .btn-favorite-large,
    .btn-fullscreen {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .btn-favorite-large {
        right: 56px;
    }

    .room-details-section {
        padding: 20px 0 40px;
    }

    .room-details-header {
        flex-direction: column;
        gap: 10px;
    }

    .room-title-wrap h1 {
        font-size: 24px;
    }

    .room-category-tag {
        font-size: 12px;
        padding: 4px 12px;
    }

    .room-location-info {
        flex-wrap: wrap;
        gap: 6px;
        font-size: 13px;
    }

    .room-specs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }

    .spec-card {
        padding: 14px;
        gap: 10px;
    }

    .spec-card i {
        font-size: 22px;
    }

    .spec-value {
        font-size: 14px;
    }

    .spec-label {
        font-size: 12px;
    }

    .amenities-detail-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .amenity-detail-item {
        padding: 12px;
    }

    .amenity-icon-wrap {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 14px;
    }

    .booking-card {
        padding: 20px;
        border-radius: var(--radius-md);
    }

    .price-main .amount {
        font-size: 36px;
    }

    .booking-form .form-group.date-range {
        flex-direction: column;
        gap: 0;
    }

    .date-separator {
        display: none;
    }

    .booking-info-list {
        margin-top: 16px;
        gap: 10px;
    }

    .booking-info-item {
        font-size: 12px;
    }

    .sidebar-card {
        padding: 20px;
        border-radius: var(--radius-md);
    }

    .sidebar-card h4 {
        font-size: 16px;
    }

    .contact-info-mini a {
        padding: 10px 12px;
        font-size: 13px;
    }

    .room-booking-sidebar {
        margin-top: 25px;
    }

    .room-info-inline-card {
        padding: 18px;
        border-radius: 12px;
    }

    .room-info-inline-header h4 {
        font-size: 15px;
    }

    .room-info-inline-list li {
        font-size: 13px;
        padding: 8px 0;
    }

    .room-info-contact-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 13px;
    }

    .room-info-contact-value {
        font-size: 13px;
    }

    .similar-rooms-section {
        padding: 40px 0;
    }

    .similar-rooms-section .section-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .similar-rooms-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* --- Branch Details Page --- */
    .branch-details-section {
        padding: 20px 0;
    }

    .detail-card {
        padding: 18px;
        margin-bottom: 16px;
        border-radius: var(--radius-md);
    }

    .detail-title {
        font-size: 18px;
        gap: 8px;
        margin-bottom: 15px;
    }

    .detail-title-row {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .detail-text {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    .detail-highlights {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 18px;
        padding-top: 18px;
    }

    .detail-highlights .highlight-item {
        padding: 12px;
    }

    .detail-highlights .highlight-item i {
        font-size: 18px;
    }

    .detail-highlights .highlight-item span {
        font-size: 13px;
    }

    /* Branch Detail Amenities */
    .amenities-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .amenity-item {
        padding: 12px;
        gap: 10px;
    }

    .amenity-item i {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .amenity-item span {
        font-size: 13px;
    }

    /* Branch Detail Activities */
    .activities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .activity-card-mini {
        padding: 16px;
    }

    .activity-mini-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .activity-card-mini h4 {
        font-size: 14px;
    }

    .activity-card-mini p {
        font-size: 12px;
    }

    /* Branch Detail Gallery */
    .gallery-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-card .video-play-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    /* Branch Detail Room Categories */
    .room-categories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .room-category-image {
        height: 160px;
    }

    .room-category-content {
        padding: 14px;
    }

    .room-category-content h4 {
        font-size: 16px;
    }

    /* Branch Detail Room Previews */
    .room-preview-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .room-preview-card {
        flex-direction: column;
    }

    .room-preview-image {
        width: 100%;
        height: 160px;
    }

    .room-preview-content {
        padding: 16px;
    }

    /* Booking Sidebar Card */
    .booking-sidebar-card {
        padding: 18px;
        margin-bottom: 16px;
        border-radius: var(--radius-md);
    }

    .booking-card-header {
        margin-bottom: 18px;
        padding-bottom: 15px;
    }

    .booking-price .price-amount {
        font-size: 28px;
    }

    .booking-sidebar-card .form-control,
    .booking-sidebar-card .form-select {
        padding: 10px 12px;
        font-size: 14px;
    }

    .booking-sidebar-card label {
        font-size: 12px;
        margin-bottom: 6px;
    }

    /* Sidebar cards in branch details */
    .sidebar-card p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .map-placeholder {
        height: 120px;
        margin-bottom: 12px;
    }

    .location-details p {
        font-size: 12px;
    }

    /* Branch Hero */
    .branch-hero {
        height: 250px;
        margin-top: 56px;
    }

    .branch-hero-content h1 {
        font-size: 22px;
    }

    .branch-hero-content {
        padding: 20px 0;
    }

    .branch-hero-location {
        font-size: 13px;
    }

    .branch-hero-price strong {
        font-size: 20px;
    }

    /* Branch Header (compact) */
    .branch-header {
        padding: 80px 0 20px;
        margin-top: 56px;
    }

    .branch-header h1 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .branch-header-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .branch-header-actions {
        width: 100%;
    }

    .branch-header-actions .btn {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
    }

    /* Review Items */
    .review-item {
        padding: 16px;
    }

    .review-header {
        gap: 10px;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
    }

    .review-meta h5 {
        font-size: 14px;
    }

    .review-text {
        font-size: 13px;
    }

    /* CTA */
    .cta-section {
        padding: 30px 0;
    }

    .cta-section h2,
    .cta-section h3 {
        font-size: 22px;
    }

    .cta-section p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .cta-section .btn {
        width: 100%;
        padding: 12px 25px;
        font-size: 14px;
    }

    .cta-card .row {
        text-align: center;
    }

    .cta-card .text-lg-end {
        text-align: center !important;
        margin-top: 15px;
    }

    /* Pagination */
    .pagination-wrapper {
        margin-top: 25px;
    }

    .pagination .page-link {
        padding: 8px 12px;
        font-size: 13px;
    }

    /* Gallery Lightbox */
    .lightbox-content {
        max-width: 95%;
    }

    .lightbox-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }

    /* Gallery Modal */
    #galleryModal .modal-body {
        padding: 40px 10px;
    }

    .gallery-modal-controls {
        gap: 15px;
        margin-top: 15px;
    }

    .gallery-modal-controls button {
        width: 40px;
        height: 40px;
    }
}

/* ---------- MOBILE SMALL (≤575px) ---------- */
@media (max-width: 575px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    /* --- Page Headers --- */
    .page-header {
        padding: 80px 0 20px;
    }

    .page-header h1 {
        font-size: 20px;
    }

    .page-header p {
        font-size: 12px;
    }

    .page-header .breadcrumb {
        font-size: 12px;
    }

    .page-header .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 4px;
    }

    /* --- Branches --- */
    .branch-image {
        height: 160px;
    }

    .branch-content {
        padding: 14px;
    }

    .branch-card h3 {
        font-size: 20px;
    }

    .branch-location {
        font-size: 18px;
    }

    .branch-amenities span {
        font-size: 10px;
        padding: 2px 6px;
    }

    .branch-price span {
        font-size: 18px;
    }

    /* --- Room Categories --- */
    .category-image {
        height: 170px;
    }

    .category-content {
        padding: 16px;
    }

    .category-header h3 {
        font-size: 18px;
    }

    .category-specs {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 12px 0;
        margin-bottom: 15px;
    }

    /* --- Rooms --- */
    .room-image {
        height: 180px;
    }

    .room-content {
        padding: 14px;
    }

    .room-name {
        font-size: 16px;
    }

    .room-specs {
        font-size: 11px;
        gap: 6px;
    }

    .room-amenities span {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .room-price .price {
        font-size: 18px;
    }

    /* --- Room Details --- */
    .gallery-main {
        height: 200px;
    }

    .thumb-item {
        height: 50px;
        min-width: 65px;
    }

    .room-title-wrap h1 {
        font-size: 20px;
    }

    .room-specs-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .spec-card {
        padding: 12px;
        flex-direction: row;
        align-items: center;
    }

    .spec-card i {
        font-size: 20px;
    }

    .detail-card {
        padding: 14px;
        margin-bottom: 14px;
    }

    .detail-title {
        font-size: 16px;
    }

    .booking-card {
        padding: 16px;
    }

    .btn-book-now {
        padding: 12px;
        font-size: 14px;
    }

    /* --- Branch Details --- */
    .branch-hero {
        height: 200px;
        margin-top: 52px;
    }

    .branch-hero-content h1 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .branch-hero-meta {
        gap: 8px;
    }

    .branch-header {
        padding: 72px 0 16px;
        margin-top: 52px;
    }

    .branch-header h1 {
        font-size: 20px;
    }

    .activities-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .activity-card-mini {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 14px;
        gap: 12px;
    }

    .activity-card-mini .activity-mini-icon {
        margin: 0;
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 18px;
    }

    .activity-card-mini h4 {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .activity-card-mini p {
        font-size: 12px;
    }

    .booking-sidebar-card {
        padding: 14px;
    }

    .booking-sidebar-card label {
        font-size: 11px;
    }

    .booking-sidebar-card .form-control,
    .booking-sidebar-card .form-select {
        padding: 9px 10px;
        font-size: 13px;
    }

    .sidebar-card {
        padding: 16px;
    }

    .map-placeholder {
        height: 100px;
    }

    /* Gallery */
    .gallery-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .gallery-card .video-play-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .gallery-type-badge {
        font-size: 9px;
        padding: 3px 7px;
    }

    .gallery-view-btn {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    /* CTA */
    .cta-section h2,
    .cta-section h3 {
        font-size: 18px;
    }

    .cta-section p {
        font-size: 13px;
    }

    /* Reviews */
    .review-item {
        padding: 14px;
    }

    .review-avatar {
        width: 36px;
        height: 36px;
    }

    .review-meta h5 {
        font-size: 13px;
    }

    .review-meta span {
        font-size: 11px;
    }

    .review-text {
        font-size: 12px;
    }

    /* Lightbox */
    .lightbox-content img,
    .lightbox-content video {
        max-height: 70vh;
        border-radius: 4px;
    }
}

/* ---------- TOUCH / HOVER OPTIMIZATION ---------- */
@media (hover: none) and (pointer: coarse) {
    /* Disable hover transforms on touch devices for better UX */
    .branch-card:hover,
    .room-card:hover,
    .category-card:hover,
    .room-category-card:hover,
    .activity-card:hover {
        transform: none;
    }

    /* Show gallery overlays always on touch */
    .gallery-card-overlay {
        opacity: 1;
        background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.4));
    }

    .gallery-card .gallery-type-badge {
        display: inline-flex;
    }

    .gallery-card .gallery-view-btn {
        display: flex;
    }
}

/* ===== Language Selector (old navbar styles – kept for reference) ===== */

@media (max-width: 991px) {
    .lang-picker {
        right: -40px;
        min-width: 180px;
    }
}

/* ===== Check Availability Section ===== */
.availability-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fe 0%, #eef1f8 100%);
}

.availability-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    max-width: 1000px;
    margin: 0 auto;
}

.availability-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 6px;
}

.availability-label i {
    color: var(--primary, #0d6efd);
    margin-right: 4px;
}

.availability-location-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #212529;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary, #0d6efd);
    display: inline-block;
}

.availability-room-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.availability-room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.availability-room-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.availability-room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.availability-room-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(25, 135, 84, 0.9);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.availability-room-body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.availability-room-body h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.availability-room-location {
    font-size: 0.82rem;
    color: var(--primary, #0d6efd);
    margin-bottom: 8px;
    font-weight: 500;
}

.availability-room-meta {
    display: flex;
    gap: 14px;
    font-size: 0.82rem;
    color: #6c757d;
    margin-bottom: 14px;
}

.availability-room-meta i {
    margin-right: 3px;
    color: var(--primary, #0d6efd);
}

.availability-room-pricing {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}

.availability-room-rate {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 2px;
}

.rate-amount {
    font-size: 1.35rem;
    font-weight: 700;
    color: #212529;
}

.rate-label {
    font-size: 0.82rem;
    color: #6c757d;
}

.availability-room-total {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 4px;
}

.availability-results-header .badge {
    padding: 10px 20px;
    border-radius: 50px;
}

@media (max-width: 768px) {
    .availability-section {
        padding: 50px 0;
    }
    .availability-form-card {
        padding: 20px 16px;
    }
}
