/* ============================================
   TULIZORELI LUXURY HOTEL — COMPLETE STYLESHEET
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0b0b0b;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --red-main: #ff1e1e;
    --red-deep: #b30000;
    --red-glow: rgba(255, 30, 30, 0.3);
    --red-glow-strong: rgba(255, 30, 30, 0.5);
    --white: #ffffff;
    --white-soft: #f5f5f5;
    --white-muted: rgba(255, 255, 255, 0.7);
    --white-dim: rgba(255, 255, 255, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-bg-strong: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-border-strong: rgba(255, 255, 255, 0.18);
    --blur: 20px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(255, 30, 30, 0.15);
    --shadow-glow-strong: 0 0 60px rgba(255, 30, 30, 0.25);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

/* === SCROLL PROGRESS === */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--red-main), var(--red-deep));
    z-index: 10000;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--red-glow);
}

/* === CURSOR GLOW === */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 30, 30, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    .cursor-glow {
        display: block;
    }
}

/* === CONTAINER === */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px);
    width: 100%;
}

.container-sm {
    max-width: 900px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
}

.text-red {
    color: var(--red-main);
}

.text-white {
    color: var(--white);
}

.text-white-soft {
    color: var(--white-muted);
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled,
.navbar-solid {
    background: rgba(11, 11, 11, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-icon {
    color: var(--red-main);
    font-size: 1.5rem;
    text-shadow: 0 0 20px var(--red-glow);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--white);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.5vw, 32px);
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-main);
    transition: var(--transition);
    box-shadow: 0 0 10px var(--red-glow);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--red-main);
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    box-shadow: 0 0 20px var(--red-glow);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--red-deep);
    box-shadow: 0 0 30px var(--red-glow-strong);
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(380px, 85vw);
        height: 100vh;
        background: rgba(11, 11, 11, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1rem;
    }
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red-main), var(--red-deep));
    color: var(--white);
    box-shadow: 0 4px 20px var(--red-glow);
}

.btn-primary:hover {
    box-shadow: 0 8px 40px var(--red-glow-strong);
    transform: translateY(-3px);
}

.btn-glass {
    background: var(--glass-bg-strong);
    color: var(--white);
    border: 1px solid var(--glass-border-strong);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--red-main);
    border: 1px solid var(--red-main);
}

.btn-outline:hover {
    background: var(--red-main);
    color: var(--white);
    box-shadow: 0 0 20px var(--red-glow);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 0.95rem;
}

.btn-full {
    width: 100%;
}

/* Ripple effect */
.btn-ripple .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-anim 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-anim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* === GLASS CARDS === */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    overflow: hidden;
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    z-index: 1;
}

.glass-card-dark {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
}

.glass-card-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* === SECTIONS === */
.section {
    padding: clamp(60px, 10vw, 120px) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 80px);
}

.section-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red-main);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid rgba(255, 30, 30, 0.3);
    border-radius: 100px;
    background: rgba(255, 30, 30, 0.08);
}

.section-tag-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
    color: var(--white);
}

.section-desc {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--white-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-cta {
    text-align: center;
    margin-top: clamp(30px, 4vw, 50px);
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11, 11, 11, 0.4) 0%,
        rgba(11, 11, 11, 0.6) 50%,
        rgba(11, 11, 11, 0.95) 100%
    );
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 30, 30, 0.08) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 20px 80px;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white-muted);
    margin-bottom: 24px;
}

.badge-star {
    color: #ffc107;
    letter-spacing: 2px;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--white-muted);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 4vw, 48px);
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

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

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--red-main);
    text-shadow: 0 0 20px var(--red-glow);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--white-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border-strong);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.hero-scroll-indicator span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white-dim);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--red-main), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Floating elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.float-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 30, 30, 0.06) 0%, transparent 70%);
    top: 20%;
    right: -100px;
    animation: float-motion 8s ease-in-out infinite;
}

.float-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    bottom: 30%;
    left: -80px;
    animation: float-motion 10s ease-in-out infinite reverse;
}

.float-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 30, 30, 0.04) 0%, transparent 70%);
    top: 40%;
    left: 20%;
    animation: float-motion 12s ease-in-out infinite;
}

@keyframes float-motion {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -20px); }
    66% { transform: translate(-20px, 20px); }
}

/* === PAGE HERO === */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-sm {
    min-height: 50vh;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

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

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 20px 60px;
}

.page-hero-title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.page-hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--white-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* === ROOMS SECTION (Home) === */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.room-card {
    transition: all 0.4s ease;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 30, 30, 0.2);
}

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

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

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

.room-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(11, 11, 11, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    backdrop-filter: blur(10px);
}

.badge-gold { border-color: rgba(255, 193, 7, 0.4); color: #ffc107; }
.badge-red { border-color: rgba(255, 30, 30, 0.4); color: var(--red-main); }
.badge-pink { border-color: rgba(255, 105, 135, 0.4); color: #ff6987; }

.room-price-tag {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 8px 16px;
    background: rgba(11, 11, 11, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--red-main);
    backdrop-filter: blur(10px);
    text-shadow: 0 0 10px var(--red-glow);
}

.room-price-tag span {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--white-dim);
}

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

.room-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.room-card-content p {
    font-size: 0.9rem;
    color: var(--white-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: var(--white-muted);
}

/* === ROOMS DETAIL (Rooms Page) === */
.rooms-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.room-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.room-detail-card:nth-child(even) {
    direction: rtl;
}

.room-detail-card:nth-child(even) > * {
    direction: ltr;
}

.room-detail-image {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

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

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

.room-detail-content {
    padding: clamp(24px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.room-detail-header h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.room-size {
    font-size: 0.85rem;
    color: var(--white-dim);
    margin-top: 4px;
}

.room-detail-price {
    text-align: right;
    white-space: nowrap;
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--red-main);
    text-shadow: 0 0 15px var(--red-glow);
}

.price-period {
    font-size: 0.8rem;
    color: var(--white-dim);
}

.room-detail-desc {
    font-size: 0.95rem;
    color: var(--white-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.room-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}

.room-amenity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--white-muted);
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.amenity-icon-sm {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .room-detail-card,
    .room-detail-card:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .room-detail-image {
        min-height: 260px;
    }
}

/* === ABOUT === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 80px);
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 4px solid var(--bg-primary);
    box-shadow: var(--shadow-soft);
}

.about-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-floating-card {
    position: absolute;
    top: -20px;
    left: -20px;
    padding: 20px 28px;
    text-align: center;
    background: rgba(255, 30, 30, 0.15);
    border-color: rgba(255, 30, 30, 0.3);
}

.about-years {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--red-main);
    text-shadow: 0 0 15px var(--red-glow);
}

.about-floating-card span:last-child {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white-muted);
}

.about-content .section-tag {
    display: inline-block;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-lead {
    font-size: 1.05rem;
    color: var(--white-muted);
    margin-bottom: 16px;
    line-height: 1.8;
    font-style: italic;
}

.about-content > p {
    font-size: 0.95rem;
    color: var(--white-dim);
    margin-bottom: 12px;
    line-height: 1.8;
}

.about-features {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-feature-icon {
    color: var(--red-main);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
    text-shadow: 0 0 10px var(--red-glow);
}

.about-feature strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.about-feature span {
    font-size: 0.85rem;
    color: var(--white-dim);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 70%;
        margin-top: -40px;
        margin-left: auto;
    }

    .about-floating-card {
        top: auto;
        bottom: -20px;
        left: 20px;
    }

    .about-content .section-title {
        text-align: center;
    }
}

/* === AMENITIES === */
.section-amenities {
    position: relative;
}

.amenities-bg {
    position: absolute;
    inset: 0;
}

.amenities-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenities-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11, 11, 11, 0.92) 0%,
        rgba(11, 11, 11, 0.85) 50%,
        rgba(11, 11, 11, 0.95) 100%
    );
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
}

.amenity-card {
    padding: clamp(24px, 3vw, 36px);
    transition: all 0.4s ease;
    text-align: center;
}

.amenity-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 30, 30, 0.2);
    box-shadow: var(--shadow-glow);
}

.amenity-icon {
    margin-bottom: 20px;
}

.amenity-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.amenity-card p {
    font-size: 0.9rem;
    color: var(--white-muted);
    line-height: 1.7;
}

/* === GALLERY PREVIEW (Home) === */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    min-height: 200px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 11, 11, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--white);
}

.gallery-item-large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.gallery-item-large img {
    min-height: 416px;
}

@media (max-width: 768px) {
    .gallery-preview-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item-large {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .gallery-item-large img {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .gallery-preview-grid {
        grid-template-columns: 1fr;
    }
}

/* === GALLERY PAGE === */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.gallery-filter {
    padding: 10px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    color: var(--white-muted);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter:hover,
.gallery-filter.active {
    background: var(--red-main);
    border-color: var(--red-main);
    color: var(--white);
    box-shadow: 0 0 20px var(--red-glow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 260px;
    gap: 16px;
    grid-auto-flow: dense;
}

.gallery-grid-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-grid-item:hover {
    box-shadow: var(--shadow-glow);
}

.gallery-grid-item:hover img {
    transform: scale(1.08);
}

.gallery-grid-tall {
    grid-row: span 2;
}

.gallery-grid-wide {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-grid-wide {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .gallery-grid-tall {
        grid-row: span 1;
    }
}

/* === LIGHTBOX === */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-caption {
    text-align: center;
    padding: 16px 0;
    font-size: 0.9rem;
    color: var(--white-muted);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-close {
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--red-main);
    border-color: var(--red-main);
}

/* === TESTIMONIALS === */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: clamp(30px, 5vw, 60px);
    text-align: center;
    flex-shrink: 0;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--white-muted);
    line-height: 1.8;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--red-main);
    box-shadow: 0 0 15px var(--red-glow);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
    color: var(--white);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--white-dim);
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--red-main);
    border-color: var(--red-main);
    box-shadow: 0 0 20px var(--red-glow);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--red-main);
    box-shadow: 0 0 10px var(--red-glow);
    transform: scale(1.2);
}

/* === CTA BANNER === */
.section-cta-banner {
    position: relative;
    padding: clamp(80px, 12vw, 160px) 0;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
}

.cta-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(11, 11, 11, 0.9) 0%,
        rgba(179, 0, 0, 0.3) 50%,
        rgba(11, 11, 11, 0.9) 100%
    );
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-banner-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.cta-banner-text {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--white-muted);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.cta-banner-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === BOOKING === */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: start;
}

.booking-info {
    padding: clamp(24px, 3vw, 36px);
    position: sticky;
    top: 100px;
}

.booking-info h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: var(--white);
}

.booking-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.booking-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.booking-info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.booking-info-item strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.booking-info-item p {
    font-size: 0.85rem;
    color: var(--white-dim);
    line-height: 1.6;
}

.booking-form-wrapper {
    padding: clamp(30px, 4vw, 50px);
}

.booking-form-wrapper h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 8px;
}

.booking-form-subtitle {
    font-size: 0.9rem;
    color: var(--white-dim);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-info {
        position: static;
    }
}

/* === FORMS === */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--white-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red-main);
    box-shadow: 0 0 0 3px rgba(255, 30, 30, 0.15), 0 0 20px rgba(255, 30, 30, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23999' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-error {
    display: none;
    font-size: 0.75rem;
    color: var(--red-main);
    margin-top: 6px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--red-main);
    box-shadow: 0 0 0 3px rgba(255, 30, 30, 0.15);
}

.form-group.error .form-error {
    display: block;
}

/* === BOOKING SUCCESS === */
.booking-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: var(--white);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
}

.booking-success h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.booking-success p {
    font-size: 0.95rem;
    color: var(--white-muted);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* === BLOG === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.blog-card {
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.blog-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--red-main);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.blog-card-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--white-dim);
    margin-bottom: 12px;
}

.blog-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-content p {
    font-size: 0.9rem;
    color: var(--white-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--red-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-read-more:hover {
    color: var(--white);
    text-shadow: 0 0 10px var(--red-glow);
}

@media (max-width: 480px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* === CONTACT === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    padding: 24px;
    text-align: center;
}

.contact-icon {
    margin-bottom: 16px;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-info-card p {
    font-size: 0.85rem;
    color: var(--white-muted);
    line-height: 1.7;
}

.contact-form-wrapper {
    padding: clamp(30px, 4vw, 50px);
}

.contact-form-wrapper h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 24px;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* === FAQ === */
.faq-category {
    margin-bottom: 40px;
}

.faq-category-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--red-main);
}

.faq-item {
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--red-main);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--white-dim);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--red-main);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--white-muted);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--red-main);
    text-decoration: underline;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white-muted);
}

/* === LEGAL === */
.legal-section {
    padding-top: 140px;
}

.legal-header {
    text-align: center;
    margin-bottom: 40px;
}

.legal-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 0.85rem;
    color: var(--white-dim);
}

.legal-content {
    padding: clamp(30px, 5vw, 60px);
}

.legal-content h2 {
    font-size: 1.4rem;
    margin: 32px 0 12px;
    color: var(--red-main);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.1rem;
    margin: 20px 0 8px;
    color: var(--white);
}

.legal-content p {
    font-size: 0.95rem;
    color: var(--white-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul {
    margin: 12px 0 20px 24px;
    list-style: disc;
}

.legal-content li {
    font-size: 0.9rem;
    color: var(--white-muted);
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-content a {
    color: var(--red-main);
    text-decoration: underline;
}

/* === FOOTER === */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--white-dim);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 350px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-muted);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--red-main);
    border-color: var(--red-main);
    color: var(--white);
    box-shadow: 0 0 20px var(--red-glow);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-col ul li a {
    font-size: 0.9rem;
    color: var(--white-dim);
}

.footer-col ul li a:hover {
    color: var(--red-main);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-list li svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-contact-list li span {
    font-size: 0.85rem;
    color: var(--white-dim);
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--white-dim);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: var(--white-dim);
}

.footer-bottom-links a:hover {
    color: var(--red-main);
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* === ANIMATIONS === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* === RESPONSIVE === */
@media (max-width: 480px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    .hero-title {
        font-size: 5.5rem;
    }
}

/* === INPUT DATE CHROME FIX === */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* === SELECTION === */
::selection {
    background: var(--red-main);
    color: var(--white);
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 30, 30, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red-main);
}

/* === HIDDEN ITEMS ON FILTER === */
.gallery-grid-item.hidden {
    display: none;
}