/* === Home Page - Luxury Redesign === */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('img/rooms/office/img_8650.jpg') center center / cover no-repeat;
    background-attachment: fixed;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(21,38,41,0.88) 0%, rgba(31,56,61,0.6) 50%, rgba(21,38,41,0.88) 100%);
    z-index: 1;
}
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(21,38,41,0.5) 100%);
    z-index: 1;
}

/* Animated gradient overlay */
.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(162,181,24,0.05) 0%, rgba(201,169,110,0.08) 25%, rgba(162,181,24,0.03) 50%, rgba(201,169,110,0.06) 75%, rgba(162,181,24,0.05) 100%);
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
    z-index: 1;
    pointer-events: none;
}

/* Floating decorative shapes */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}
.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary, #A2B518);
    top: -100px;
    right: -100px;
    animation: floatShape1 20s ease-in-out infinite;
}
.hero-shape-2 {
    width: 250px;
    height: 250px;
    background: var(--accent, #C9A96E);
    bottom: 10%;
    left: -80px;
    animation: floatShape2 16s ease-in-out infinite;
}
.hero-shape-3 {
    width: 150px;
    height: 150px;
    border: 2px solid rgba(201,169,110,0.1);
    background: transparent;
    top: 30%;
    left: 20%;
    animation: floatShape3 22s ease-in-out infinite;
}
.hero-shape-4 {
    width: 80px;
    height: 80px;
    background: var(--accent, #C9A96E);
    top: 60%;
    right: 15%;
    animation: floatShape4 14s ease-in-out infinite;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem 1.5rem;
    box-sizing: border-box;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201,169,110,0.15);
    border: 1px solid rgba(201,169,110,0.3);
    color: var(--accent, #C9A96E);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.hero-section h1 {
    font-family: 'Lora', serif;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.05;
    letter-spacing: -1px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero-section h1 span {
    color: var(--primary, #A2B518);
    position: relative;
}
.hero-section h1 span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent, #C9A96E);
    opacity: 0.6;
    border-radius: 2px;
}
.hero-section .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

/* Price callout */
/* Search Bar - Premium Glassmorphism */
.hero-search {
    margin-top: 0.5rem;
}
.search-bar-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    max-width: 820px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    align-items: flex-end;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative;
}
.search-bar-container::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(201,169,110,0.3), rgba(162,181,24,0.1), rgba(201,169,110,0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.search-bar-input-group {
    flex: 1 1 180px;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.search-bar-input-group label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.4rem;
}
.search-bar-input-group input,
.search-bar-input-group select {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.search-bar-input-group input:focus,
.search-bar-input-group select:focus {
    border-color: var(--accent, #C9A96E);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.search-bar-input-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(255,255,255,0.5)' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 2.5rem;
    cursor: pointer;
}
.search-bar-input-group select option {
    background: #1F383D;
    color: #fff;
}
.search-bar-input-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.5;
    cursor: pointer;
}

/* iOS Safari date input fix */
.search-bar-input-group input[type="date"] {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}
.search-bar-button-group {
    flex-shrink: 0;
}
#search-availability-button {
    background: linear-gradient(135deg, var(--primary, #A2B518), #8FA015);
    color: var(--dark, #1F383D);
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(162,181,24,0.3);
}
#search-availability-button:hover {
    background: linear-gradient(135deg, var(--accent, #C9A96E), #b8985e);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,169,110,0.4);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.35);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.scroll-down {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    position: relative;
}
.scroll-down::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent, #C9A96E);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

/* Stats Section */
.stats-section {
    background: var(--dark, #1F383D);
    padding: 3.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(162,181,24,0.03) 0%, transparent 50%, rgba(201,169,110,0.03) 100%);
    pointer-events: none;
}
.stats-section .container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: center;
}
.stat-item {
    padding: 1rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}
.stat-item:hover {
    transform: translateY(-2px);
}
.stat-icon {
    font-size: 1.2rem;
    color: var(--accent, #C9A96E);
    margin-bottom: 0.75rem;
}
.stat-number {
    font-family: 'Lora', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}
.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Intro Section */
.motel-intro-section {
    padding: 6rem 1.5rem;
    background: var(--white, #FFFFFF);
    text-align: center;
}
.motel-intro-section .container {
    max-width: 1100px;
    margin: 0 auto;
}
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary, #A2B518);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}
.section-title {
    font-family: 'Lora', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark, #1F383D);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light, #6B7280);
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}
.feature-card {
    background: var(--bg-warm, #FAFAFA);
    border: 1px solid var(--border, #E5E7EB);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.08);
    border-color: var(--primary, #A2B518);
}
.feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(162,181,24,0.12), rgba(162,181,24,0.04));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary, #A2B518);
    transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
    background: var(--primary, #A2B518);
    color: #fff;
    transform: scale(1.05);
}
.feature-text h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark, #1F383D);
    margin-bottom: 0.3rem;
}
.feature-text p {
    font-size: 0.85rem;
    color: var(--text-light, #6B7280);
    line-height: 1.6;
    margin: 0;
}

/* Gallery Section */
.gallery-section {
    background: var(--bg-warm, #FAFAFA);
    padding: 5rem 1.5rem;
    text-align: center;
}
.gallery-section .container {
    max-width: 1200px;
    margin: 0 auto;
}
.scrolling-gallery-wrapper {
    overflow: hidden;
    width: 100%;
    margin: 2rem auto;
    border-radius: 16px;
    min-height: 330px;
    position: relative;
}
.scrolling-gallery-wrapper::before,
.scrolling-gallery-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.scrolling-gallery-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-warm, #FAFAFA) 0%, transparent 100%);
}
.scrolling-gallery-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-warm, #FAFAFA) 0%, transparent 100%);
}
.scrolling-gallery-track {
    display: flex;
    width: max-content;
    gap: 1rem;
    animation-name: scrollLeftAnimation;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    padding: 0.5rem;
}
.scrolling-gallery-item {
    flex-shrink: 0;
    opacity: 0;
    animation: fadeInItem 0.8s ease-out forwards;
}
.scrolling-gallery-item img {
    width: 380px;
    height: 350px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
}
.scrolling-gallery-item img:hover {
    transform: scale(1.04);
    box-shadow: 0 16px 50px rgba(0,0,0,0.18);
}

/* Rooms Preview Section */
.rooms-preview-section {
    padding: 6rem 1.5rem;
    background: var(--white, #FFFFFF);
    text-align: center;
}
.rooms-preview-section .container {
    max-width: 1100px;
    margin: 0 auto;
}
.rooms-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.room-preview-card {
    background: var(--bg-warm, #FAFAFA);
    border: 1px solid var(--border, #E5E7EB);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.room-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary, #A2B518), var(--accent, #C9A96E));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.room-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border-color: var(--primary, #A2B518);
}
.room-preview-card:hover::before {
    opacity: 1;
}
.room-preview-card.featured {
    border-color: var(--primary, #A2B518);
    background: linear-gradient(180deg, rgba(162,181,24,0.03) 0%, var(--bg-warm, #FAFAFA) 40%);
}
.room-preview-card.featured::before {
    opacity: 1;
}
.room-preview-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(162,181,24,0.12), rgba(162,181,24,0.04));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary, #A2B518);
    margin: 0 auto 1.25rem;
    transition: all 0.3s ease;
}
.room-preview-card:hover .room-preview-icon {
    background: var(--primary, #A2B518);
    color: #fff;
    transform: scale(1.1);
}
.room-preview-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--dark, #1F383D);
    background: rgba(201,169,110,0.15);
    border: 1px solid rgba(201,169,110,0.25);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}
.room-preview-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark, #1F383D);
    margin-bottom: 0.75rem;
}
.room-preview-card p {
    font-size: 0.9rem;
    color: var(--text-light, #6B7280);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.room-preview-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-light, #6B7280);
}
.room-preview-features span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.room-preview-features i {
    color: var(--primary, #A2B518);
    font-size: 0.75rem;
}
.room-preview-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--dark, #1F383D);
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 2px solid var(--dark, #1F383D);
    transition: all 0.3s ease;
}
.room-preview-btn:hover {
    background: var(--dark, #1F383D);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31,56,61,0.2);
}
.room-preview-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}
.room-preview-btn:hover i {
    transform: translateX(3px);
}

/* CTA Section */
.cta-section {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, var(--dark, #1F383D), #2A4A50);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(162,181,24,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201,169,110,0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(162,181,24,0.02) 0%, transparent 60%);
    background-size: 100% 100%;
    pointer-events: none;
}
.cta-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(162,181,24,0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}
.cta-section .container {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.cta-section h2 {
    font-family: 'Lora', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #fff;
    margin-bottom: 1rem;
}
.cta-section p {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary, #A2B518), #8FA015);
    color: var(--dark, #1F383D);
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(162,181,24,0.25);
}
.btn-cta:hover {
    background: linear-gradient(135deg, var(--accent, #C9A96E), #b8985e);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201,169,110,0.35);
}
.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: #fff;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}
.btn-cta-outline:hover {
    border-color: var(--accent, #C9A96E);
    color: var(--accent, #C9A96E);
    transform: translateY(-3px);
}

/* Scroll Animations */
.anim-hero {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUp 0.8s ease-out forwards;
}
.hero-badge.anim-hero { animation-delay: 0.2s; }
.hero-section h1.anim-hero { animation-delay: 0.4s; }
.hero-subtitle.anim-hero { animation-delay: 0.6s; }
.hero-search.anim-hero { animation-delay: 0.7s; }

.anim-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.anim-fade.in-view {
    opacity: 1;
    transform: translateY(0);
}
.stats-grid .stat-item.anim-fade:nth-child(1) { transition-delay: 0s; }
.stats-grid .stat-item.anim-fade:nth-child(2) { transition-delay: 0.1s; }
.stats-grid .stat-item.anim-fade:nth-child(3) { transition-delay: 0.2s; }
.stats-grid .stat-item.anim-fade:nth-child(4) { transition-delay: 0.3s; }

.rooms-preview-grid .room-preview-card.anim-fade:nth-child(1) { transition-delay: 0s; }
.rooms-preview-grid .room-preview-card.anim-fade:nth-child(2) { transition-delay: 0.15s; }
.rooms-preview-grid .room-preview-card.anim-fade:nth-child(3) { transition-delay: 0.3s; }

.features-grid .feature-card.anim-fade:nth-child(1) { transition-delay: 0s; }
.features-grid .feature-card.anim-fade:nth-child(2) { transition-delay: 0.1s; }
.features-grid .feature-card.anim-fade:nth-child(3) { transition-delay: 0.2s; }
.features-grid .feature-card.anim-fade:nth-child(4) { transition-delay: 0.3s; }

/* Keyframes */
@keyframes scrollLeftAnimation {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes fadeInItem {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.4; }
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes floatShape1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 20px) scale(1.05); }
    66% { transform: translate(15px, -10px) scale(0.95); }
}
@keyframes floatShape2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(25px, -15px) scale(1.08); }
    66% { transform: translate(-10px, 20px) scale(0.92); }
}
@keyframes floatShape3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -25px) rotate(180deg); }
}
@keyframes floatShape4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-15px, 15px) scale(1.2); }
}

#gallery-fallback-message {
    display: none;
    color: var(--text-light);
    padding: 2rem;
    background: var(--bg-warm);
    border-radius: 12px;
}
#booking-error-message {
    color: #FCA5A5;
    background: rgba(220,38,38,0.1);
    border: 1px solid rgba(220,38,38,0.2);
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    display: none;
    font-size: 0.85rem;
    text-align: center;
}

/* Responsive */
@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-section {
        background-attachment: fixed;
    }
    .search-bar-container {
        flex-wrap: nowrap;
        padding: 1.5rem 2.5rem;
    }
    .scrolling-gallery-item img {
        width: 450px;
        height: 400px;
    }
    .scrolling-gallery-wrapper {
        min-height: 430px;
    }
    .rooms-preview-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}
@media (max-width: 767px) {
    .hero-section {
        min-height: 90vh;
        background-attachment: scroll;
    }
    .search-bar-container {
        padding: 0.75rem;
        border-radius: 14px;
        flex-direction: column;
        flex-wrap: nowrap;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        gap: 0.75rem;
    }
    .search-bar-input-group {
        flex: none;
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }
    .search-bar-input-group input,
    .search-bar-input-group select {
        padding: 0.65rem 0.75rem;
        font-size: 0.85rem;
    }
    #search-availability-button {
        width: 100%;
        height: 48px;
    }
    .search-bar-button-group {
        width: 100%;
    }
    .feature-card {
        padding: 1.5rem;
    }
    .scrolling-gallery-item img {
        width: 280px;
        height: 260px;
    }
    .scrolling-gallery-wrapper {
        min-height: 290px;
    }
    .rooms-preview-card {
        padding: 2rem 1.5rem;
    }
}
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .stat-number {
        font-size: 1.6rem;
    }
    .cta-section {
        padding: 4rem 1.5rem;
    }
    .rooms-preview-features {
        flex-direction: column;
        gap: 0.5rem;
    }
}
