/**
 * Components CSS — Premium Luxury Hotel Design
 * Boutique hotel aesthetic with glassmorphism, cinematic overlays, and refined typography
 *
 * Brand: #bf1e2e (Red) | Primary Dark: #1A1A2E
 *
 * @package Hotel74
 */

/* ══════════════════════════════════
   Buttons — Luxury with Shine & Lift
   ══════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.85rem 2.25rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-height: 48px;
    letter-spacing: 0.03em;
}

/* Shine sweep on hover */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 25%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.08) 75%,
        transparent 100%
    );
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.btn:hover::before {
    left: 100%;
}

/* Primary — Brand Red */
.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(191, 30, 46, 0.25);
}

.btn-primary:hover {
    background-color: #a01825;
    border-color: #a01825;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(191, 30, 46, 0.45), 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(191, 30, 46, 0.35);
}

/* Secondary — Outlined */
.btn-secondary {
    background-color: transparent;
    color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 2px 10px rgba(191, 30, 46, 0.08);
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(191, 30, 46, 0.35);
}

/* Dark */
.btn-dark {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(26, 26, 46, 0.25);
}

.btn-dark:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(26, 26, 46, 0.4);
}

/* White */
.btn-white {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background-color: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Ghost */
.btn-ghost {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Sizes */
.btn-sm {
    padding: 0.55rem 1.4rem;
    font-size: 0.8125rem;
    min-height: 36px;
}

.btn-lg {
    padding: 1.1rem 2.75rem;
    font-size: 1.0625rem;
    min-height: 56px;
}

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

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}


/* ══════════════════════════════════
   Header — Tall, Transparent, Glass-morphism
   ══════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 100px;
    display: flex;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Transparent on hero — gradient overlay for depth */
.site-header--transparent {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        transparent 100%
    );
    color: var(--white);
}

/* Scrolled — strong glassmorphism */
.site-header--scrolled {
    background: rgba(26, 26, 46, 0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow:
        0 4px 40px rgba(0, 0, 0, 0.5),
        0 1px 0 rgba(255, 255, 255, 0.06) inset;
    color: var(--white);
    height: 80px;
}

/* Solid — fallback for inner pages */
.site-header--solid {
    background: var(--primary);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
    color: var(--white);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-2xl);
}

/* Logo — large with glow */
.site-logo {
    flex-shrink: 0;
    position: relative;
}

.site-logo a {
    display: flex;
    align-items: center;
}

.site-logo img,
.custom-logo {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.35)) brightness(1.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header--scrolled .site-logo img,
.site-header--scrolled .custom-logo {
    height: 52px;
}

.site-logo img:hover,
.custom-logo:hover {
    filter: drop-shadow(0 4px 20px rgba(191, 30, 46, 0.55)) brightness(1.2);
    transform: scale(1.05);
}

.site-logo-text {
    font-family: var(--font-accent);
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--white);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header--scrolled .site-logo-text {
    font-size: 1.6rem;
}

/* Navigation — uppercase, elegant */
.nav-primary {
    display: none;
}

.nav-primary .menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-primary .menu-item a {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: var(--space-sm) var(--space-xs);
    position: relative;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Elegant underline from center */
.nav-primary .menu-item a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(191, 30, 46, 0.3);
}

.nav-primary .menu-item a:hover::after,
.nav-primary .menu-item.current-menu-item a::after {
    width: 100%;
}

.nav-primary .menu-item a:hover {
    color: var(--accent);
    text-shadow: 0 0 25px rgba(191, 30, 46, 0.35);
}

.nav-primary .menu-item.current-menu-item a {
    color: var(--accent);
}

/* Dropdown */
.nav-primary .has-dropdown {
    position: relative;
}

.nav-primary .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    min-width: 230px;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-sm) 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.nav-primary .has-dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-primary .sub-menu .menu-item a {
    display: block;
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
    border-radius: 0;
}

.nav-primary .sub-menu .menu-item a:hover {
    background: rgba(191, 30, 46, 0.12);
    color: var(--accent);
}

.nav-primary .sub-menu .menu-item a::after {
    display: none;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Booking CTA — red, rounded-full, glowing, pulse */
.header-btn-booking {
    display: none;
}

.header-btn-booking {
    padding: 0.7rem 1.8rem !important;
    font-size: 0.8125rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    border-radius: var(--radius-md) !important;
    box-shadow: 0 4px 15px rgba(191, 30, 46, 0.35);
}

.header-btn-booking:hover {
    box-shadow: 0 6px 30px rgba(191, 30, 46, 0.65) !important;
    transform: translateY(-2px) !important;
}

@keyframes bookingPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(191, 30, 46, 0.45);
    }
    50% {
        box-shadow: 0 4px 35px rgba(191, 30, 46, 0.7), 0 0 60px rgba(191, 30, 46, 0.2);
    }
}

/* Dark mode toggle */
.dark-mode-toggle {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    color: currentColor;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.dark-mode-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    transform: rotate(20deg) scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.dark-mode-toggle svg {
    width: 18px;
    height: 18px;
}

/* Hamburger */
.hamburger {
    width: 42px;
    height: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 1001;
    border-radius: var(--radius-full);
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ══════════════════════════════════
   Mobile Menu Overlay
   ══════════════════════════════════ */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(20, 20, 38, 0.98);
    display: flex;
    flex-direction: column;
    padding: 100px 28px 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    color: #ffffff;
    overflow-y: auto;
}

.mobile-menu--open {
    opacity: 1;
    visibility: visible;
}

/* Logo area */
.mobile-menu__logo {
    text-align: center;
    margin-bottom: 36px;
}

.mobile-menu__logo img,
.mobile-menu__logo .custom-logo {
    height: 48px;
    width: auto;
    margin: 0 auto;
    filter: brightness(10);
}

/* Nav links — list style */
.mobile-menu__nav {
    flex: 1;
}

.mobile-menu__list,
.mobile-menu .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.mobile-menu__list li,
.mobile-menu .menu-item {
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin: 0;
    opacity: 1;
    transform: none;
}

.mobile-menu__list li a,
.mobile-menu .menu-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 4px;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 500;
    color: #ffffff !important;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

.mobile-menu__list li a::after,
.mobile-menu .menu-item a::after {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.25)' stroke-width='2'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.mobile-menu__list li a:active,
.mobile-menu .menu-item a:active {
    color: #bf1e2e !important;
}

/* WhatsApp CTA */
.mobile-menu__cta {
    margin: 28px 0;
}

.mobile-menu__cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: #25D366;
    color: #ffffff !important;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
}

.mobile-menu__cta-btn:active {
    background: #1da851;
}

/* Footer info */
.mobile-menu__footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.mobile-menu__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.875rem;
    text-decoration: none;
    margin-bottom: 10px;
}

.mobile-menu__address {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    justify-content: center;
    color: rgba(255,255,255,0.35);
    font-size: 0.6875rem;
    line-height: 1.4;
    margin: 0;
}

.mobile-menu__address svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.mobile-menu-footer a {
    color: #ffffff !important;
}

.mobile-menu-footer a {
    color: var(--accent);
    transition: color 0.3s ease;
}


/* ══════════════════════════════════
   Cards — Refined with Subtle Border & Strong Hover
   ══════════════════════════════════ */
.card {
    background: var(--white);
    border-radius: var(--radius-xl, 16px);
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.16),
        0 8px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(191, 30, 46, 0.06);
}

/* Room Card */
.room-card {
    position: relative;
}

.room-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

.room-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Subtle overlay on hover */
.room-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 26, 46, 0.45) 0%,
        rgba(26, 26, 46, 0.1) 40%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.room-card:hover .room-card__image::after {
    opacity: 1;
}

/* Badge with shadow */
.room-card__badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 6px 14px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-sm);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(191, 30, 46, 0.35);
}

.room-card__body {
    padding: var(--space-lg) var(--space-xl);
}

.room-card__title {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.room-card__excerpt {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: var(--space-lg);
}

.room-card__meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.room-card__meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.room-card__meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.room-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-color);
}

/* Price in red, bold */
.room-card__price {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 800;
    letter-spacing: -0.01em;
}

.room-card__price span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 400;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl, 16px);
    padding: var(--space-xl);
    color: var(--white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}


/* ══════════════════════════════════
   Forms — Focus Glow (Red Ring)
   ══════════════════════════════════ */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.8rem 1.1rem;
    font-size: 0.9375rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(191, 30, 46, 0.12), 0 2px 8px rgba(191, 30, 46, 0.08);
    background: #fffbfb;
}

.form-input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

/* Dark form variant */
.form-input--dark,
.form-select--dark {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--white);
}

.form-input--dark:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(191, 30, 46, 0.2), 0 2px 8px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.12);
}

.form-input--dark::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

/* Inline form */
.form-inline {
    display: flex;
    gap: var(--space-sm);
}

.form-inline .form-input {
    flex: 1;
}


/* ══════════════════════════════════
   Hero — Full Viewport, Cinematic
   ══════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.8s ease;
}

.hero-slide--active {
    opacity: 1;
}

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

/* Cinematic overlay — vignette + gradient, NOT too dark */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        /* Vignette — dark edges, lighter center */
        radial-gradient(ellipse at center, rgba(26, 26, 46, 0.05) 0%, rgba(26, 26, 46, 0.5) 100%),
        /* Top-to-bottom gradient for text readability */
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.08) 35%,
            rgba(26, 26, 46, 0.35) 70%,
            rgba(26, 26, 46, 0.7) 100%
        );
    z-index: 1;
}

/* Film grain texture */
.hero-grain {
    display: none; /* Removed for clean modern look */
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noise)" opacity="0.035"/%3E%3C/svg%3E');
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 0 var(--space-xl);
    max-width: 1000px;
}

.hero-logo {
    margin: 0 auto var(--space-lg);
    width: 80px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

/* Title — large, bold, text-shadow for depth. Sized to fit rotating alt titles on 2 lines. */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4.6vw, 3.75rem);
    color: var(--white);
    margin-bottom: var(--space-lg);
    line-height: 1.08;
    text-shadow:
        0 4px 30px rgba(0, 0, 0, 0.55),
        0 2px 6px rgba(0, 0, 0, 0.35),
        0 0 80px rgba(0, 0, 0, 0.18);
    letter-spacing: 0.005em;
    font-weight: 700;
}

/* Subtitle — elegant italic, slightly transparent */
.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--space-lg);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-style: normal;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-2xl);
    font-weight: 400;
    letter-spacing: 0.02em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Rotating title container — stacked absolute, crossfade */
.hero-title-rotator {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto var(--space-md);
    /* Fallback min-height before JS measures; JS then overrides via inline style */
    min-height: calc(clamp(2.75rem, 5.5vw, 4.5rem) * 1.1 * 2.2);
}

.hero-title-rotator .hero-title {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: 0;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.8s cubic-bezier(.2,.7,.3,1), transform 0.8s cubic-bezier(.2,.7,.3,1);
    pointer-events: none;
}

.hero-title-rotator .hero-title.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero CTA buttons */
.hero-content .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 0.9375rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(191, 30, 46, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.hero-content .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(191, 30, 46, 0.55);
    transform: translateY(-2px);
}

.hero-content .btn-ghost {
    padding: 1rem 2.5rem;
    font-size: 0.9375rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.hero-content .btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

.hero-scroll {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-scroll svg {
    margin: var(--space-sm) auto 0;
    animation: bounceArrow 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(8px); opacity: 1; }
}


/* ══════════════════════════════════
   Booking Bar — Strong Glassmorphism
   ══════════════════════════════════ */
.booking-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    padding: var(--space-xl) var(--space-lg);
}

.booking-bar__inner {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-xl, 16px);
    padding: var(--space-xl) var(--space-2xl);
    display: flex;
    align-items: flex-end;
    gap: var(--space-lg);
    box-shadow:
        0 12px 50px rgba(0, 0, 0, 0.35),
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 -1px 0 rgba(0, 0, 0, 0.1) inset;
}

.booking-bar__field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.booking-bar__label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.6);
}

/* Inner shadow inputs */
.booking-bar__input {
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) inset;
}

.booking-bar__input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(191, 30, 46, 0.2), 0 2px 10px rgba(0, 0, 0, 0.15) inset;
}

.booking-bar__input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Booking bar CTA */
.booking-bar .btn-primary {
    border-radius: var(--radius-md);
    padding: 0.8rem 2.25rem;
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.booking-bar__submit {
    flex-shrink: 0;
}


/* ══════════════════════════════════
   Amenity Icons Grid — White Cards with Shadow
   ══════════════════════════════════ */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: var(--space-xl);
}

.amenity-item {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-xl, 16px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.amenity-item:hover {
    box-shadow: 0 12px 40px rgba(191, 30, 46, 0.12), 0 4px 15px rgba(0, 0, 0, 0.06);
    transform: translateY(-6px);
}

/* Icon in a colored circle — red bg on hover */
.amenity-item__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    color: var(--accent);
    background: rgba(191, 30, 46, 0.08);
    border-radius: var(--radius-full);
    padding: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.amenity-item:hover .amenity-item__icon {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.12);
    box-shadow: 0 6px 20px rgba(191, 30, 46, 0.3);
}

.amenity-item__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: var(--space-sm);
    letter-spacing: 0.01em;
}


/* ══════════════════════════════════
   Testimonials — Large Italic Quotes
   ══════════════════════════════════ */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

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

.testimonial-card {
    flex: 0 0 100%;
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
}

/* Large italic quote */
.testimonial-card__quote {
    font-family: var(--font-subheading);
    font-style: italic;
    font-size: 1.6rem;
    line-height: 1.85;
    margin-bottom: var(--space-xl);
    position: relative;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-dark);
}

/* Big decorative quote mark */
.testimonial-card__quote::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 7rem;
    color: var(--accent);
    opacity: 0.18;
    position: absolute;
    top: -3rem;
    left: -2rem;
    line-height: 1;
    pointer-events: none;
}

/* Author bold */
.testimonial-card__author {
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--primary);
    letter-spacing: 0.02em;
}

/* Source in red */
.testimonial-card__source {
    font-size: 0.875rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 4px;
}

/* Star rating */
.star-rating {
    display: inline-flex;
    gap: 3px;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.star-rating svg {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 1px 3px rgba(191, 30, 46, 0.35));
}

/* Carousel navigation — clean */
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.carousel-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.carousel-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(191, 30, 46, 0.3);
    transform: translateY(-2px);
}

.carousel-dots {
    display: flex;
    gap: var(--space-sm);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: #d4d4d4;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
    padding: 0;
}

.carousel-dot--active {
    background: var(--accent);
    width: 30px;
    box-shadow: 0 2px 8px rgba(191, 30, 46, 0.3);
}


/* ══════════════════════════════════
   CTA Section — Dramatic Gradient Overlay
   ══════════════════════════════════ */
.cta-section {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.cta-section__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Dramatic gradient — dark blue to red */
.cta-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.9) 0%,
        rgba(26, 26, 46, 0.75) 40%,
        rgba(191, 30, 46, 0.75) 100%
    );
}

.cta-section__content {
    position: relative;
    z-index: 2;
    padding: var(--space-4xl) var(--space-lg);
    max-width: 750px;
}

/* Large heading with text-shadow */
.cta-section__title {
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    color: var(--white);
    margin-bottom: var(--space-md);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}

.cta-section__text {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-xl);
    font-size: 1.0625rem;
    line-height: 1.7;
}


/* ══════════════════════════════════
   Gallery
   ══════════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-item__overlay svg {
    width: 32px;
    height: 32px;
    color: var(--white);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* Lightbox — dark with blur */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox--open {
    opacity: 1;
    visibility: visible;
}

.lightbox__image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    color: var(--white);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.lightbox__close {
    top: var(--space-lg);
    right: var(--space-lg);
}

.lightbox__prev {
    left: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__prev:hover {
    transform: translateY(-50%) scale(1.05);
}

.lightbox__next {
    right: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__next:hover {
    transform: translateY(-50%) scale(1.05);
}

.lightbox__counter {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}


/* ══════════════════════════════════
   Footer — Rich Dark Gradient, Red Top Border
   ══════════════════════════════════ */
.site-footer {
    background: linear-gradient(180deg, #141430 0%, #0d0d1e 50%, #08081a 100%);
    color: #cdc5c0;
    padding-top: var(--space-4xl);
    border-top: 3px solid var(--accent);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(191, 30, 46, 0.5), transparent);
}

.footer-ornament {
    text-align: center;
    color: var(--accent);
    margin-bottom: var(--space-3xl);
    opacity: 0.4;
}

/* Clean 4-column grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col__logo {
    margin-bottom: var(--space-lg);
}

.footer-col__logo img,
.footer-col__logo .custom-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.4)) brightness(1.2);
}

.footer-col__about {
    font-size: 0.875rem;
    line-height: 1.75;
    margin-bottom: var(--space-lg);
    color: rgba(232, 220, 200, 0.6);
}

/* Footer widget titles */
.footer-widget__title {
    font-family: var(--font-accent);
    font-size: 0.8125rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-lg);
    font-weight: 700;
}

.footer-widget a {
    display: block;
    padding: 6px 0;
    font-size: 0.875rem;
    color: rgba(232, 220, 200, 0.6);
    transition: all 0.3s ease;
}

.footer-widget a:hover {
    color: var(--accent);
    padding-left: 6px;
}

/* Social icons with hover glow */
.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    color: rgba(232, 220, 200, 0.7);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 20px rgba(191, 30, 46, 0.4), 0 0 30px rgba(191, 30, 46, 0.15);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* Footer bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) 0;
    font-size: 0.8125rem;
    color: rgba(232, 220, 200, 0.4);
}

.footer-bottom a {
    color: rgba(232, 220, 200, 0.5);
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: rgba(232, 220, 200, 0.8);
}

.footer-credit {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-credit__link {
    display: inline-flex;
    align-items: center;
}

.footer-credit__logo {
    height: 22px;
    width: auto;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.footer-credit__logo:hover {
    opacity: 0.9;
}


/* ══════════════════════════════════
   Breadcrumbs — Clean
   ══════════════════════════════════ */
.breadcrumbs {
    padding: var(--space-xs) 0;
    font-size: 0.8125rem;
}

/* Breadcrumbs on dark backgrounds */
.site-header--solid + * .breadcrumbs,
[style*="background: var(--primary)"] .breadcrumbs {
    padding: 0;
}

[style*="background: var(--primary)"] .breadcrumbs__item a,
[style*="background: var(--primary)"] .breadcrumbs__item::after {
    color: rgba(255,255,255,0.6);
}

[style*="background: var(--primary)"] .breadcrumbs__item--current {
    color: rgba(255,255,255,0.9);
}

[style*="background: var(--primary)"] .breadcrumbs__item a:hover {
    color: var(--accent);
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-sm);
}

.breadcrumbs__item::after {
    content: '/';
    margin-left: var(--space-sm);
    color: var(--text-muted);
    opacity: 0.5;
}

.breadcrumbs__item:last-child::after {
    display: none;
}

.breadcrumbs__item a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.breadcrumbs__item a:hover {
    color: var(--accent);
}

.breadcrumbs__item--current {
    color: var(--text-dark);
    font-weight: 600;
}


/* ══════════════════════════════════
   Pagination — Styled
   ══════════════════════════════════ */
.pagination,
.nav-links {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-2xl);
}

.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: var(--white);
}

.page-numbers:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(191, 30, 46, 0.25);
}

.page-numbers.current {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(191, 30, 46, 0.3);
    font-weight: 700;
}


/* ══════════════════════════════════
   Page Banner
   ══════════════════════════════════ */
.page-banner {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1A1A2E 0%, #0d0d1a 50%, #2a1015 100%);
    overflow: hidden;
    margin-top: var(--header-height);
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(191, 30, 46, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.page-banner__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    transition: transform 20s ease;
}

.page-banner:hover .page-banner__bg {
    transform: scale(1.03);
}

.page-banner__content {
    position: relative;
    z-index: 2;
}

.page-banner__title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: var(--space-sm);
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.page-banner .breadcrumbs {
    justify-content: center;
}

.page-banner .breadcrumbs__item,
.page-banner .breadcrumbs__item a,
.page-banner .breadcrumbs__item::after {
    color: var(--text-light);
}

.page-banner .breadcrumbs__item a:hover {
    color: var(--accent);
}


/* ══════════════════════════════════
   Instagram Feed
   ══════════════════════════════════ */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-xs);
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.instagram-item:hover img {
    transform: scale(1.12);
}

.instagram-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.instagram-item:hover .instagram-item__overlay {
    opacity: 1;
}

.instagram-item__overlay svg {
    width: 28px;
    height: 28px;
    color: var(--white);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}


/* ══════════════════════════════════
   Preloader
   ══════════════════════════════════ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader--hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader__logo {
    font-family: var(--font-accent);
    font-size: 2.2rem;
    color: var(--accent);
    letter-spacing: 0.25em;
    animation: preloaderPulse 1.5s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(191, 30, 46, 0.3);
}

/* ══════════════════════════════════
   Nearby Places Cards
   ══════════════════════════════════ */
.nearby-card {
    background: white;
    padding: var(--space-xl) var(--space-lg);
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.nearby-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.nearby-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(191, 30, 46, 0.06);
    border-radius: 10px;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.nearby-card__title {
    font-size: 1.0625rem;
    margin-bottom: 6px;
}

.nearby-card__desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: var(--space-md);
}

.nearby-card__distance {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(191, 30, 46, 0.06);
    padding: 4px 10px;
    border-radius: 20px;
}


/* Room amenities grid on detail page */
.room-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.room-amenity-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.room-amenity-tag:hover {
    border-color: rgba(191, 30, 46, 0.15);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.room-amenity-tag__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(191, 30, 46, 0.06);
    border-radius: 8px;
    color: var(--accent);
    flex-shrink: 0;
}

.room-amenity-tag__icon svg {
    width: 18px;
    height: 18px;
}

.room-amenity-tag__label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
}


.preloader__img {
    height: 80px;
    width: auto;
    animation: preloaderPulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(191, 30, 46, 0.3));
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.97); }
}


/* ══════════════════════════════════
   Mobile Bottom Bar
   ══════════════════════════════════ */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: #ffffff;
    padding: 8px 12px;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0,0,0,0.06);
}

.mobile-bottom-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.mobile-bottom-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 4px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #555;
    border-radius: 10px;
    transition: all 0.2s ease;
    text-align: center;
    line-height: 1.2;
}

.mobile-bottom-bar a svg {
    width: 20px;
    height: 20px;
}

.mobile-bottom-bar .btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    border-radius: 10px;
}

.mobile-bottom-bar .btn-whatsapp svg {
    color: #ffffff;
}

.mobile-bottom-bar .btn-booking-cta {
    background: var(--accent);
    color: #ffffff;
    border-radius: 10px;
}

.mobile-bottom-bar .btn-booking-cta svg {
    color: #ffffff;
}


/* ══════════════════════════════════
   Newsletter — Styled Input
   ══════════════════════════════════ */
.newsletter-form {
    display: flex;
    gap: var(--space-sm);
    max-width: 500px;
}

.newsletter-form .form-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: var(--radius-md);
}

.newsletter-form .form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .form-input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(191, 30, 46, 0.2);
}

.newsletter-form .btn {
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.newsletter-message {
    margin-top: var(--space-sm);
    font-size: 0.8125rem;
}

.newsletter-message--success {
    color: var(--success);
}

.newsletter-message--error {
    color: var(--danger);
}


/* ══════════════════════════════════
   Filter Bar & Tabs — Active State
   ══════════════════════════════════ */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    background: var(--cream-light);
    border-radius: var(--radius-xl, 16px);
    margin-bottom: var(--space-2xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.filter-bar__field {
    flex: 1;
    min-width: 160px;
}

.filter-tabs {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: var(--space-2xl);
}

.filter-tab {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1.5px solid var(--border-color);
    border-radius: 9999px;
    background: transparent;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.filter-tab:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(191, 30, 46, 0.04);
}

.filter-tab--active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(191, 30, 46, 0.25);
}


/* ══════════════════════════════════
   Room Detail Page — Sticky Sidebar
   ══════════════════════════════════ */
.room-detail {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-2xl);
    align-items: start;
}

.room-detail__sidebar {
    position: sticky;
    top: calc(var(--header-height) + var(--space-xl));
}

.room-booking-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl, 16px);
    padding: var(--space-xl) var(--space-xl);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.room-booking-card__price {
    font-family: var(--font-mono);
    font-size: 2.25rem;
    color: var(--accent);
    margin-bottom: var(--space-xs);
    font-weight: 800;
}

.room-booking-card__price span {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 400;
}

.room-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.room-stat {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--cream-light);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.room-stat:hover {
    background: rgba(191, 30, 46, 0.05);
}

.room-stat__icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

.room-stat__value {
    font-size: 0.8125rem;
    font-weight: 600;
}

.room-stat__label {
    font-size: 0.6875rem;
    color: var(--text-muted);
}

/* Room gallery slider */
.room-gallery {
    position: relative;
    border-radius: var(--radius-xl, 16px);
    overflow: hidden;
    margin-bottom: var(--space-2xl);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.room-gallery__main {
    aspect-ratio: 16 / 9;
    position: relative;
}

.room-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

/* Gallery arrows */
.room-gallery__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #111;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
    z-index: 3;
}

.room-gallery__arrow:hover {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transform: translateY(-50%) scale(1.05);
}

.room-gallery__arrow--prev {
    left: 16px;
}

.room-gallery__arrow--next {
    right: 16px;
}

/* Gallery counter */
.room-gallery__counter {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 3;
    font-family: var(--font-mono, monospace);
}

.room-gallery__thumbs {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.room-gallery__thumbs::-webkit-scrollbar {
    display: none;
}

.room-gallery__thumb {
    width: 100px;
    height: 70px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.55;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.room-gallery__thumb--active,
.room-gallery__thumb:hover {
    opacity: 1;
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(191, 30, 46, 0.2);
}

.room-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ══════════════════════════════════
   About Page — Timeline
   ══════════════════════════════════ */
.timeline {
    position: relative;
    padding: var(--space-2xl) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), rgba(191, 30, 46, 0.2));
    opacity: 0.4;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: var(--space-2xl);
    position: relative;
}

.timeline-item:nth-child(odd) {
    padding-right: 55%;
}

.timeline-item:nth-child(even) {
    padding-left: 55%;
}

.timeline-item__dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 18px;
    height: 18px;
    background: var(--accent);
    border-radius: var(--radius-full);
    transform: translateX(-50%);
    border: 3px solid var(--white);
    box-shadow: 0 2px 10px rgba(191, 30, 46, 0.3);
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-item__dot {
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 4px 15px rgba(191, 30, 46, 0.4);
}

.timeline-item__year {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--accent);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}


/* ══════════════════════════════════
   Press / Basında Biz
   ══════════════════════════════════ */
.section--press {
    padding: var(--space-4xl) 0;
    background:
        radial-gradient(ellipse at top, rgba(191, 30, 46, 0.04), transparent 60%),
        linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 100%);
    position: relative;
}

.section--press::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(191, 30, 46, 0.15), transparent);
}

.section--press .section-header__sub {
    color: var(--text-soft);
    font-size: 1rem;
    margin-top: var(--space-sm);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.press-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: var(--space-2xl) var(--space-xl) var(--space-xl);
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg, 14px);
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s cubic-bezier(.2,.7,.3,1), box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 2px 12px rgba(17, 17, 17, 0.04);
    overflow: hidden;
}

.press-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-warm));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(.2,.7,.3,1);
}

a.press-card:hover,
a.press-card:focus {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(17, 17, 17, 0.1);
    border-color: rgba(191, 30, 46, 0.15);
}

a.press-card:hover::before,
a.press-card:focus::before {
    transform: scaleX(1);
}

.press-card__quote-mark {
    color: var(--accent);
    opacity: 0.15;
    margin-bottom: var(--space-md);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

a.press-card:hover .press-card__quote-mark {
    opacity: 0.35;
    transform: translateY(-2px);
}

.press-card__title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-dark);
    margin: 0 0 var(--space-lg);
    flex-grow: 1;
    letter-spacing: -0.005em;
}

.press-card__meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
    font-size: 0.8125rem;
    color: var(--text-soft);
    letter-spacing: 0.02em;
}

.press-card__source {
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
}

.press-card__dot {
    opacity: 0.4;
}

.press-card__date {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
}

.press-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: var(--space-md);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.03em;
    transition: gap 0.3s ease;
}

a.press-card:hover .press-card__link {
    gap: 10px;
}

/* Press responsive */
@media (max-width: 991px) {
    .press-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 639px) {
    .press-grid {
        grid-template-columns: 1fr;
    }
    .press-card {
        padding: var(--space-xl) var(--space-lg);
    }
    .press-card__title {
        font-size: 1.25rem;
    }
}


/* ══════════════════════════════════
   Animated Counters
   ══════════════════════════════════ */
.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

.counter-item__number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4.5vw, 3.75rem);
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--space-sm);
    font-weight: 800;
    text-shadow: 0 2px 15px rgba(191, 30, 46, 0.15);
}

.counter-item__label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}


/* ══════════════════════════════════
   Contact Page
   ══════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    background: var(--cream-light);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-info-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.contact-info-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(191, 30, 46, 0.3);
}

.contact-info-card__icon svg {
    width: 22px;
    height: 22px;
}

.contact-info-card__title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.contact-info-card__text {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-map {
    border-radius: var(--radius-xl, 16px);
    overflow: hidden;
    margin-top: var(--space-2xl);
    height: 420px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* ══════════════════════════════════
   404 Page — Styled
   ══════════════════════════════════ */
.error-404 {
    text-align: center;
    padding: var(--space-4xl) var(--space-lg);
    min-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: var(--header-height);
    background: linear-gradient(180deg, var(--cream-light) 0%, var(--white) 100%);
}

.error-404__number {
    font-family: var(--font-heading);
    font-size: clamp(7rem, 18vw, 14rem);
    background: linear-gradient(135deg, var(--accent) 0%, #1A1A2E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-lg);
    font-weight: 900;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.05));
}

.error-404__title {
    font-size: 1.85rem;
    margin-bottom: var(--space-md);
    font-weight: 700;
}

.error-404__text {
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    font-size: 1.0625rem;
    line-height: 1.6;
}


/* ══════════════════════════════════
   WordPress Defaults
   ══════════════════════════════════ */
.wp-caption {
    max-width: 100%;
    margin-bottom: var(--space-md);
}

.wp-caption-text {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--space-xs);
    font-style: italic;
}

.alignleft {
    float: left;
    margin-right: var(--space-lg);
    margin-bottom: var(--space-md);
}

.alignright {
    float: right;
    margin-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-md);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* ══════════════════════════════════
   Welcome Section Grid — 2 Columns, Image with Large Shadow
   ══════════════════════════════════ */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.welcome-grid img {
    border-radius: var(--radius-xl, 16px);
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.18),
        0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s ease;
}

.welcome-grid img:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.22),
        0 10px 30px rgba(0, 0, 0, 0.1);
}

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


/* ══════════════════════════════════
   Rooms Filter Strip — Compact Inline
   ══════════════════════════════════ */
.rooms-filter-strip {
    background: white;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: var(--space-md) 0;
}

.rooms-filter-strip__inner {
    display: flex;
    align-items: flex-end;
    gap: var(--space-md);
}

.rooms-filter-strip__field {
    flex: 1;
}

.rooms-filter-strip__label {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.rooms-filter-strip__inner .form-select {
    padding: 0.625rem 2.5rem 0.625rem 0.75rem;
    font-size: 0.875rem;
    border-radius: var(--radius-md);
}

.rooms-filter-strip__inner .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .rooms-filter-strip__inner {
        flex-wrap: wrap;
    }
    .rooms-filter-strip__field {
        flex: 1 1 100%;
    }
}


/* ══════════════════════════════════
   Room Card V2 — Clean Vertical
   ══════════════════════════════════ */
.rooms-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.room-card-v2 {
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.35s ease;
}

.room-card-v2:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    transform: translateY(-6px);
}

.room-card-v2__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.room-card-v2__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

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

.room-card-v2:hover .room-card-v2__image img {
    transform: scale(1.05);
}

/* Placeholder when no photo is set */
.room-card-v2__image--placeholder {
    background:
        radial-gradient(ellipse at top, rgba(191, 30, 46, 0.08), transparent 70%),
        linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F0F1E 100%);
    position: relative;
}

.room-card-v2__image--placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0 2px, transparent 2px 14px),
        radial-gradient(circle at 30% 30%, rgba(191, 30, 46, 0.12), transparent 50%);
    pointer-events: none;
}

.room-card-v2__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: rgba(240, 230, 228, 0.55);
    transition: transform 0.5s ease, color 0.3s ease;
    z-index: 1;
}

.room-card-v2__placeholder svg {
    stroke: currentColor;
    filter: drop-shadow(0 2px 8px rgba(191, 30, 46, 0.25));
}

.room-card-v2__placeholder-label {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(240, 230, 228, 0.7);
}

.room-card-v2:hover .room-card-v2__placeholder {
    transform: scale(1.05);
    color: rgba(240, 230, 228, 0.8);
}

.room-card-v2__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-card-v2:hover .room-card-v2__overlay {
    opacity: 1;
}

.room-card-v2__cta {
    padding: 10px 28px;
    background: white;
    color: #111;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    letter-spacing: 0.02em;
}

.room-card-v2__body {
    padding: 20px 24px 24px;
}

.room-card-v2__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
}

.room-card-v2__desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.room-card-v2__specs {
    display: flex;
    gap: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.room-card-v2__specs span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.room-card-v2__specs svg {
    color: var(--accent);
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .rooms-grid-v2 {
        grid-template-columns: 1fr;
    }
}


/* ══════════════════════════════════
   Room Card Wide — Horizontal Layout (legacy)
   ══════════════════════════════════ */
.room-card-wide {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background: white;
    border-radius: var(--radius-xl, 16px);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card-wide:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.room-card-wide__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.room-card-wide:hover .room-card-wide__image img {
    transform: scale(1.04);
}

.room-card-wide__body {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
}

.room-card-wide__title {
    font-size: 1.375rem;
    margin-bottom: var(--space-sm);
}

.room-card-wide__title a {
    color: var(--primary);
    transition: color 0.3s ease;
}

.room-card-wide__title a:hover {
    color: var(--accent);
}

.room-card-wide__excerpt {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.room-card-wide__specs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.room-card-wide__specs span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.room-card-wide__specs svg {
    color: var(--accent);
}

.room-card-wide__amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: var(--space-lg);
}

.room-card-wide__tag {
    padding: 4px 10px;
    font-size: 0.6875rem;
    font-weight: 500;
    background: #f5f5f5;
    border-radius: var(--radius-full, 9999px);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.room-card-wide__tag--more {
    background: var(--accent);
    color: white;
}

.room-card-wide__action {
    margin-top: auto;
}

@media (max-width: 767px) {
    .room-card-wide {
        grid-template-columns: 1fr;
    }
    .room-card-wide__image {
        aspect-ratio: 16/9;
    }
}


/* ══════════════════════════════════
   Stats Bar — Floating Numbers Strip
   ══════════════════════════════════ */
.stats-bar {
    background: white;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: var(--space-xl) 0;
    position: relative;
    z-index: 5;
}

.stats-bar__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
}

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

.stats-bar__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
}

.stats-bar__label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

.stats-bar__divider {
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.1);
}

@media (max-width: 767px) {
    .stats-bar__grid {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }
    .stats-bar__divider {
        display: none;
    }
    .stats-bar__item {
        flex: 1 1 40%;
    }
}


/* ══════════════════════════════════
   Welcome Mini Features
   ══════════════════════════════════ */
.welcome-features {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(0,0,0,0.08);
}

.welcome-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
}

.welcome-feature svg {
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .welcome-features {
        flex-direction: column;
        gap: var(--space-md);
    }
}


/* ══════════════════════════════════
   CTA Actions (dual buttons)
   ══════════════════════════════════ */
.cta-section__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}


/* ══════════════════════════════════
   Contact Page — Modern Premium
   ══════════════════════════════════ */

/* Quick Contact Strip */
.contact-strip {
    background: var(--primary);
    padding: 0;
    margin-top: -1px;
}

.contact-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.contact-strip__item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    color: rgba(255,255,255,0.85);
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s ease;
}

.contact-strip__item:last-child {
    border-right: none;
}

.contact-strip__item:hover {
    background: rgba(255,255,255,0.04);
}

.contact-strip__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-strip__item:hover .contact-strip__icon {
    background: var(--accent);
    color: white;
}

.contact-strip__label {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2px;
}

.contact-strip__value {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

/* Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

/* Form Card */
.contact-form-card {
    background: white;
    border-radius: var(--radius-xl, 16px);
    padding: var(--space-2xl);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

/* Hours Card */
.contact-hours-card {
    background: white;
    border-radius: var(--radius-xl, 16px);
    padding: var(--space-xl);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    margin-bottom: var(--space-lg);
}

.hours-table {
    display: flex;
    flex-direction: column;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hours-row:last-child,
.hours-row--last {
    border-bottom: none;
}

.hours-row span:last-child {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-full, 9999px);
}

.hours-badge--open {
    background: #ecfdf5;
    color: #059669;
}

/* WhatsApp CTA */
.contact-whatsapp-cta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: #25D366;
    border-radius: var(--radius-xl, 16px);
    color: white;
    margin-bottom: var(--space-lg);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.contact-whatsapp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.contact-whatsapp-cta__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-whatsapp-cta strong {
    display: block;
    font-size: 0.9375rem;
}

.contact-whatsapp-cta span {
    display: block;
    font-size: 0.8125rem;
    opacity: 0.85;
}

/* Note Card */
.contact-note {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: #fef3f2;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent);
}

.contact-note p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Full Width Map */
.contact-map-section {
    width: 100%;
    height: 450px;
    background: var(--primary);
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%);
}

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

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-map-section {
        height: 300px;
    }
}
