/**
 * Klax Hotels & Resorts - Professional BON-Style Design
 * Clean, Modern, User-Friendly Interface
 */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Contact Bar */
.top-bar {
    background: #000;
    color: #fff;
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.contact-item {
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.contact-item:hover {
    color: #ff6b35 !important;
}

.contact-item i {
    font-size: 1rem;
}

.contact-item .fa-whatsapp {
    color: #25D366;
}

.contact-item:hover .fa-whatsapp {
    color: #128C7E;
}

/* Main Header - Overlays hero like BON Hotel */
.main-header {
    background: rgba(0, 0, 0, 0.5);
    box-shadow: none;
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.main-header.scrolled {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

.main-header.scrolled .logo a,
.main-header.scrolled .main-nav a {
    color: #1a1a1a;
}

.main-header.scrolled .btn-check-availability {
    background: #ff6b35;
    color: #fff;
}

.main-header.scrolled .mobile-menu-toggle span {
    background: #1a1a1a;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
}

.logo i {
    font-size: 1.8rem;
    color: #ff6b35;
}

/* New logo image sizing */
.logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.main-nav a {
    color: #fff;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.main-nav a:hover {
    color: #ff6b35;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.btn-check-availability {
    background: #ff6b35;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
}

.btn-check-availability:hover {
    background: #e55a28;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section - BON Hotel Style */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    /* Fallback for older browsers */
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%),
                url('/assets/images/hero/hero-image.jpg') center/cover no-repeat;
    /* Prefer modern WebP with JPEG fallback where supported */
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%),
                image-set(
                    url('/assets/images/hero/hero-image.webp') type('image/webp') 1x,
                    url('/assets/images/hero/hero-image.jpg') type('image/jpeg') 1x
                ) center/cover no-repeat;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 20;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 100px 0 0 0;
}

.hero-text {
    text-align: center;
    color: #fff;
    padding: 80px 0 40px 0;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: heroTitleSlide 3s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
    transform-origin: center;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: heroSubtitleSlide 3s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
    animation-delay: 0.1s;
    transform-origin: center;
}

/* Booking Widget - Positioned at bottom like BON Hotel */
.booking-widget-container {
    margin-top: auto;
    position: relative;
    top: 60px; /* overlap onto the next white section */
    z-index: 30;
}

.booking-widget {
    background: rgba(20, 20, 20, 0.98);
    padding: 35px 40px;
    border-radius: 0;
    backdrop-filter: blur(15px);
    box-shadow: 0 -5px 40px rgba(0,0,0,0.5);
}

.booking-form .form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: end;
}

.form-field {
    flex: 1;
    min-width: 150px;
}

.form-field-small {
    flex: 0 0 100px;
}

.form-field-button {
    flex: 0 0 200px;
}

.form-field label {
    display: block;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.btn-submit {
    width: 100%;
    padding: 16px 30px;
    background: #ff6b35;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #e55a28;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,107,53,0.4);
}

/* Search Results */
.search-results-section {
    padding: 60px 0;
    background: #f8f9fa;
    display: none;
}

#searchResults {
    background: #f8f9fa;
    min-height: 200px;
    display: none;
}

.room-result-image-container {
    position: relative;
    overflow: hidden;
    background: #f2f2f2;
}

.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b35;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.room-badge-ok {
    background: #28a745;
}

.room-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.room-result-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.room-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.room-result-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.room-result-content {
    padding: 25px;
}

.room-result-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.room-amenity {
    padding: 5px 12px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
}

.room-result-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.room-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b35;
}

.room-price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
}

/* Section Navigation */
.section-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px 0;
    border-bottom: 2px solid #eee;
    margin-bottom: 50px;
}

.section-nav a {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #666;
    padding-bottom: 10px;
    position: relative;
}

.section-nav a.active {
    color: #ff6b35;
}

.section-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff6b35;
}

.section-nav a:hover {
    color: #ff6b35;
}

/* Introduction Section */
.introduction-section {
    padding: 80px 0;
}
.introduction-section,
.facilities-section,
.experience-sections,
/* Exclude gallery from content-visibility to avoid perceived reload on scroll */
.feedback-section,
.contact-section {
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.intro-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Facilities Section */
.facilities-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.facility-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.facility-item i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
}

.facility-item span {
    display: block;
    font-weight: 500;
    color: #333;
}

/* Experience Sections */
.experience-sections {
    padding: 80px 0;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.experience-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 400px;
}

.experience-image {
    width: 100%;
    height: 100%;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    color: #fff;
}

.experience-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.experience-content p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 10px 0 20px;
    color: #333;
}

.gallery-subsection + .gallery-subsection {
    margin-top: 40px;
}

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

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
    background: #e0e0e0;
}

.gallery-item:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallery-item picture {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
}

/* Removed forced rotation for gallery item 5; use correct image orientation instead */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Video Gallery Items */
.gallery-item.video-item {
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-item.video-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gallery-item.video-item::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ff6b35;
    font-size: 24px;
    z-index: 11;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item.video-item:hover::before {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.gallery-item.video-item:hover::after {
    font-size: 28px;
    color: #ff6b35;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Distinct badge for video items */
.badge.badge-video {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 107, 53, 0.95);
    color: #fff;
    font-size: 0.8rem;
    padding: 6px 10px;
    border-radius: 999px;
    z-index: 12;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.video-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-title {
    position: absolute;
    top: -40px;
    left: 0;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

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

.video-modal video {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
    font-size: 32px;
    font-weight: bold;
    padding: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.video-modal-close:hover {
    background: rgba(255, 107, 53, 0.8);
    border-color: #ff6b35;
    transform: rotate(90deg);
}

/* Keyboard navigation hint */
.video-modal-hint {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: #999;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .gallery-item.video-item::before,
    .gallery-item.video-item::after {
        transition: none;
    }
    .video-modal,
    .video-modal-content {
        animation: none;
    }
}

/* Image Lightbox */
.image-lightbox {
    display: none;
    position: fixed;
    z-index: 2100;
    inset: 0;
    background: rgba(0,0,0,0.95);
}

.image-lightbox.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-lightbox-content {
    position: relative;
    width: 92%;
    max-width: 1100px;
    background: #000;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.lightbox-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
}

.image-lightbox img {
    display: block;
    width: 100%;
    height: auto;
}

.watermark-layer {
    position: absolute;
    bottom: 12px;
    right: 16px;
    color: rgba(255,255,255,0.25);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: clamp(14px, 2.5vw, 22px);
    text-transform: uppercase;
    pointer-events: none;
}

.lightbox-caption {
    color: #ddd;
    padding: 10px 2px 0;
    font-size: 0.95rem;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
    font-size: 32px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 107, 53, 0.8);
    border-color: #ff6b35;
    transform: rotate(90deg);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .video-modal-close,
    .lightbox-close,
    .video-title { top: -36px; }
}
.feedback-section {
    padding: 80px 0;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.feedback-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.stars {
    color: #ffa500;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.feedback-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

.feedback-author {
    font-weight: 600;
    color: #333;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-info-item i {
    font-size: 2rem;
    color: #ff6b35;
    flex-shrink: 0;
}

.contact-info-item > div {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-info-item a {
    color: #333;
    display: block;
    margin: 5px 0;
}

.contact-info-item a:hover {
    color: #ff6b35;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 1.8rem;
    color: #ff6b35;
}

/* Footer logo image sizing */
.footer-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
}

.footer-column a:hover {
    color: #ff6b35;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff6b35;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    color: #ff6b35;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37,211,102,0.5);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    overflow-y: auto;
}

.modal.show {
    display: block;
}

.modal-content {
    background: #fff;
    margin: 50px auto;
    padding: 40px;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #999;
    cursor: pointer;
}

.modal-close:hover {
    color: #ff6b35;
}

.booking-detail-form .form-group {
    margin-bottom: 20px;
}

.booking-detail-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.booking-detail-form input,
.booking-detail-form select,
.booking-detail-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.booking-detail-form input:focus,
.booking-detail-form select:focus,
.booking-detail-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.booking-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Loading Spinner */
.loading {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255,107,53,0.3);
    border-top-color: #ff6b35;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Professional hero text animations - left to right and back */
@keyframes heroTitleSlide {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }
    15% {
        opacity: 1;
    }
    50% {
        transform: translateX(20px);
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-40px);
    }
}

@keyframes heroSubtitleSlide {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    15% {
        opacity: 1;
    }
    50% {
        transform: translateX(15px);
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-30px);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .hero-title,
    .hero-subtitle {
        animation: none !important;
        opacity: 1;
        transform: none !important;
    }
}

/* Utilities */
.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .intro-content {
        grid-template-columns: 1fr;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 0.75rem;
    }
    
    .contact-info {
        gap: 10px;
    }
    
    .main-header {
        top: 30px;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        padding: 30px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .main-nav a {
        display: block;
        padding: 15px 0;
        color: #333 !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle span {
        background: #fff;
    }
    
    .main-header.scrolled .mobile-menu-toggle span {
        background: #333;
    }
    
    .btn-check-availability {
        display: none;
    }
    
    .hero-section {
        min-height: 100vh;
    }
    
    .hero-text {
        padding: 40px 0 20px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .booking-widget {
        padding: 20px;
    }
    .booking-widget-container { top: 30px; }
    
    .booking-form .form-row {
        flex-direction: column;
    }
    
    .form-field,
    .form-field-small,
    .form-field-button {
        flex: 1 1 100%;
        width: 100%;
        min-width: 100%;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
    }
    
    .section-nav {
        gap: 15px;
        flex-wrap: wrap;
        font-size: 0.8rem;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .feedback-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Rooms Page Styles */
.page-header-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    padding: 100px 0 60px;
    text-align: center;
}

.page-header-section h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.page-header-section p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.rooms-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}
.view-toggle .toggle-btn {
    padding: 8px 14px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}
.view-toggle .toggle-btn.active {
    border-color: #ff6b35;
    color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255,107,53,0.15);
}

/* Rooms list (professional compact layout) */
.rooms-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.room-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.room-row-media img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    background: #f2f2f2;
}

.room-row-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
}

.room-row-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #1a1a1a;
}

.room-row-price {
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.3rem;
}

.room-row-desc {
    color: #666;
    margin: 8px 0 10px 0;
}

.room-row-amenities {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 8px 14px;
    margin: 6px 0 10px 0;
    list-style: none;
}
.room-row-amenities li { color: #555; font-size: .95rem; }
.room-row-amenities i { color: #ff6b35; margin-right: 6px; }

.room-row-meta { display: flex; flex-wrap: wrap; gap: 14px; color: #666; font-size: .95rem; margin: 8px 0 12px 0; }
.badge-qty { background: #ff6b35; color:#fff; padding:4px 10px; border-radius: 16px; font-weight:600; }

.room-row-actions { text-align: right; }

@media (max-width: 768px) {
  .room-row { grid-template-columns: 1fr; }
  .room-row-actions { text-align: left; }
  .room-row-amenities { grid-template-columns: 1fr; }
}

.room-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.room-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

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

.room-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff6b35;
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.room-card-content {
    padding: 30px;
}

.room-card-header {
    margin-bottom: 20px;
}

.room-card-title {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.room-card-price {
    font-size: 1.5rem;
    color: #ff6b35;
    font-weight: 700;
}

.room-card-price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
}

.room-card-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.room-card-amenities {
    margin-bottom: 25px;
}

.room-card-amenities h4 {
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.95rem;
}

.amenity-item i {
    color: #ff6b35;
    font-size: 0.9rem;
}

.room-card-footer {
    padding-top: 25px;
    border-top: 1px solid #eee;
    text-align: center;
}

.btn-book-room {
    display: inline-block;
    padding: 14px 40px;
    background: #ff6b35;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-book-room:hover {
    background: #e55a28;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,107,53,0.4);
}

.cta-section {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a28 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-lg {
    padding: 16px 50px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .page-header-section h1 {
        font-size: 2rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-list {
        grid-template-columns: 1fr;
    }
}

