/* ============================================================
   Hotel Midtown Inn Delhi — Main Stylesheet
   ============================================================ */

/* CSS Variables */
:root {
    --primary:      #222222;
    --primary-light:#555555;
    --navy:         #1a2744;
    --gold:         #c9a84c;
    --gold-light:   #e8c97a;
    --gold-dark:    #a8882c;
    --white:        #ffffff;
    --off-white:    #f8f4ef;
    --light:        #f8f9fa;
    --cream:        #faf7f2;
    --border:       #e8e0d5;
    --text:         #1a1a1a;
    --text-muted:   #4a4a4a;
    --text-light:   #717171;
    --shadow-sm:    0 2px 10px rgba(0,0,0,.06);
    --shadow-md:    0 5px 25px rgba(0,0,0,.10);
    --shadow-lg:    0 15px 50px rgba(0,0,0,.15);
    --radius:       8px;
    --radius-lg:    16px;
    --transition:   all 0.3s ease;
    --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body:    'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.78;
    overflow-x: hidden;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
input, select, textarea, button { font-family: var(--font-body); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.2; color: var(--primary); font-weight: 600; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 700; letter-spacing: -0.5px; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 600; letter-spacing: -0.3px; }
h3 { font-size: clamp(1.3rem, 2.8vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p  { margin-bottom: 1rem; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1220px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 80px 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: #1a1a1a;
    padding: 13px 32px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.12);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(201,168,76,.40); }
.btn-primary:hover::after { opacity: 0; }

/* Dark filled button — white text always */
.btn-dark {
    display: inline-block;
    background: var(--primary);
    color: #ffffff;
    padding: 13px 32px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}
.btn-dark:hover { background: #3a3a3a; border-color: #3a3a3a; color: #ffffff; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.25); }

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 11px 30px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}
.btn-outline:hover { background: var(--primary); color: #ffffff; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.20); }
.btn-outline--gold { color: var(--gold); border-color: var(--gold); }
.btn-outline--gold:hover { background: var(--gold); color: #1a1a1a; }
.btn-outline--white { color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline--white:hover { background: var(--white); color: var(--primary); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(255,255,255,.15); }
.btn-lg { padding: 16px 40px; font-size: 14px; letter-spacing: 2px; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.hm-section-header { text-align: center; margin-bottom: 50px; }
.hm-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.hm-section-label--gold { color: var(--gold-dark); }
.hm-dark-section .hm-section-label--gold { color: var(--gold-dark); }
.hm-section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--primary); margin-bottom: 16px; }
.hm-section-title--white { color: var(--white); }
.hm-section-divider {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 0 auto 20px;
    border-radius: 2px;
}
.hm-section-desc { max-width: 600px; margin: 0 auto; color: var(--text-muted); font-size: 15px; line-height: 1.75; font-weight: 400; }
.hm-section-cta { text-align: center; margin-top: 40px; }
.hm-view-all-link { display: block; margin-top: 10px; font-size: 14px; font-weight: 600; color: var(--gold); }

/* ============================================================
   TOP BAR
   ============================================================ */
.hm-topbar {
    background: var(--navy);
    padding: 10px 0;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1100;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.hm-topbar__inner { display: flex; justify-content: space-between; align-items: center; }
.hm-topbar__left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hm-topbar__right { display: flex; align-items: center; gap: 14px; }
.hm-topbar__divider { color: rgba(255,255,255,.25); font-size: 16px; line-height: 1; }
.hm-topbar__link {
    color: rgba(255,255,255,.8);
    display: flex; align-items: center; gap: 6px;
    font-size: 12.5px; font-weight: 500; letter-spacing: 0.02em;
    transition: opacity .2s;
}
.hm-topbar__link svg { flex-shrink: 0; }
.hm-topbar__link:hover { opacity: .75; color: #fff; }
/* Mobile number — very prominent gold */
.hm-topbar__link--mobile {
    color: var(--gold);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1;
    text-shadow: 0 0 10px rgba(201,168,76,.4);
}
.hm-topbar__link--mobile:hover { color: var(--gold); opacity: .85; }
.hm-topbar__link--landline { font-size: 14px; color: rgba(255,255,255,.85); font-weight: 600; }
.hm-topbar__link--email { font-size: 12px; color: rgba(255,255,255,.6); }
.hm-topbar__link--email:hover { color: #fff; }

/* Social icons — brand colours */
.hm-social {
    display: flex; align-items: center; justify-content: center;
    width: 30px; height: 30px;
    border-radius: 50%;
    transition: transform .2s, opacity .2s;
    opacity: .9;
}
.hm-social:hover { transform: translateY(-2px); opacity: 1; }

/* Facebook — blue */
.hm-social[aria-label="Facebook"] { background: #1877f2; color: #fff; }
.hm-social[aria-label="Facebook"]:hover { background: #0d65d9; }

/* Instagram — gradient */
.hm-social[aria-label="Instagram"] {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    color: #fff;
}

/* WhatsApp — green */
.hm-social[aria-label="WhatsApp"],
.hm-social--whatsapp { background: #25d366; color: #fff; }
.hm-social--whatsapp:hover { background: #1aad54; }

/* YouTube — red */
.hm-social[aria-label="YouTube"] { background: #ff0000; color: #fff; }
.hm-social[aria-label="YouTube"]:hover { background: #cc0000; }

/* ============================================================
   HEADER
   ============================================================ */
.hm-header {
    background: var(--white);
    position: sticky;
    top: 42px;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
    transition: var(--transition);
}
.hm-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.15); }
.hm-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}
/* Logo */
.hm-logo__text {
    display: flex; flex-direction: column;
    text-decoration: none;
}
.hm-logo__name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}
.hm-logo__tagline {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.hm-logo img { max-height: 70px; width: auto; }

/* Nav */
.hm-nav__menu { display: flex; align-items: center; gap: 4px; }
.hm-nav__menu li { position: relative; }
.hm-nav__menu > li > a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.3px;
    border-radius: var(--radius);
    transition: var(--transition);
}
.hm-nav__menu > li > a:hover,
.hm-nav__menu > li.current-menu-item > a { color: var(--gold); }
.hm-nav__menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius);
    border-top: 3px solid var(--gold);
    padding: 8px 0;
    z-index: 100;
}
.hm-nav__menu li:hover > .sub-menu { display: block; }
.hm-nav__menu .sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--text);
    font-weight: 400;
}
.hm-nav__menu .sub-menu li a:hover { background: var(--light); color: var(--gold); }

/* Header CTA */
.hm-header__cta {
    font-size: 13px !important;
    padding: 11px 28px !important;
    background: var(--primary) !important;
    color: #ffffff !important;
    border-color: var(--primary) !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
}
.hm-header__cta:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: #1a1a1a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(201,168,76,.35) !important;
}

/* Hamburger */
.hm-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
}
.hm-hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}
.hm-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hm-hamburger.active span:nth-child(2) { opacity: 0; }
.hm-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Overlay */
.hm-mobile-overlay {
    display: none;
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--primary);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px 20px;
}
.hm-mobile-overlay.open { display: flex; }
.hm-mobile-close {
    position: absolute; top: 20px; right: 24px;
    background: none; border: none;
    color: var(--white); font-size: 36px; line-height: 1;
}
.hm-mobile-logo a { font-family: var(--font-heading); font-size: 24px; color: var(--gold); font-weight: 700; }
.hm-mobile-nav { text-align: center; }
.hm-mobile-nav li { margin: 4px 0; }
.hm-mobile-nav li a { font-size: 20px; color: var(--white); font-family: var(--font-heading); padding: 8px 20px; display: block; }
.hm-mobile-nav li a:hover { color: var(--gold); }
.hm-mobile-cta { margin-top: 10px; }
.hm-mobile-contact { display: flex; flex-direction: column; gap: 10px; text-align: center; }
.hm-mobile-contact a { color: rgba(255,255,255,.7); font-size: 14px; }
.hm-mobile-contact a:hover { color: var(--gold); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hm-hero { position: relative; }
.hm-hero-swiper { height: 100%; min-height: unset; }
.hm-hero__slide {
    background-size: cover;
    background-position: center;
    background-color: #3a3a3a;
    background-image: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 45%, #4a4a4a 100%);
    display: flex; align-items: center;
}
.hm-hero__slide--no-img {
    background-image: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 30%, #4a4a4a 65%, rgba(201,168,76,.25) 100%);
}
.hm-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.50) 0%, rgba(0,0,0,.28) 60%, rgba(0,0,0,.10) 100%);
}
.hm-hero__slide--no-img .hm-hero__overlay {
    background: linear-gradient(135deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.05) 100%);
}
.hm-hero__content { position: relative; z-index: 2; width: 100%; padding: 40px 0; }
.hm-hero__tagline {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(201,168,76,.4);
    padding-bottom: 8px;
}
.hm-hero__title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 700px;
}
.hm-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,.85);
    margin-bottom: 36px;
    max-width: 500px;
    font-weight: 300;
}
.hm-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hm-hero__next, .hm-hero__prev { color: var(--gold); }
.hm-hero__next::after, .hm-hero__prev::after { font-size: 20px; }
.hm-hero__pagination .swiper-pagination-bullet { background: rgba(255,255,255,.5); opacity: 1; }
.hm-hero__pagination .swiper-pagination-bullet-active { background: var(--gold); width: 24px; border-radius: 3px; }
.hm-hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 10; }
.hm-scroll-indicator {
    width: 24px; height: 40px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 12px;
    position: relative;
}
.hm-scroll-indicator span {
    position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDown 1.5s infinite;
}
@keyframes scrollDown { 0%{top:6px;opacity:1} 100%{top:22px;opacity:0} }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.hm-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hm-about__img-wrap { position: relative; }
.hm-about__img-wrap img {
    width: 100%; border-radius: var(--radius-lg);
    object-fit: cover; height: 500px;
}
.hm-about__badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--gold);
    color: var(--primary);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.hm-about__badge-number { display: block; font-family: var(--font-heading); font-size: 40px; font-weight: 900; line-height: 1; }
.hm-about__badge-text { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.hm-section-label { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 10px; }
.hm-section-title { margin-bottom: 12px; }
.hm-section-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); margin-bottom: 24px; border-radius: 2px; }
.hm-about__text { color: var(--text-muted); margin-bottom: 16px; }
.hm-about__highlights { display: flex; flex-direction: column; gap: 16px; margin: 24px 0 32px; }
.hm-about__highlights li { display: flex; gap: 16px; align-items: flex-start; }
.hm-highlight-icon { background: var(--gold); color: var(--primary); width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.hm-about__highlights strong { display: block; color: var(--primary); font-weight: 700; }
.hm-about__highlights span { font-size: 14px; color: var(--text-muted); }

/* ============================================================
   DARK SECTIONS
   ============================================================ */
.hm-dark-section { background: #1c1a17; }
.hm-light-section { background: var(--cream); }
.hm-cream-section { background: var(--cream); }

/* Text for dark sections — gold labels, white titles */
.hm-dark-section .hm-section-label { color: var(--gold); }
.hm-dark-section .hm-section-title { color: var(--white); }
.hm-dark-section .hm-section-title--white { color: var(--white); }
.hm-dark-section .hm-section-header--light .hm-section-title { color: var(--white); }
.hm-dark-section .hm-section-desc { color: rgba(255,255,255,.85); }
.hm-dark-section .hm-section-header--light .hm-section-desc { color: rgba(255,255,255,.85); }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.hm-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hm-service-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(201,168,76,.20);
    border-top: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}
.hm-service-card:hover {
    background: rgba(255,255,255,.10);
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.hm-service-card__icon { font-size: 48px; margin-bottom: 20px; display: block; }
.hm-service-card__title { color: var(--white); font-size: 18px; margin-bottom: 12px; }
.hm-service-card__desc { color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.6; }

/* ============================================================
   ROOMS SECTION
   ============================================================ */
.hm-rooms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.hm-rooms-grid--listing { grid-template-columns: repeat(3, 1fr); }
.hm-room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.hm-room-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.hm-room-card__image { position: relative; overflow: hidden; height: 240px; }
.hm-room-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.hm-room-card:hover .hm-room-card__image img { transform: scale(1.05); }
.hm-room-card__placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}
.hm-placeholder-1 { background: linear-gradient(135deg, #4a4a4a, #2a2a2a); }
.hm-placeholder-2 { background: linear-gradient(135deg, #2d5016, #1a3a08); }
.hm-placeholder-3 { background: linear-gradient(135deg, #5c2d0e, #3a1a06); }
.hm-placeholder-4 { background: linear-gradient(135deg, #3d1a5c, #220d3a); }
.hm-room-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--gold); color: var(--primary);
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; padding: 4px 12px; border-radius: 3px;
}
.hm-room-badge--lg { position: static; display: inline-block; margin-bottom: 12px; }
.hm-room-card__body { padding: 24px; }
.hm-room-card__title { font-size: 1.2rem; margin-bottom: 8px; }
.hm-room-card__title a { color: var(--primary); }
.hm-room-card__title a:hover { color: var(--gold); }
.hm-room-card__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 12px; }
.hm-price-from { font-size: 12px; color: var(--text-muted); }
.hm-price-amount { font-size: 18px; font-weight: 700; color: var(--gold); font-family: var(--font-heading); }
.hm-room-card__meta { display: flex; gap: 16px; font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.hm-room-card__excerpt { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.hm-room-card__amenities { display: flex; gap: 10px; font-size: 18px; margin-bottom: 20px; }
.hm-room-card__actions { display: flex; gap: 10px; }
.hm-room-card__actions .btn-primary,
.hm-room-card__actions .btn-outline { padding: 10px 18px; font-size: 12px; flex: 1; text-align: center; }

/* ============================================================
   AMENITIES
   ============================================================ */
.hm-amenities__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hm-amenity-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.hm-amenity-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.hm-amenity-card__icon { font-size: 40px; margin-bottom: 14px; }
.hm-amenity-card__title { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.hm-amenity-card__desc { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   STATS
   ============================================================ */
.hm-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.hm-stat {
    text-align: center; padding: 50px 30px;
    border-right: 1px solid rgba(255,255,255,.1);
    transition: var(--transition);
}
.hm-stat:last-child { border-right: none; }
.hm-stat:hover { background: rgba(201,168,76,.05); }
.hm-stat__icon { font-size: 36px; margin-bottom: 12px; }
.hm-stat__number { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); color: var(--gold); font-weight: 700; line-height: 1; margin-bottom: 10px; }
.hm-stat__label { color: var(--text-muted); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.hm-testimonials-swiper { padding-bottom: 50px !important; }
.hm-testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    position: relative;
    height: 100%;
}
.hm-testimonial-quote {
    font-family: var(--font-heading);
    font-size: 72px;
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: 16px;
    opacity: 0.4;
}
.hm-stars { display: block; margin-bottom: 14px; }
.hm-star { color: #ddd; font-size: 18px; }
.hm-star--filled { color: var(--gold); }
.hm-testimonial-text { color: var(--text-muted); font-style: italic; line-height: 1.7; margin-bottom: 24px; }
.hm-testimonial-author { display: flex; align-items: center; gap: 14px; }
.hm-testimonial-avatar { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.hm-testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hm-avatar-placeholder {
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-family: var(--font-heading); font-size: 22px; font-weight: 700;
}
.hm-testimonial-author strong { display: block; color: var(--primary); }
.hm-testimonial-author span { font-size: 13px; color: var(--text-muted); display: block; }
.hm-testimonial-date { font-size: 11.5px !important; color: rgba(0,0,0,.35) !important; margin-top: 1px; }
.hm-testimonial-verified {
    display: flex; align-items: center; gap: 5px;
    margin-top: 16px; padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,.06);
    font-size: 11.5px; color: #5f6368; font-weight: 500;
}

/* Google CTA below swiper */
.hm-testimonials__cta {
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 12px; margin-top: 36px; text-align: center;
}
.hm-testimonials__cta-text { font-size: 15px; color: var(--text-muted); margin: 0; }
.hm-testimonials__google-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 22px; border-radius: 24px;
    border: 2px solid #dadce0; background: #fff;
    color: #3c4043; font-size: 14px; font-weight: 600;
    text-decoration: none; transition: box-shadow .2s, border-color .2s;
}
.hm-testimonials__google-btn:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,.15); border-color: #bbb; color: #1a1a1a;
}

/* Swiper customization */
.hm-testimonials-swiper .swiper-button-next,
.hm-testimonials-swiper .swiper-button-prev { color: var(--gold); }
.hm-testimonials-swiper .swiper-pagination-bullet-active { background: var(--gold); }

/* ============================================================
   GALLERY
   ============================================================ */
.hm-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hm-gallery-preview__grid { grid-template-columns: repeat(3, 1fr); }
.hm-gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; aspect-ratio: 4/3; }
.hm-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.hm-gallery-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.hm-gallery-placeholder span { font-size: 40px; }
.hm-gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.45);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.hm-gallery-item:hover .hm-gallery-overlay { opacity: 1; }
.hm-gallery-item:hover img { transform: scale(1.1); }
.hm-gallery-overlay__icon { color: var(--gold); font-size: 36px; font-weight: 300; margin-bottom: 8px; line-height: 1; }
.hm-gallery-overlay p { color: var(--white); font-size: 14px; font-weight: 600; text-align: center; padding: 0 16px; }

/* Gallery Filter Buttons */
.hm-gallery-filters, .hm-room-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.hm-filter-btn {
    background: var(--white); border: 2px solid var(--border);
    color: var(--text-muted); padding: 8px 22px;
    border-radius: 30px; font-size: 13px; font-weight: 600;
    cursor: pointer; transition: var(--transition);
}
.hm-filter-btn:hover, .hm-filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--primary); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.hm-cta-banner {
    background: #1c1a17;
    padding: 80px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
}
.hm-cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}
.hm-cta-banner__overlay { display: none; }
.hm-cta-banner__content { position: relative; z-index: 1; }
.hm-cta-banner__title { color: var(--gold); font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.hm-cta-banner__text { color: rgba(255,255,255,.78); max-width: 600px; margin: 0 auto 36px; font-size: 16px; }
.hm-cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PAGE HEADER (Inner Pages)
   ============================================================ */
.hm-page-header {
    background: var(--primary);
    padding: 70px 0 50px;
    position: relative;
    overflow: hidden;
}
.hm-page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.60), rgba(0,0,0,.30));
}
.hm-page-header__overlay { position: absolute; inset: 0; }
.hm-page-header .container { position: relative; z-index: 1; }
.hm-page-header__title { color: var(--white); margin-bottom: 8px; }
.hm-page-header__subtitle { color: rgba(255,255,255,.8); font-size: 16px; margin-bottom: 12px; }

/* Breadcrumb */
.hm-breadcrumb ol { display: flex; gap: 8px; flex-wrap: wrap; }
.hm-breadcrumb li { font-size: 13px; color: rgba(255,255,255,.6); }
.hm-breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 8px; }
.hm-breadcrumb a { color: var(--gold-light); }
.hm-breadcrumb a:hover { color: var(--white); }

/* ============================================================
   OFFERS
   ============================================================ */
.hm-offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hm-offers-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.hm-offer-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.hm-offer-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.hm-offer-card__image { position: relative; height: 220px; overflow: hidden; }
.hm-offer-card__image img { width: 100%; height: 100%; object-fit: cover; }
.hm-offer-badge { position: absolute; top: 14px; left: 14px; background: var(--primary); color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 3px; }
.hm-offer-discount-tag { position: absolute; top: 14px; right: 14px; background: var(--gold); color: var(--primary); font-size: 14px; font-weight: 700; padding: 6px 14px; border-radius: 3px; }
.hm-offer-expired-badge { position: absolute; inset: 0; background: rgba(0,0,0,.6); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; font-weight: 700; }
.hm-offer-card__body { padding: 24px; }
.hm-offer-discount { color: var(--gold); font-size: 22px; font-weight: 700; font-family: var(--font-heading); margin-bottom: 6px; }
.hm-offer-card h3, .hm-offer-card h2 { color: var(--primary); margin-bottom: 10px; }
.hm-offer-card p, .hm-offer-card__desc { color: var(--text-muted); font-size: 14px; margin-bottom: 14px; }
.hm-offer-validity { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.hm-offer-terms { font-size: 12px; color: var(--text-light); border-top: 1px solid var(--border); padding-top: 12px; margin-bottom: 16px; }
.hm-offer-expired { opacity: 0.7; }
.hm-expired-text { color: #e53e3e; margin-left: 8px; }
.hm-no-offers { text-align: center; padding: 80px 20px; }
.hm-no-offers__icon { font-size: 64px; margin-bottom: 20px; }
.hm-no-offers h2 { margin-bottom: 14px; }
.hm-no-offers p { color: var(--text-muted); margin-bottom: 24px; }
.hm-offer-card--full .hm-offer-card__image { height: 300px; }
.hm-offer-card--full .hm-offer-card__body { padding: 30px; }
.hm-offer-card--full .hm-offer-discount { font-size: 28px; }
.hm-offer-card--full .hm-offer-card__title,
.hm-offer-card--full h2 { font-size: 1.6rem; }

/* ============================================================
   LOCATION PAGE
   ============================================================ */
/* Map + Info Card layout */
.hm-loc-map-section {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 420px;
    min-height: 520px;
}
.hm-loc-map-wrap { position: relative; overflow: hidden; }
.hm-loc-map-wrap iframe { width: 100%; height: 100%; min-height: 520px; border: none; display: block; }
.hm-loc-map-placeholder {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    height: 100%; min-height: 520px; background: #eef2f7; color: #aaa; gap: 12px;
}
.hm-loc-map-placeholder span { font-size: 48px; }

/* Floating Info Card */
.hm-loc-info-card {
    background: var(--cream);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.hm-loc-info-card__header { display: flex; align-items: flex-start; gap: 16px; }
.hm-loc-info-card__icon { font-size: 36px; flex-shrink: 0; margin-top: 2px; }
.hm-loc-info-card__header h2 { color: var(--primary); font-size: 1.3rem; margin: 0 0 4px; line-height: 1.3; }
.hm-loc-info-card__tagline { color: var(--text-muted); font-size: .875rem; margin: 0; }
.hm-loc-info-card__address {
    background: rgba(201,168,76,.08);
    border-left: 3px solid var(--gold);
    border-radius: 0 6px 6px 0;
    padding: 14px 18px;
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.hm-loc-info-card__timings {
    display: flex; align-items: center; gap: 0;
    background: rgba(201,168,76,.10);
    border-radius: 8px;
    overflow: hidden;
}
.hm-loc-timing { flex: 1; text-align: center; padding: 14px 12px; }
.hm-loc-timing__label { display: block; font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.hm-loc-timing__val { display: block; font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.hm-loc-timing__divider { width: 1px; background: var(--border); align-self: stretch; }
.hm-loc-info-card__contacts { display: flex; flex-direction: column; gap: 10px; }
.hm-loc-contact-btn {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 16px;
    border-radius: 8px;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.hm-loc-contact-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.hm-loc-contact-btn--call { background: var(--light); color: var(--primary); border: 1px solid var(--border); }
.hm-loc-contact-btn--call:hover { background: var(--primary); color: var(--white); }
.hm-loc-contact-btn--wa { background: #25d366; color: #fff; }
.hm-loc-contact-btn--wa:hover { background: #1ebe5a; color: #fff; }
.hm-loc-contact-btn--email { background: var(--off-white); color: var(--text-muted); border: 1px solid var(--border); }
.hm-loc-contact-btn--email:hover { background: var(--primary); color: #fff; }
.hm-loc-directions-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--gold);
    color: var(--primary);
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
}
.hm-loc-directions-btn svg { width: 18px; height: 18px; }
.hm-loc-directions-btn:hover { background: #b8961e; color: #fff; }

/* Distance Cards */
.hm-loc-dist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.hm-loc-dist-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: var(--transition);
}
.hm-loc-dist-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); transform: translateY(-3px); }
.hm-loc-dist-card__icon { font-size: 32px; flex-shrink: 0; }
.hm-loc-dist-card__info { display: flex; flex-direction: column; gap: 3px; }
.hm-loc-dist-card__info strong { color: var(--primary); font-size: .95rem; }
.hm-loc-dist-card__dist { font-size: 1.15rem; font-weight: 700; color: var(--gold); }
.hm-loc-dist-card__time { font-size: .8rem; color: var(--text-muted); }
.hm-loc-dist-card__mode { font-size: .75rem; color: #555; background: #f4f4f4; border-radius: 20px; padding: 2px 10px; display: inline-block; margin-top: 2px; }

/* How to Reach */
.hm-loc-reach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.hm-loc-reach-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    border-top: 4px solid var(--reach-color, var(--gold));
    transition: var(--transition);
}
.hm-loc-reach-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.hm-loc-reach-card__icon { font-size: 36px; display: block; margin-bottom: 14px; }
.hm-loc-reach-card h3 { font-size: 1rem; color: var(--primary); margin: 0 0 14px; }
.hm-loc-reach-card ol { padding-left: 18px; margin: 0; }
.hm-loc-reach-card ol li { font-size: .85rem; color: var(--text-muted); margin-bottom: 7px; line-height: 1.5; }

/* Nearby Attractions */
.hm-loc-attr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.hm-loc-attr-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: var(--transition);
}
.hm-loc-attr-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); transform: translateY(-3px); }
.hm-loc-attr-card__icon { font-size: 30px; flex-shrink: 0; }
.hm-loc-attr-card__body { display: flex; flex-direction: column; gap: 3px; }
.hm-loc-attr-card__body strong { color: var(--primary); font-size: .9rem; }
.hm-loc-attr-dist { font-size: .75rem; color: var(--gold); font-weight: 600; }
.hm-loc-attr-card__body p { font-size: .8rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Book CTA Banner */
.hm-loc-book-cta {
    background: linear-gradient(135deg, #1c1a17 0%, #2a2620 100%);
    padding: 60px 0;
}
.hm-loc-book-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.hm-loc-book-cta__inner h2 { color: var(--gold); font-size: 1.8rem; margin: 0 0 8px; }
.hm-loc-book-cta__inner p { color: rgba(255,255,255,.75); margin: 0; }
.hm-loc-book-cta__btns { display: flex; gap: 14px; flex-shrink: 0; }
.btn-outline--light { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-outline--light:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; transform: translateY(-3px); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.hm-contact__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; }
.hm-contact__intro { color: var(--text-muted); margin-bottom: 28px; }
.hm-contact-cards { display: flex; flex-direction: column; gap: 16px; }
.hm-contact-card { display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px; background: var(--light); border-radius: var(--radius); border-left: 4px solid var(--gold); }
.hm-contact-card__icon { font-size: 24px; flex-shrink: 0; }
.hm-contact-card strong { display: block; color: var(--primary); font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.hm-contact-card a { color: var(--text-muted); font-size: 14px; }
.hm-contact-card a:hover { color: var(--gold); }
.hm-contact-card p { color: var(--text-muted); font-size: 14px; margin: 0; }
.hm-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.hm-form-wrap h3 { margin-bottom: 24px; color: var(--primary); }
.hm-contact-form { display: flex; flex-direction: column; gap: 16px; }
.hm-contact-form .hm-form-group input,
.hm-contact-form .hm-form-group textarea,
.hm-contact-form .hm-form-group select {
    padding: 12px 16px; border: 1.5px solid var(--border);
    border-radius: 6px; font-size: 14px; width: 100%;
    transition: var(--transition);
}
.hm-contact-form .hm-form-group input:focus,
.hm-contact-form .hm-form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.12); }
.hm-contact-map { height: 350px; margin-top: 50px; }
.hm-contact-map iframe { width: 100%; height: 100%; border: none; border-radius: var(--radius-lg); display: block; }

/* ============================================================
   ENQUIRY PAGE
   ============================================================ */
.hm-trust-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 50px; }
.hm-trust-badge {
    text-align: center; background: var(--white);
    border-radius: var(--radius-lg); padding: 24px 16px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.hm-trust-icon { font-size: 32px; display: block; margin-bottom: 10px; }
.hm-trust-badge strong { display: block; color: var(--primary); margin-bottom: 4px; font-size: 14px; }
.hm-trust-badge span { font-size: 12px; color: var(--text-muted); }
.hm-enquiry-page__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
.hm-form-wrap--large { padding: 48px; }
.hm-enquiry-info-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.hm-enquiry-info-card h3 { margin-bottom: 16px; font-size: 18px; }
.hm-why-list { display: flex; flex-direction: column; gap: 10px; }
.hm-why-list li { font-size: 14px; color: var(--text-muted); }
.hm-contact-btn {
    display: block; background: var(--light); border-radius: var(--radius);
    padding: 12px 16px; font-size: 14px; font-weight: 600;
    color: var(--primary); margin-bottom: 10px; text-align: center;
    transition: var(--transition);
}
.hm-contact-btn:hover { background: var(--gold); color: var(--primary); }
.hm-whatsapp-btn { background: #f0fdf4; color: #15803d; }
.hm-whatsapp-btn:hover { background: #25d366; color: var(--white); }
.hm-check-times-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.hm-check-times-card div { color: var(--text-muted); font-size: 14px; margin-bottom: 8px; }
.hm-check-times-card strong { color: var(--primary); margin-right: 8px; }

/* ============================================================
   SINGLE ROOM PAGE
   ============================================================ */
.hm-room-single__grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; margin-bottom: 60px; }
.hm-room-single__hero { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 30px; }
.hm-room-single__hero-img { width: 100%; height: 400px; object-fit: cover; }
.hm-room-single__title { font-size: 2rem; margin-bottom: 12px; }
.hm-room-single__price { font-size: 16px; color: var(--text-muted); margin-bottom: 24px; }
.hm-room-single__price strong { color: var(--gold); font-size: 22px; }
.hm-room-single__meta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.hm-meta-item { text-align: center; background: var(--light); border-radius: var(--radius); padding: 16px; }
.hm-meta-icon { font-size: 24px; display: block; margin-bottom: 6px; }
.hm-meta-label { display: block; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.hm-meta-item strong { font-size: 14px; color: var(--primary); }
.hm-room-single__description { margin-bottom: 28px; }
.hm-room-single__amenities h3 { margin-bottom: 14px; font-size: 18px; }
.hm-amenities-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hm-amenities-list li { font-size: 14px; color: var(--text-muted); }
.hm-sidebar-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-md); margin-bottom: 20px; border: 1px solid var(--border); }
.hm-sidebar-card__title { font-size: 18px; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--gold); }
.hm-sidebar-card--dark { background: var(--cream); }
.hm-sidebar-card--dark h4 { color: var(--primary); margin-bottom: 14px; }
.hm-sidebar-phone, .hm-sidebar-whatsapp {
    display: block; text-align: center; padding: 12px;
    border-radius: var(--radius); font-weight: 700; margin-bottom: 10px;
    font-size: 15px; transition: var(--transition);
}
.hm-sidebar-phone { background: rgba(201,168,76,.15); color: var(--gold-light); }
.hm-sidebar-phone:hover { background: var(--gold); color: var(--primary); }
.hm-sidebar-whatsapp { background: rgba(37,211,102,.15); color: #25d366; }
.hm-sidebar-whatsapp:hover { background: #25d366; color: var(--white); }
.hm-related-rooms { margin-top: 60px; }
.hm-related-rooms .hm-section-title { margin-bottom: 30px; }

/* ============================================================
   ROOMS LISTING PAGE v2
   ============================================================ */
.hm-page-header--tall { padding: 75px 0; }
.hm-page-header__label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.hm-page-header__subtitle { color: rgba(255,255,255,.75); font-size: 16px; margin-top: 8px; margin-bottom: 12px; }

.hm-rooms-filter-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 70px; z-index: 100;
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
    padding: 14px 0;
}
.hm-rooms-filter-bar .container { display: flex; align-items: center; justify-content: center; }
.hm-room-filters { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; background: var(--cream); border: 1.5px solid var(--border); border-radius: 60px; padding: 5px; flex-wrap: nowrap; }
.hm-room-filters::-webkit-scrollbar { display: none; }
.hm-filter-btn { display: flex; align-items: center; gap: 9px; padding: 11px 26px; border: none; border-radius: 50px; background: transparent; color: var(--text-muted); font-size: 13px; font-weight: 600; font-family: var(--font-body); cursor: pointer; white-space: nowrap; transition: all 0.25s ease; letter-spacing: 0.1px; }
.hm-filter-btn:hover { background: rgba(201,168,76,.12); color: var(--primary); }
.hm-filter-btn.active { background: var(--gold); color: var(--primary); box-shadow: 0 4px 16px rgba(201,168,76,.30); }
.hm-filter-btn__icon { display: flex; align-items: center; flex-shrink: 0; }
.hm-filter-btn__icon svg { stroke: currentColor; transition: all 0.25s ease; }

/* Room card v2 */
.hm-room-card--v2 { display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease; border: 1px solid var(--border); will-change: transform; }
.hm-room-card--v2:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: rgba(201,168,76,.4); }
.hm-room-card__img-wrap { position: relative; height: 265px; overflow: hidden; flex-shrink: 0; }
.hm-room-card__img-wrap > a:first-child { display: block; height: 100%; }
.hm-room-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; will-change: transform; }
.hm-room-card--v2:hover .hm-room-card__img-wrap img { transform: scale(1.06); }
.hm-room-card__placeholder { display: block; height: 100%; }
.hm-placeholder-1 { background: linear-gradient(135deg, #2a2a2a, #4a4a4a); }
.hm-placeholder-2 { background: linear-gradient(135deg, #1a2a1a, #2d5016); }
.hm-placeholder-3 { background: linear-gradient(135deg, #2a1a0d, #5c2d0e); }
.hm-placeholder-4 { background: linear-gradient(135deg, #1a1a2a, #3d1a5c); }
.hm-room-card__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.45); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; z-index: 2; }
.hm-room-card--v2:hover .hm-room-card__overlay { opacity: 1; }
.hm-room-card__img-wrap .hm-room-badge { z-index: 3; }
.hm-room-card__overlay-btn { background: var(--gold); color: var(--primary); padding: 10px 26px; border-radius: var(--radius); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition); }
.hm-room-card__overlay-btn:hover { background: var(--white); color: var(--primary); }

.hm-room-card__body { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.hm-room-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.hm-room-card__title { font-size: 1.1rem; line-height: 1.35; flex: 1; margin: 0; }
.hm-room-card__title a { color: var(--primary); }
.hm-room-card__title a:hover { color: var(--gold); }
.hm-room-card__price { text-align: right; flex-shrink: 0; }
.hm-price-from { display: block; font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; line-height: 1; margin-bottom: 2px; }
.hm-price-amount { font-size: 1.05rem; font-weight: 700; color: var(--gold); font-family: var(--font-heading); }

.hm-room-card__stats { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.hm-room-stat { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-muted); }
.hm-room-stat svg { color: var(--gold); flex-shrink: 0; }

.hm-room-card__excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; flex: 1; }

.hm-room-card__pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.hm-pill { background: var(--light); color: var(--text-muted); font-size: 11px; padding: 4px 10px; border-radius: 20px; font-weight: 500; line-height: 1.4; }
.hm-pill--more { background: rgba(201,168,76,.12); color: var(--gold-dark); font-weight: 600; }

.hm-room-card__actions { display: flex; gap: 10px; margin-top: auto; }
.hm-room-card__actions .btn-outline,
.hm-room-card__actions .btn-primary { flex: 1; text-align: center; padding: 10px 10px; font-size: 13px; justify-content: center; display: flex; align-items: center; gap: 5px; }
.hm-room-card__view-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; padding: 11px 14px; background: transparent; border: 2px solid var(--primary); border-radius: 4px; color: var(--primary); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; transition: all 0.25s ease; }
.hm-room-card__view-btn:hover { background: var(--primary); color: var(--gold); border-color: var(--primary); transform: translateY(-1px); }
.hm-room-card__view-btn svg { transition: transform 0.25s ease; flex-shrink: 0; }
.hm-room-card__view-btn:hover svg { transform: translateX(4px); }

/* Why Book section */
.hm-why-book__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.hm-why-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,.09); border: 1px solid #d4c9ba; border-top: 3px solid var(--gold); transition: var(--transition); }
.hm-why-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.13); }
.hm-why-card__icon { font-size: 40px; margin-bottom: 16px; display: block; }
.hm-why-card h4 { color: var(--primary); font-size: 15px; margin-bottom: 10px; }
.hm-why-card p { color: var(--text-muted); font-size: 13px; line-height: 1.65; margin: 0; }

/* ============================================================
   ROOMS PAGE STRIP
   ============================================================ */
.hm-enquiry-strip { padding: 50px 0; border-top: 3px solid var(--gold); border-bottom: 1px solid var(--border); }
.hm-enquiry-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.hm-enquiry-strip h3 { color: var(--white); margin-bottom: 6px; }
.hm-enquiry-strip p { color: rgba(255,255,255,.85); margin: 0; }
.hm-enquiry-strip__btns { display: flex; gap: 12px; flex-shrink: 0; }
.btn-outline--white { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-outline--white:hover { border-color: var(--gold); color: var(--gold); }

/* On light backgrounds (enquiry strip, CTA banner) override to dark */
.hm-cta-banner .btn-outline--white {
    border-color: rgba(255,255,255,.6);
    color: var(--white);
}
.hm-cta-banner .btn-outline--white:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary);
}

/* ============================================================
   SINGLE ROOM PAGE v2
   ============================================================ */
.hm-room-hero { position: relative; height: 600px; overflow: hidden; display: flex; align-items: flex-end; }
.hm-room-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.03); transition: transform 8s ease; }
.hm-room-hero:hover .hm-room-hero__img { transform: scale(1); }
.hm-room-hero__placeholder { position: absolute; inset: 0; background: linear-gradient(135deg, var(--primary) 0%, #444444 100%); }
.hm-room-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.30) 55%, rgba(0,0,0,.05) 100%); }
.hm-room-hero__content { position: relative; z-index: 2; width: 100%; padding-bottom: 50px; }
.hm-room-hero__badge { display: inline-flex; align-items: center; gap: 6px; background: var(--gold); color: var(--primary); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 6px 16px; border-radius: 4px; margin-bottom: 14px; }
.hm-room-hero__title { font-size: clamp(2rem, 4.5vw, 3.2rem); color: var(--white); margin-bottom: 12px; text-shadow: 0 2px 24px rgba(0,0,0,.35); line-height: 1.2; }
.hm-room-hero__price { color: var(--white); font-size: 16px; margin-bottom: 18px; display: flex; align-items: baseline; gap: 2px; }
.hm-room-hero__price span { opacity: .7; font-size: 14px; }
.hm-room-hero__price strong { color: var(--gold-light); font-size: 28px; font-family: var(--font-heading); margin: 0 6px; font-weight: 700; }

/* Hero meta strip */
.hm-room-hero__meta { display: flex; align-items: center; gap: 20px; margin-bottom: 16px; flex-wrap: wrap; }
.hm-room-hero__meta-item { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.82); font-size: 13px; font-weight: 500; }
.hm-room-hero__meta-item svg { color: var(--gold); flex-shrink: 0; }

/* Detail layout */
.hm-room-detail__grid { display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: flex-start; }
.hm-room-detail__sidebar { position: sticky; top: 90px; }

/* Stats bar */
.hm-room-stats-bar { display: flex; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin-bottom: 36px; overflow: hidden; border: 1px solid var(--border); }
.hm-room-stat-item { flex: 1; display: flex; align-items: center; gap: 14px; padding: 20px 22px; border-right: 1px solid var(--border); }
.hm-room-stat-item:last-child { border-right: none; }
.hm-room-stat-item svg { color: var(--gold); flex-shrink: 0; }
.hm-room-stat-item span { display: block; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.hm-room-stat-item strong { font-size: 14px; color: var(--primary); font-weight: 700; }

/* Room description */
.hm-room-detail__desc { margin-bottom: 36px; line-height: 1.85; }
.hm-room-detail__desc p { color: var(--text-muted); margin-bottom: 14px; }

/* Shared section title style */
.hm-room-section-title { font-size: 1.2rem; margin-bottom: 18px; color: var(--primary); padding-bottom: 12px; border-bottom: 2px solid var(--gold); display: inline-flex; align-items: center; gap: 8px; }
.hm-room-section-title svg { color: var(--gold); flex-shrink: 0; }

/* Room Gallery Grid */
.hm-room-gallery { margin-bottom: 40px; }
.hm-room-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 260px 180px;
    gap: 10px;
}
.hm-room-gal-item { position: relative; overflow: hidden; border-radius: 10px; cursor: pointer; background: var(--light); }
.hm-room-gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; display: block; }
.hm-room-gal-item:hover img { transform: scale(1.06); }
.hm-room-gal-item__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.45); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.hm-room-gal-item__overlay svg { color: var(--white); filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }
.hm-room-gal-item:hover .hm-room-gal-item__overlay { opacity: 1; }
.hm-room-gal-item--featured { grid-column: 1 / span 2; grid-row: 1 / span 2; border-radius: 12px; }
.hm-room-gal-item--featured img { object-position: center; }
/* items 2 & 3 fixed to first 2 rows, right column */
.hm-room-gal-item:nth-child(2) { grid-column: 3; grid-row: 1; }
.hm-room-gal-item:nth-child(3) { grid-column: 3; grid-row: 2; }
@media (max-width: 600px) {
    .hm-room-gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 140px; }
    .hm-room-gal-item--featured { grid-column: 1 / span 2; grid-row: 1; }
    .hm-room-gal-item:nth-child(2) { grid-column: 1; grid-row: 2; }
    .hm-room-gal-item:nth-child(3) { grid-column: 2; grid-row: 2; }
}

/* Amenities */
.hm-room-detail__amenities { margin-bottom: 36px; }
.hm-room-detail__amenities h3 { font-size: 1.2rem; margin-bottom: 18px; color: var(--primary); padding-bottom: 12px; border-bottom: 2px solid var(--gold); display: inline-block; }
.hm-room-amenities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.hm-room-amenity-item { display: flex; align-items: center; gap: 10px; padding: 11px 14px; background: var(--light); border-radius: var(--radius); font-size: 13px; color: var(--text-dark); border: 1px solid var(--border); }
.hm-room-amenity-item svg { color: var(--gold); flex-shrink: 0; }

/* Policies */
.hm-room-policies { margin-bottom: 20px; }
.hm-room-policies h3 { font-size: 1.2rem; margin-bottom: 18px; color: var(--primary); padding-bottom: 12px; border-bottom: 2px solid var(--gold); display: inline-block; }
.hm-policies-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hm-policy-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--light); border-radius: var(--radius); border: 1px solid var(--border); }
.hm-policy-item svg { color: var(--gold); flex-shrink: 0; }
.hm-policy-item strong { display: block; font-size: 12px; color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.hm-policy-item span { font-size: 13px; color: var(--text-muted); }

/* Booking card */
.hm-booking-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: 0 8px 40px rgba(0,0,0,.10); overflow: hidden; border: 1px solid var(--border); }
.hm-booking-card__header { background: var(--gold); padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.hm-booking-card__header h3 { color: var(--primary); margin: 0; font-size: 1.05rem; }
.hm-booking-card__room-name { color: rgba(0,0,0,.72); font-size: 12px; margin: 3px 0 0; font-family: var(--font-body); font-weight: 400; }
.hm-booking-card__price { text-align: right; flex-shrink: 0; }
.hm-booking-card__price span { display: block; font-size: 10px; color: rgba(0,0,0,.72); text-transform: uppercase; }
.hm-booking-card__price strong { color: var(--primary); font-size: 1.2rem; font-family: var(--font-heading); font-weight: 700; }

/* Booking form */
.hm-booking-form { padding: 22px 26px; display: flex; flex-direction: column; gap: 13px; }
.hm-booking-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hm-booking-form .hm-form-group { display: flex; flex-direction: column; gap: 5px; }
.hm-booking-form label { font-size: 11px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px; }
.hm-booking-form input,
.hm-booking-form select,
.hm-booking-form textarea { padding: 10px 13px; border: 1.5px solid var(--border); border-radius: 6px; font-size: 14px; font-family: var(--font-body); color: var(--text-dark); background: var(--white); transition: var(--transition); width: 100%; }
.hm-booking-form input:focus,
.hm-booking-form select:focus,
.hm-booking-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.1); }
.hm-nights-display { background: var(--light); color: var(--text-muted); cursor: default; }
.hm-booking-submit { width: 100%; justify-content: center; gap: 8px; padding: 13px 20px; font-size: 15px; border: none; cursor: pointer; border-radius: var(--radius); }
.hm-booking-notice { text-align: center; font-size: 11px; color: var(--text-muted); padding: 0 0 6px; display: flex; align-items: center; justify-content: center; gap: 5px; }
.hm-booking-notice svg { color: var(--gold); }
.hm-booking-error { background: #fff5f5; border: 1px solid #fc8181; border-radius: var(--radius); padding: 10px 14px; font-size: 13px; color: #c53030; }
.hm-booking-success { display: none; padding: 36px 26px; text-align: center; }
.hm-booking-success__icon { width: 64px; height: 64px; background: #f0fdf4; border: 2px solid #86efac; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.hm-booking-success__icon svg { color: #15803d; }
.hm-booking-success h4 { color: var(--primary); font-size: 1.1rem; margin-bottom: 8px; }
.hm-booking-success p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* Room contact card */
.hm-room-contact-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 24px; margin-top: 16px; }
.hm-room-contact-card > p { color: var(--text-muted); font-size: 13px; text-align: center; margin-bottom: 12px; }
.hm-room-contact-card .hm-contact-btn,
.hm-room-contact-card .hm-whatsapp-btn { font-size: 14px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; gap: 8px; }
.hm-room-contact-card .hm-contact-btn { margin-bottom: 10px; }

/* Related rooms section */
.hm-related-rooms { }
.hm-related-rooms .hm-rooms-grid { grid-template-columns: repeat(3, 1fr); }

/* Offers page tweak */
.hm-offer-card__title { font-size: 1.4rem; color: var(--primary); margin-bottom: 10px; }

/* ============================================================
   BOOKING MODAL POPUP
   ============================================================ */
.hm-booking-modal { position: fixed; inset: 0; z-index: 99998; display: none; align-items: center; justify-content: center; padding: 20px; }
.hm-booking-modal.hm-modal--open { display: flex; }
.hm-booking-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.75); cursor: pointer; }
.hm-booking-modal__box {
    position: relative; z-index: 1;
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%; max-width: 560px;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    animation: hmModalIn .25s ease;
}
@keyframes hmModalIn {
    from { opacity: 0; transform: translateY(-20px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.hm-booking-modal__head {
    background: var(--gold);
    padding: 24px 28px;
    display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
    position: sticky; top: 0; z-index: 1;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.hm-booking-modal__head-info h3 { color: var(--primary); margin: 0 0 4px; font-size: 1.1rem; }
.hm-booking-modal__head-info p { color: rgba(0,0,0,.75); font-size: 13px; margin: 0; }
.hm-booking-modal__close {
    background: rgba(0,0,0,.12);
    border: none; color: var(--primary);
    width: 34px; height: 34px;
    border-radius: 50%;
    font-size: 20px; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; flex-shrink: 0;
    transition: var(--transition);
}
.hm-booking-modal__close:hover { background: rgba(255,255,255,.25); }
.hm-booking-modal__body { padding: 28px; }
.hm-booking-modal__form { display: flex; flex-direction: column; gap: 14px; }
.hm-booking-modal__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hm-booking-modal .hm-form-group { display: flex; flex-direction: column; gap: 6px; }
.hm-booking-modal label { font-size: 11px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px; }
.hm-booking-modal input,
.hm-booking-modal select,
.hm-booking-modal textarea {
    padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 6px;
    font-size: 14px; font-family: var(--font-body); color: var(--text-dark);
    background: var(--white); transition: var(--transition); width: 100%;
}
.hm-booking-modal input:focus,
.hm-booking-modal select:focus,
.hm-booking-modal textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.1); }
.hm-booking-modal input[readonly] { background: var(--light); cursor: default; color: var(--text-muted); }
.hm-booking-modal__submit {
    width: 100%; padding: 14px; font-size: 15px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    border: none; cursor: pointer; border-radius: var(--radius);
}
.hm-booking-modal__notice { text-align: center; font-size: 12px; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 5px; }
.hm-booking-modal__notice svg { color: var(--gold); }
.hm-booking-modal__error { background: #fff5f5; border: 1px solid #fc8181; border-radius: var(--radius); padding: 10px 14px; font-size: 13px; color: #c53030; display: none; }
.hm-booking-modal__success { text-align: center; padding: 40px 28px; }
.hm-booking-modal__success-icon { width: 70px; height: 70px; background: #f0fdf4; border: 2px solid #86efac; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.hm-booking-modal__success-icon svg { color: #15803d; }
.hm-booking-modal__success h4 { color: var(--primary); font-size: 1.2rem; margin-bottom: 10px; }
.hm-booking-modal__success p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }

@media (max-width: 600px) {
    .hm-booking-modal__row { grid-template-columns: 1fr; }
    .hm-booking-modal__box { max-height: 96vh; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.hm-lightbox { position: fixed; inset: 0; z-index: 99999; display: none; align-items: center; justify-content: center; }
.hm-lightbox.hm-lightbox--open { display: flex; }
.hm-lightbox__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.92); cursor: pointer; }
.hm-lightbox__content { position: relative; max-width: 90vw; max-height: 90vh; display: flex; align-items: center; gap: 16px; }
.hm-lightbox__img { max-width: 80vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); }
.hm-lightbox__close { position: absolute; top: -16px; right: -16px; background: var(--gold); border: none; color: var(--primary); width: 36px; height: 36px; border-radius: 50%; font-size: 20px; display: flex; align-items: center; justify-content: center; font-weight: 700; z-index: 1; transition: var(--transition); }
.hm-lightbox__close:hover { background: var(--gold-dark); }
.hm-lightbox__prev, .hm-lightbox__next { background: rgba(201,168,76,.8); border: none; color: var(--primary); width: 44px; height: 44px; border-radius: 50%; font-size: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); z-index: 1; }
.hm-lightbox__prev:hover, .hm-lightbox__next:hover { background: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.hm-footer { background: var(--primary); }
.hm-footer__main { padding: 70px 0 40px; }
.hm-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr; gap: 40px; }
.hm-footer__brand { margin-bottom: 16px; }
.hm-footer__logo { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--gold); }
.hm-footer__logo img { max-height: 60px; }
.hm-footer__desc { color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.hm-footer__social { display: flex; gap: 10px; }
.hm-footer__social-link {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    color: rgba(255,255,255,.85);
    transition: var(--transition);
}
.hm-footer__social-link:hover { background: var(--gold); color: var(--primary); }
.hm-footer__heading { color: var(--gold); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; font-family: var(--font-body); font-weight: 700; }
.hm-footer__links { display: flex; flex-direction: column; gap: 10px; }
.hm-footer__links li a { color: rgba(255,255,255,.80); font-size: 14px; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.hm-footer__links li a::before { content: '›'; color: var(--gold); }
.hm-footer__links li a:hover { color: var(--gold-light); padding-left: 6px; }
.hm-footer__contact { display: flex; flex-direction: column; gap: 14px; }
.hm-footer__contact li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,.80); font-size: 14px; }
.hm-footer__contact svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.hm-footer__contact a { color: rgba(255,255,255,.80); }
.hm-footer__contact a:hover { color: var(--gold-light); }
.hm-footer__map { border-radius: var(--radius); overflow: hidden; height: 160px; }
.hm-footer__map iframe { width: 100%; height: 100%; border: none; display: block; }
.hm-footer__map-placeholder { background: rgba(255,255,255,.05); border: 1px dashed rgba(255,255,255,.3); border-radius: var(--radius); height: 160px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.70); font-size: 13px; text-align: center; padding: 20px; }
.hm-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
}
.hm-footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.hm-footer__bottom p { color: rgba(255,255,255,.85); font-size: 13px; margin: 0; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.hm-back-to-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 46px; height: 46px;
    background: var(--gold);
    color: var(--primary);
    border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(201,168,76,.4);
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}
.hm-back-to-top.visible { opacity: 1; visibility: visible; }
.hm-back-to-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* Spinner */
.hm-spinner { width: 40px; height: 40px; border: 3px solid rgba(0,0,0,.1); border-top-color: var(--gold); border-radius: 50%; animation: spin 0.7s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   BLOG
   ============================================================ */
.hm-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.hm-blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.hm-blog-card__img img { width: 100%; height: 220px; object-fit: cover; }
.hm-blog-card__body { padding: 24px; }
.hm-blog-card__meta { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.hm-blog-card__title { font-size: 1.1rem; margin-bottom: 10px; }
.hm-blog-card__title a { color: var(--primary); }
.hm-blog-card__title a:hover { color: var(--gold); }

/* 404 */
.hm-404 { text-align: center; padding: 120px 20px; }
.hm-404__number { font-family: var(--font-heading); font-size: 140px; color: var(--gold); line-height: 1; opacity: 0.3; }
.hm-404 h2 { margin-bottom: 16px; }
.hm-404 p { color: var(--text-muted); margin-bottom: 28px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .hm-services__grid    { grid-template-columns: repeat(2, 1fr); }
    .hm-amenities__grid   { grid-template-columns: repeat(4, 1fr); }
    .hm-footer__grid      { grid-template-columns: repeat(2, 1fr); }
    .hm-rooms-grid--listing { grid-template-columns: repeat(2, 1fr); }
    .hm-attraction__grid  { grid-template-columns: repeat(3, 1fr); }
    .hm-reach-grid        { grid-template-columns: repeat(2, 1fr); }
    .hm-room-detail__grid { grid-template-columns: 1fr 380px; gap: 32px; }
    .hm-why-book__grid    { grid-template-columns: repeat(2, 1fr); }
    .hm-loc-dist-grid     { grid-template-columns: repeat(2, 1fr); }
    .hm-loc-attr-grid     { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .hm-hamburger { display: flex; }
    .hm-nav, .hm-header__cta { display: none; }
    /* topbar — show only phone numbers, hide email & socials */
    .hm-topbar { display: block; padding: 7px 0; }
    .hm-topbar__inner { justify-content: center; }
    .hm-topbar__right { display: none; }
    .hm-topbar__link--email { display: none; }
    .hm-topbar__link--mobile { font-size: 20px; }
    .hm-topbar__link--landline { font-size: 13px; }
    .hm-header { top: 34px; }
    .hm-about__grid { grid-template-columns: 1fr; }
    .hm-about__img-wrap img { height: 380px; }
    .hm-about__badge { right: 10px; bottom: -10px; }
    .hm-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .hm-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
    .hm-stat:nth-child(2n) { border-right: none; }
    .hm-footer__grid { grid-template-columns: repeat(2, 1fr); }
    .hm-contact__grid { grid-template-columns: 1fr; }
    .hm-room-single__grid { grid-template-columns: 1fr; }
    .hm-room-detail__grid { grid-template-columns: 1fr; }
    .hm-room-detail__sidebar { position: static; }
    .hm-room-hero { height: 420px; }
    .hm-enquiry-page__grid { grid-template-columns: 1fr; }
    .hm-location__grid { grid-template-columns: 1fr; }
    .hm-trust-badges { grid-template-columns: repeat(2, 1fr); }
    .hm-attraction__grid { grid-template-columns: repeat(3, 1fr); }
    .hm-reach-grid { grid-template-columns: repeat(2, 1fr); }
    .hm-loc-map-section { grid-template-columns: 1fr; }
    .hm-loc-map-wrap iframe { min-height: 380px; }
    .hm-loc-reach-grid { grid-template-columns: repeat(2, 1fr); }
    .hm-loc-attr-grid { grid-template-columns: repeat(2, 1fr); }
    .hm-loc-book-cta__inner { flex-direction: column; text-align: center; }
    .hm-loc-book-cta__btns { justify-content: center; }
    .hm-offers-grid { grid-template-columns: repeat(2, 1fr); }
    .hm-blog-grid { grid-template-columns: repeat(2, 1fr); }
    .hm-related-rooms .hm-rooms-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 50px 0; }
    .hm-rooms-grid { grid-template-columns: 1fr; }
    .hm-rooms-grid--listing { grid-template-columns: 1fr; }
    .hm-services__grid { grid-template-columns: 1fr; }
    .hm-amenities__grid { grid-template-columns: repeat(2, 1fr); }
    .hm-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .hm-stats__grid { grid-template-columns: 1fr 1fr; }
    .hm-footer__grid { grid-template-columns: 1fr; }
    .hm-cta-banner__actions { flex-direction: column; align-items: center; }
    .hm-enquiry-strip__inner { flex-direction: column; text-align: center; }
    .hm-enquiry-strip__btns { flex-direction: column; width: 100%; }
    .hm-hero-swiper { height: 100%; }
    .hm-hero__actions { flex-direction: column; gap: 12px; }
    .hm-hero__rating { margin-bottom: 10px; }
    .hm-hero__trust span { padding: 4px 9px; font-size: 10.5px !important; }
    .hm-offers-grid { grid-template-columns: 1fr; }
    .hm-offers-page-grid { grid-template-columns: 1fr; }
    .hm-distance-grid { grid-template-columns: 1fr; }
    .hm-trust-badges { grid-template-columns: repeat(2, 1fr); }
    .hm-attraction__grid { grid-template-columns: repeat(2, 1fr); }
    .hm-reach-grid { grid-template-columns: 1fr; }
    .hm-loc-dist-grid { grid-template-columns: 1fr; }
    .hm-loc-reach-grid { grid-template-columns: 1fr; }
    .hm-loc-attr-grid { grid-template-columns: repeat(2, 1fr); }
    .hm-blog-grid { grid-template-columns: 1fr; }
    .hm-rooms-filter-bar .container { justify-content: flex-start; overflow-x: auto; padding-bottom: 4px; }
    .hm-room-filters { border-radius: 50px; }
    .hm-filter-btn { padding: 9px 18px; font-size: 12px; }
    .hm-room-hero { height: 380px; }
    .hm-room-hero__title { font-size: 1.7rem; }
    .hm-room-hero__meta { gap: 14px; margin-bottom: 14px; }
    .hm-room-stats-bar { flex-direction: column; }
    .hm-room-stat-item { border-right: none; border-bottom: 1px solid var(--border); }
    .hm-room-stat-item:last-child { border-bottom: none; }
    .hm-room-amenities-grid { grid-template-columns: 1fr; }
    .hm-policies-grid { grid-template-columns: 1fr; }
    .hm-booking-form__row { grid-template-columns: 1fr; }
    .hm-why-book__grid { grid-template-columns: 1fr 1fr; }
    .hm-related-rooms .hm-rooms-grid { grid-template-columns: 1fr; }
    .hm-footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
    .hm-room-single__meta-grid { grid-template-columns: 1fr 1fr; }
    .hm-amenities-list { grid-template-columns: 1fr; }
    .hm-form-wrap { padding: 24px; }
    .hm-form-wrap--large { padding: 24px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hm-amenities__grid { grid-template-columns: repeat(2, 1fr); }
    .hm-gallery-grid { grid-template-columns: 1fr 1fr; }
    .hm-hero-swiper { height: 100%; }
    .btn-primary, .btn-outline { padding: 11px 20px; font-size: 13px; }
    .hm-trust-badges { grid-template-columns: 1fr 1fr; }
    .hm-attraction__grid { grid-template-columns: repeat(2, 1fr); }
    .hm-stats__grid { grid-template-columns: 1fr 1fr; }
    .hm-loc-attr-grid { grid-template-columns: 1fr; }
}

@media print {
    .hm-topbar, .hm-header, .hm-footer, .hm-back-to-top, .hm-cta-banner { display: none !important; }
    body { font-size: 12pt; color: #000; }
    a { color: #000; }
}

/* ============================================================
   HOMEPAGE REDESIGN v2.0 — Enhanced Styles
   ============================================================ */

/* --- QUICK BOOK WIDGET (below hero) --- */
.hm-quick-book { background: var(--white); position: relative; z-index: 10; box-shadow: 0 4px 20px rgba(0,0,0,.08); border-top: 3px solid var(--gold); }
.hm-quick-book__strip {
    display: flex;
    align-items: stretch;
}
.hm-quick-book__group {
    flex: 1;
    padding: 14px 22px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}
.hm-quick-book__label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 5px;
}
.hm-quick-book__label svg { flex-shrink: 0; }
.hm-quick-book__input {
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 13px;
    font-family: var(--font-body);
    outline: none;
    width: 100%;
    color-scheme: light;
}
.hm-quick-book__input option { background: var(--white); color: var(--text); }
.hm-quick-book__input::placeholder { color: var(--text-light); }
.hm-quick-book__action { display: flex; align-items: stretch; flex-shrink: 0; }
.hm-quick-book__action .btn-primary {
    border-radius: 0;
    padding: 0 32px;
    font-size: 12px;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
@media (max-width: 900px) {
    .hm-quick-book__strip { flex-wrap: wrap; }
    .hm-quick-book__group { flex: 0 0 50%; border-bottom: 1px solid var(--border); }
    .hm-quick-book__action { width: 100%; }
    .hm-quick-book__action .btn-primary { width: 100%; justify-content: center; padding: 16px; border-radius: 0; }
}
@media (max-width: 520px) { .hm-quick-book__group { flex: 0 0 100%; } }

/* --- HERO ENHANCED --- */
.hm-hero__tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    margin-bottom: 20px;
}
.hm-hero__title--p {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1.2;
    color: #fff;
}
.hm-hero__overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.32) 55%, rgba(0,0,0,0.10) 100%);
}
.hm-hero__actions .btn-primary,
.hm-hero__actions .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* --- ABOUT SECTION ENHANCED --- */
.hm-about__img-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
}
.hm-about__img-wrap > img {
    border-radius: var(--radius-lg);
    object-fit: cover;
    width: 100%;
    height: 520px;
    display: block;
    box-shadow: var(--shadow-lg);
}
.hm-about__img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}
.hm-about__badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 128px;
    height: 128px;
    background: var(--gold);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
    box-shadow: 0 8px 32px rgba(201,168,76,0.45);
    z-index: 2;
}
.hm-about__badge-number { font-size: 28px; font-weight: 800; line-height: 1; }
.hm-about__badge-text { font-size: 10px; font-weight: 600; line-height: 1.3; margin-top: 5px; }
.hm-about__trust {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}
.hm-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 30px;
    border: 1px solid rgba(201,168,76,0.3);
}
.hm-trust-item svg { color: var(--gold); flex-shrink: 0; }
.hm-about__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hm-about__content { padding-left: 20px; }
.hm-highlight-icon {
    width: 36px;
    height: 36px;
    background: rgba(201,168,76,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hm-highlight-icon svg { color: var(--gold); }
@media (max-width: 992px) { .hm-about__content { padding-left: 0; } }

/* --- ROOM CARDS ENHANCED --- */
.hm-rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 992px) { .hm-rooms-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .hm-rooms-grid { grid-template-columns: 1fr; } }

.hm-room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}
.hm-room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: rgba(201,168,76,0.3);
}
.hm-room-card__image {
    position: relative;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
}
.hm-room-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}
.hm-room-card:hover .hm-room-card__image img { transform: scale(1.07); }
.hm-room-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--primary);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 3px;
    z-index: 2;
}
.hm-room-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.hm-room-card__title { font-size: 1.1rem; margin-bottom: 10px; color: var(--primary); }
.hm-room-card__price { margin-bottom: 12px; display: flex; align-items: baseline; gap: 5px; }
.hm-price-from { font-size: 11px; color: var(--text-muted); }
.hm-price-amount { font-size: 1.4rem; font-weight: 700; color: var(--gold-dark); }
.hm-price-per { font-size: 11px; color: var(--text-muted); }
.hm-room-card__meta {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.hm-room-card__meta span { display: flex; align-items: center; gap: 5px; }
.hm-room-card__meta svg { color: var(--gold); flex-shrink: 0; }
.hm-room-card__excerpt { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.65; flex: 1; }
.hm-room-card__amenities { display: flex; gap: 6px; margin-bottom: 18px; flex-wrap: wrap; }
.hm-room-amenity-icon {
    width: 34px;
    height: 34px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
    cursor: default;
    line-height: 1;
}
.hm-room-amenity-icon:hover { background: #fffbeb; border-color: var(--gold); transform: scale(1.1); }
.hm-room-card__actions { display: flex; gap: 10px; margin-top: auto; }
.hm-room-card__actions .btn-outline,
.hm-room-card__actions .btn-primary {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    font-size: 12px;
    justify-content: center;
}
.hm-room-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

/* --- SERVICES SECTION ENHANCED --- */
.hm-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 10px;
}
@media (max-width: 900px) { .hm-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .hm-services__grid { grid-template-columns: 1fr; } }

.hm-service-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(201,168,76,.22);
    border-top: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.hm-service-card:hover {
    background: rgba(201,168,76,.09);
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,.40);
}
/* Hide old emoji icon divs */
.hm-service-card__icon { display: none !important; }
.hm-service-icon {
    width: 64px;
    height: 64px;
    border: 2px solid rgba(201,168,76,.45);
    background: rgba(201,168,76,.10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.hm-service-card:hover .hm-service-icon { background: var(--gold); border-color: var(--gold); }
.hm-service-icon svg { color: var(--gold); transition: color 0.3s ease; }
.hm-service-card:hover .hm-service-icon svg { color: #1c1a17; }
.hm-service-card__title { color: var(--white); font-size: 1rem; margin-bottom: 10px; font-weight: 600; }
.hm-service-card__desc { color: rgba(255,255,255,.82); font-size: 13px; line-height: 1.7; margin: 0; }
.hm-section-desc--light { color: rgba(255,255,255,.85); }

/* --- AMENITIES ENHANCED --- */
.hm-amenities__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
@media (max-width: 900px) { .hm-amenities__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 580px) { .hm-amenities__grid { grid-template-columns: repeat(2, 1fr); } }

.hm-amenity-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 16px;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.hm-amenity-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(201,168,76,0.1);
    transform: translateY(-3px);
}
.hm-amenity-card__icon { font-size: 28px; line-height: 1; margin-bottom: 10px; display: block; }
.hm-amenity-card__title { font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 3px; }
.hm-amenity-card__desc { font-size: 11px; color: var(--text-muted); margin: 0; }

/* --- STATS ENHANCED --- */
.hm-stats { padding: 64px 0; }
.hm-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
}
@media (max-width: 768px) { .hm-stats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .hm-stats__grid { grid-template-columns: 1fr; } }

.hm-stat {
    padding: 40px 20px;
    text-align: center;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}
.hm-stat:hover { background: rgba(201,168,76,0.06); }
.hm-stat__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(201,168,76,0.1);
    border-radius: 50%;
    margin: 0 auto 16px;
}
.hm-stat__icon svg { color: var(--gold); }
.hm-stat__number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.hm-counter { color: var(--gold); }
.hm-stat__suffix { font-size: 1.8rem; font-weight: 700; color: var(--gold); }
.hm-stat__label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin: 0; }

/* --- SECTION LABEL ENHANCED --- */
.hm-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hm-section-header .hm-section-label { justify-content: center; }
.hm-section-label svg { flex-shrink: 0; }

/* --- CTA BANNER ENHANCED --- */
.hm-cta-banner {
    position: relative;
    background: #1c1a17;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding: 100px 0;
    overflow: hidden;
}
.hm-cta-banner__overlay {
    display: none;
}
.hm-cta-banner__content { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto; }
.hm-cta-banner__title { color: var(--gold); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; }
.hm-cta-banner__text { color: rgba(255,255,255,0.78); font-size: 16px; line-height: 1.8; margin-bottom: 24px; }
.hm-cta-banner__text strong { color: var(--gold-light); font-weight: 700; }
.hm-cta-banner__perks {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.hm-cta-banner__perks span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.78);
    font-size: 13px;
    font-weight: 500;
}
.hm-cta-banner__perks span svg { color: var(--gold); }
.hm-cta-banner__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hm-cta-banner__actions .btn-primary,
.hm-cta-banner__actions .btn-outline { display: inline-flex; align-items: center; gap: 8px; }
.hm-wa-btn { color: #25D366; border-color: #25D366; }
.hm-wa-btn:hover { background: #25D366; color: var(--white); }

/* --- SECTION HEADER ENHANCED --- */
.hm-section-title { letter-spacing: -0.3px; }
.hm-section-desc { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 15px; line-height: 1.75; font-weight: 400; }
.hm-section-header { margin-bottom: 48px; text-align: center; }

/* --- ABOUT HIGHLIGHTS ENHANCED --- */
.hm-about__highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}
.hm-about__highlights li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.hm-about__highlights li strong { display: block; font-size: 14px; font-weight: 600; color: var(--primary); margin-bottom: 2px; }
.hm-about__highlights li span { display: block; font-size: 13px; color: var(--text-muted); }

/* --- SECTION CTA --- */
.hm-section-cta { text-align: center; margin-top: 40px; }

/* --- LIGHT SECTION --- */
.hm-light-section { background: var(--cream); }

/* --- DARK SECTION title-white --- */
.hm-section-title--white { color: var(--white); }
.hm-section-header--light .hm-section-title { color: var(--white); }
.hm-section-header--light .hm-section-desc { color: rgba(255,255,255,0.85); }

/* ============================================================
   PREMIUM DESIGN UPGRADE
   ============================================================ */

/* Playfair Display for all headings */
:root { --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif; }
h1,h2,h3,h4,h5,h6,
.hm-hero__title, .hm-hero__title--p,
.hm-section-title, .hm-room-card__title,
.hm-service-card__title, .hm-cta-banner__title,
.hm-footer__logo, .hm-logo__name { font-family: var(--font-heading); }

/* Section title gradient on light sections */
.hm-about .hm-section-title,
.hm-rooms-section .hm-section-title,
.hm-amenities .hm-section-title {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Hero height */
.hm-hero-swiper, .hm-hero__slide { min-height: unset; }
@media (max-width: 768px) { .hm-hero-swiper, .hm-hero__slide { min-height: unset; } }

.hm-hero__title {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
}
.hm-hero__subtitle {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 0.2px;
    opacity: 0.9;
    max-width: 540px;
    margin-bottom: 36px;
}
.hm-hero__overlay {
    background: linear-gradient(105deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.32) 55%, rgba(0,0,0,0.10) 100%);
}

/* Hero content alignment */
.hm-hero__content { padding: 0 0 80px; display: flex; align-items: center; }

/* Gold top accent line on About */
.hm-about { padding-top: 90px; }
.hm-about::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent 100%);
}

/* About grid */
.hm-about__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}
@media (max-width: 960px) {
    .hm-about__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Room card - magazine style */
.hm-room-card__image { height: 280px; }
.hm-room-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.hm-room-card:hover .hm-room-card__image::after { opacity: 1; }
.hm-room-card__title { font-size: 1.2rem; letter-spacing: -0.2px; }

/* Services - subtle dot pattern */
.hm-services.hm-dark-section { position: relative; overflow: hidden; }
.hm-services.hm-dark-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(201,168,76,0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Stats - glow on numbers */
.hm-stat__number { text-shadow: 0 0 40px rgba(201,168,76,0.25); }
.hm-counter { text-shadow: inherit; }

/* Animated gold section divider */
.hm-section-divider {
    width: 70px;
    height: 2px;
    background: none;
    position: relative;
    margin: 18px auto 0;
}
.hm-section-divider::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}
.hm-section-divider::after {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    font-size: 7px;
    line-height: 1;
    background: inherit;
}
/* Fix background for light and dark sections */
.hm-about .hm-section-divider::after,
.hm-rooms-section .hm-section-divider::after,
.hm-amenities .hm-section-divider::after { background: var(--white); padding: 0 4px; }
.hm-light-section .hm-section-divider::after { background: var(--cream); padding: 0 4px; }
.hm-dark-section .hm-section-divider::after { background: #1c1a17; padding: 0 4px; }

/* Section label - decorative lines */
.hm-section-label::before,
.hm-section-label::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: currentColor;
    vertical-align: middle;
    margin: 0 4px;
    opacity: 0.6;
}

/* Nav hover underline */
.hm-nav__menu > li > a { position: relative; }
.hm-nav__menu > li > a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.hm-nav__menu > li > a:hover::after,
.hm-nav__menu > li.current-menu-item > a::after { transform: scaleX(1); }

/* Premium footer logo */
.hm-footer__logo { font-size: 1.5rem; font-weight: 700; }

/* CTA Banner */
.hm-cta-banner { padding: 120px 0; }
.hm-cta-banner__title { font-style: italic; font-size: clamp(2rem, 4.5vw, 3rem); }

/* Amenity card left border accent */
.hm-amenity-card { border-left: 3px solid transparent; }
.hm-amenity-card:hover { border-left-color: var(--gold); }

/* Button premium styling */
.btn-primary { letter-spacing: 1px; }
.btn-primary:hover { box-shadow: 0 8px 25px rgba(201,168,76,0.35); }

/* About image — premium frame */
.hm-about__img-wrap::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 24px;
    bottom: 24px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: 0;
    opacity: 0.4;
}
.hm-about__img-wrap > img,
.hm-about__img-placeholder { position: relative; z-index: 1; }
.hm-about__badge { z-index: 3; }
.hm-about__trust { z-index: 3; }

/* Responsive adjustments */
@media (max-width: 640px) {
    .hm-about__img-wrap::before { display: none; }
    .hm-about__badge { width: 100px; height: 100px; bottom: -10px; right: -10px; }
    .hm-about__badge-number { font-size: 22px; }
}


/* =========================================================
   PAGE CONTENT AREA (the_content() blocks on page templates)
   ========================================================= */
.hm-page-content { background: #fff; }
.hm-entry-content {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text, #333);
}
.hm-entry-content h2,
.hm-entry-content h3,
.hm-entry-content h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin: 1.6em 0 0.5em;
}
.hm-entry-content h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.hm-entry-content h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
.hm-entry-content p  { margin: 0 0 1.2em; }
.hm-entry-content ul,
.hm-entry-content ol {
    margin: 0 0 1.2em 1.5em;
    padding: 0;
}
.hm-entry-content li { margin-bottom: 0.4em; }
.hm-entry-content a  { color: var(--gold); text-decoration: underline; }
.hm-entry-content a:hover { color: var(--gold-dark); }
.hm-entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1em 0;
}
.hm-entry-content blockquote {
    border-left: 4px solid var(--gold);
    margin: 1.5em 0;
    padding: 0.8em 1.2em;
    background: #faf8f3;
    border-radius: 0 6px 6px 0;
    font-style: italic;
    color: var(--text-muted);
}
.hm-entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
}
.hm-entry-content th,
.hm-entry-content td {
    padding: 0.6em 1em;
    border: 1px solid #e5e7eb;
    text-align: left;
}
.hm-entry-content th { background: var(--primary); color: #fff; }
.hm-entry-content tr:nth-child(even) td { background: #f9fafb; }

/* =========================================================
   ROOM DETAIL PAGE — AMENITIES GRID
   ========================================================= */
.hm-room-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 16px;
}
.hm-room-amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #faf8f3;
    border: 1px solid #e8e0cc;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
    transition: border-color .2s, background .2s;
}
.hm-room-amenity-item:hover { background: #fff8e7; border-color: #c9a84c; }
.hm-room-amenity-icon { font-size: 22px; flex-shrink: 0; line-height: 1; }

/* =========================================================
   HERO — SIDE BOOKING CARD REDESIGN
   ========================================================= */

/* Remove old quick-book strip styles */
.hm-quick-book { display: none !important; }

.hm-hero { position: relative; overflow: hidden; }

.hm-hero__inner {
    display: block;
    height: auto;
    min-height: auto;
}

/* Slider column — mobile default, desktop overrides below */
.hm-hero__slider-col {
    position: relative;
    overflow: hidden;
    height: 88vw;
    max-height: 520px;
    min-height: 340px;
}
@media (min-width: 861px) {
    .hm-hero__slider-col { height: 100%; max-height: none; min-height: 0; }
}
.hm-hero-swiper,
.hm-hero__slider-col .swiper { height: 100% !important; min-height: unset; }
.hm-hero__slide {
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: #3a3a3a;
    background-image: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 45%, #4a4a4a 100%);
    display: flex;
    align-items: center;
}
.hm-hero__slide--no-img {
    background-image: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 30%, #4a4a4a 65%, rgba(201,168,76,.25) 100%);
}
.hm-hero__content { position: relative; z-index: 2; width: 100%; display: flex; align-items: center; justify-content: center; }
.hm-hero__content-inner { max-width: 700px; padding: 40px 40px; text-align: center; }

.hm-hero__tagline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201,168,76,.15);
    border: 1px solid rgba(201,168,76,.4);
    color: #f0d080;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.hm-hero__title {
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    margin: 0 0 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hm-hero__title--p { font-size: clamp(1.8rem, 4vw, 3.2rem); }
.hm-hero__subtitle {
    font-size: clamp(.95rem, 1.6vw, 1.1rem);
    color: rgba(255,255,255,.88);
    margin: 0 0 28px;
    line-height: 1.6;
}
.hm-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; justify-content: center; }
.hm-hero__trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.hm-hero__trust span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,.75);
    font-size: 12px;
}
.hm-hero__trust svg { color: #c9a84c; }

/* Slider nav */
.hm-hero__prev, .hm-hero__next { color: #fff !important; }
.hm-hero__prev::after, .hm-hero__next::after { font-size: 18px !important; }
.hm-hero__pagination .swiper-pagination-bullet { background: rgba(255,255,255,.5); }
.hm-hero__pagination .swiper-pagination-bullet-active { background: #c9a84c; }

/* Scroll indicator */
.hm-hero__scroll { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 5; }
.hm-scroll-indicator { width: 26px; height: 40px; border: 2px solid rgba(255,255,255,.4); border-radius: 20px; display: flex; align-items: flex-start; justify-content: center; padding-top: 6px; }
.hm-scroll-indicator span { width: 4px; height: 8px; background: rgba(255,255,255,.7); border-radius: 2px; animation: hm-scroll-bounce 1.6s ease-in-out infinite; }
@keyframes hm-scroll-bounce { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(10px); opacity: .3; } }

/* ============================================================
   HERO — VIBRANCE ENHANCEMENTS
   ============================================================ */

/* Taller, more impactful hero — desktop only */
@media (min-width: 861px) {
    .hm-hero__inner { height: 84vh !important; min-height: 560px !important; }
}

/* Ken Burns — desktop only. Mobile Safari breaks background-image when transform is on same element */
@media (min-width: 769px) {
    .swiper-slide-active.hm-hero__slide {
        animation: hm-ken-burns 7s ease-out forwards;
    }
    @keyframes hm-ken-burns {
        from { transform: scale(1); }
        to   { transform: scale(1.04); }
    }
}

/* Richer, dramatic overlay */
.hm-hero__overlay {
    background:
        linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.45) 55%, rgba(0,0,0,.80) 100%),
        linear-gradient(105deg, rgba(26,39,68,.65) 0%, transparent 60%) !important;
}

/* Opacity-only fade for rating — no transform conflict with Swiper parallax */
@keyframes hm-star-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Entrance animations — quick staggered fade-up */
@keyframes hm-fade-up {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
.swiper-slide-active .hm-hero__tagline  { animation: hm-fade-up .4s .08s ease both; }
.swiper-slide-active .hm-hero__title    { animation: hm-fade-up .45s .18s ease both; }
.swiper-slide-active .hm-hero__subtitle { animation: hm-fade-up .4s .30s ease both; }
.swiper-slide-active .hm-hero__actions  { animation: hm-fade-up .4s .40s ease both; }
.swiper-slide-active .hm-hero__trust    { animation: hm-fade-up .4s .50s ease both; }

/* Tagline — gold glow pulse */
@keyframes hm-gold-glow {
    0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
    50%     { box-shadow: 0 0 18px 5px rgba(201,168,76,.35); }
}
.hm-hero__tagline {
    animation: hm-gold-glow 3s ease-in-out infinite !important;
    background: rgba(201,168,76,.18) !important;
    border-color: rgba(201,168,76,.6) !important;
    font-size: 12px !important;
}

/* Bigger, bolder title */
.hm-hero__title {
    font-size: clamp(2.2rem, 5vw, 4rem) !important;
    text-shadow: 0 3px 30px rgba(0,0,0,.5), 0 1px 8px rgba(0,0,0,.4) !important;
    line-height: 1.08 !important;
    letter-spacing: -.01em;
}
.hm-hero__subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem) !important;
    color: rgba(255,255,255,.92) !important;
    letter-spacing: .01em;
}

/* Star rating badge — fires on page load, not Swiper-dependent */
.hm-hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 14px;
    animation: hm-star-fade .6s .1s ease both;
}
.hm-hero__stars {
    display: flex;
    gap: 3px;
}
.hm-hero__stars svg { color: #f0c040; filter: drop-shadow(0 0 4px rgba(240,192,64,.7)); }
.hm-hero__rating-text {
    color: rgba(255,255,255,.85);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: .03em;
}

/* Trust badges — more prominent */
.hm-hero__trust span {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11.5px !important;
    backdrop-filter: blur(4px);
    color: rgba(255,255,255,.9) !important;
}
.hm-hero__trust svg { filter: drop-shadow(0 0 3px rgba(201,168,76,.6)); }

/* Action buttons in hero */
.hm-hero__actions .btn-primary {
    box-shadow: 0 4px 20px rgba(201,168,76,.4);
    transition: transform .25s, box-shadow .25s !important;
}
.hm-hero__actions .btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(201,168,76,.55) !important;
}
.hm-hero__actions .btn-outline--white {
    backdrop-filter: blur(6px);
    background: rgba(255,255,255,.1);
    transition: transform .25s, background .25s !important;
}
.hm-hero__actions .btn-outline--white:hover {
    background: rgba(255,255,255,.22) !important;
    transform: translateY(-3px) !important;
}

/* Booking panel — more vibrant */
.hm-hero__booking-panel {
    background: linear-gradient(180deg, #0d1b2a 0%, #1a2744 50%, #0d1b2a 100%) !important;
}
.hm-hero__booking-panel::before {
    background: linear-gradient(180deg, #c9a84c, #f0d080 50%, #c9a84c) !important;
    width: 3px !important;
}

/* ---- BOOKING PANEL (right column) — desktop only ---- */
.hm-hero__booking-panel {
    display: none;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    position: relative;
    z-index: 10;
    overflow-y: hidden;
    height: 100%;
}
@media (min-width: 861px) {
    .hm-hero__booking-panel { display: flex; }
    .hm-hero__inner {
        display: grid;
        grid-template-columns: 1fr 340px;
    }
}
.hm-hero__booking-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, #c9a84c, #f0d080, #c9a84c);
}

.hm-quick-book-card { width: 100%; }

.hm-quick-book-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.hm-quick-book-card__icon {
    width: 34px;
    height: 34px;
    background: rgba(201,168,76,.15);
    border: 1px solid rgba(201,168,76,.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a84c;
    flex-shrink: 0;
}
.hm-quick-book-card__title {
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1px;
}
.hm-quick-book-card__sub {
    font-size: 10px;
    color: #c9a84c;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}

.hm-quick-book-card__fields { display: flex; flex-direction: column; gap: 7px; margin-bottom: 10px; }

.hm-qb-field { display: flex; flex-direction: column; gap: 3px; }
.hm-qb-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,.82);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.hm-qb-label svg { color: #c9a84c; }
.hm-qb-input {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 6px;
    color: #fff;
    padding: 7px 10px;
    font-size: 13px;
    width: 100%;
    transition: border-color .2s, background .2s;
    -webkit-appearance: none;
    color-scheme: dark;
}
.hm-qb-input:focus { outline: none; border-color: #c9a84c; background: rgba(201,168,76,.08); }
.hm-qb-input option { background: var(--white); color: var(--text); }
.hm-qb-submit {
    width: 100%;
    justify-content: center;
    padding: 10px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    border-radius: 8px;
}
.hm-quick-book-card__info {
    border-top: 1px solid rgba(255,255,255,.18);
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hm-qb-info-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255,255,255,.75);
}
.hm-qb-info-item svg { color: #c9a84c; flex-shrink: 0; }
.hm-qb-info-item strong { color: rgba(255,255,255,.92); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hm-hero__inner { grid-template-columns: 1fr 280px; }
    .hm-hero__content-inner { padding: 32px 30px; }
}

/* ---- MOBILE HERO ---- */
@media (max-width: 768px) {

    /* Slider fills viewport — tall enough to show all content */
    .hm-hero__slider-col {
        height: 108vw;
        max-height: 580px;
        min-height: 420px;
    }
    .hm-hero-swiper,
    .hm-hero__slider-col .swiper {
        height: 100% !important;
        min-height: unset;
    }

    /* Stronger overlay on mobile for readability */
    .hm-hero__overlay {
        background: linear-gradient(
            to bottom,
            rgba(10,20,40,.30) 0%,
            rgba(10,20,40,.60) 60%,
            rgba(10,20,40,.80) 100%
        );
    }
    .hm-hero__slide--no-img .hm-hero__overlay {
        background: linear-gradient(
            to bottom,
            rgba(10,20,40,.05) 0%,
            rgba(10,20,40,.15) 100%
        );
    }

    /* Content anchored to TOP — stars always visible, any overflow goes downward */
    .hm-hero__content {
        align-items: flex-start;
        padding-top: 18px;
        padding-bottom: 0;
    }
    .hm-hero__content-inner {
        text-align: center;
        padding: 0 20px;
        max-width: 100%;
    }

    /* Tagline pill — smaller, force single line */
    .hm-hero__tagline {
        font-size: 9px;
        padding: 3px 9px;
        margin-bottom: 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    /* Rating — tighter bottom gap */
    .hm-hero__rating { margin-bottom: 8px; }

    /* Title & subtitle */
    .hm-hero__title   { font-size: clamp(1.4rem, 6vw, 2rem); margin-bottom: 6px; }
    .hm-hero__subtitle { font-size: .85rem; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

    /* Action buttons — side by side, full width split */
    .hm-hero__actions {
        flex-direction: row;
        gap: 8px;
        margin-bottom: 10px;
        justify-content: center;
    }
    .hm-hero__actions .btn-primary,
    .hm-hero__actions .btn-outline {
        flex: 1;
        justify-content: center;
        padding: 10px 12px;
        font-size: .82rem;
    }

    /* Trust badges — single row scrollable */
    .hm-hero__trust {
        gap: 12px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 2px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .hm-hero__trust::-webkit-scrollbar { display: none; }
    .hm-hero__trust span { font-size: 11px; white-space: nowrap; flex-shrink: 0; }

    /* Hide desktop booking panel completely — mobile bar handles booking */
    .hm-hero__booking-panel { display: none; }
    .hm-quick-book-card { display: none; }

    /* Scroll indicator hidden on mobile */
    .hm-hero__scroll { display: none; }
}

@media (max-width: 480px) {
    .hm-hero__slider-col { height: 115vw; max-height: 520px; min-height: 400px; }
    .hm-hero__title { font-size: clamp(1.3rem, 6.5vw, 1.8rem); }
}

/* Mobile Booking Quick Bar (shown only on mobile, below slider) */
.hm-mobile-book-bar {
    display: none;
}
@media (max-width: 768px) {
    .hm-mobile-book-bar {
        display: flex;
        align-items: stretch;
        background: var(--white);
        border-top: 3px solid var(--gold);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 3px 12px rgba(0,0,0,.06);
    }
    .hm-mobile-book-bar__field {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px 8px;
        border-right: 1px solid var(--border);
        cursor: pointer;
        min-width: 0;
    }
    .hm-mobile-book-bar__field:last-child { border-right: none; }
    .hm-mobile-book-bar__label {
        font-size: 9px;
        color: var(--gold-dark);
        text-transform: uppercase;
        letter-spacing: .08em;
        font-weight: 600;
        margin-bottom: 2px;
    }
    .hm-mobile-book-bar__val {
        font-size: 12px;
        color: var(--primary);
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 90px;
    }
    .hm-mobile-book-bar__actions {
        display: flex;
        flex-direction: column;
        flex-shrink: 0;
    }
    .hm-mobile-book-bar__btn {
        flex: 1;
        background: var(--gold, #c9a84c);
        color: var(--primary);
        font-weight: 700;
        font-size: 12px;
        padding: 8px 14px;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        white-space: nowrap;
        transition: background .2s;
    }
    .hm-mobile-book-bar__btn:hover { background: #b8961e; }
    .hm-mobile-book-bar__btn--call {
        background: var(--navy, #1a2744);
        color: var(--gold, #c9a84c);
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .hm-mobile-book-bar__btn--call:hover { background: #243460; color: var(--gold); }

    /* Hero slider — hide "Explore Rooms" button on mobile, keep only Book Now */
    .hm-hero__actions .btn-primary { display: none; }

    /* Book Now in slider — solid gold fill on mobile so it stands out */
    .hm-hero__actions .btn-outline--white {
        background: var(--gold, #c9a84c);
        color: var(--primary, #1a2744);
        border-color: var(--gold, #c9a84c);
        font-weight: 700;
        width: 100%;
        justify-content: center;
    }
    .hm-hero__actions .btn-outline--white:hover {
        background: #b8961e;
        border-color: #b8961e;
        color: var(--primary, #1a2744);
    }
}

/* ============================================================
   HERO CTA STRIP
   ============================================================ */
.hm-hero-strip {
    background: var(--cream);
    border-top: 3px solid var(--gold);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.hm-hero-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 40px;
    min-height: 90px;
    max-width: 100%;
    width: 100%;
}
.hm-hero-strip__usps {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
}
.hm-hero-strip__usp {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 20px;
    flex: 1;
}
.hm-hero-strip__usp-icon {
    color: var(--gold, #c9a84c);
    flex-shrink: 0;
    display: flex;
}
.hm-hero-strip__usp strong {
    display: block;
    color: var(--primary);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .3px;
    line-height: 1.2;
}
.hm-hero-strip__usp span {
    display: block;
    color: var(--text-muted);
    font-size: .72rem;
    margin-top: 2px;
}
.hm-hero-strip__divider {
    width: 1px;
    height: 36px;
    background: var(--border);
    flex-shrink: 0;
}
.hm-hero-strip__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    flex-shrink: 0;
}
.hm-hero-strip__btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 6px;
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .2s, transform .15s;
}
.hm-hero-strip__btn:hover { opacity: .85; transform: translateY(-1px); }
.hm-hero-strip__btn--wa  { background: #25d366; color: #fff; }
.hm-hero-strip__btn--call { background: var(--primary); color: #fff; border: 1px solid var(--primary); }
.hm-hero-strip__btn--call:hover { background: #3a3a3a; color: #fff; }
.hm-hero-strip__btn--book { background: var(--gold); color: var(--primary); font-weight: 700; }

@media (max-width: 1024px) {
    .hm-hero-strip__usp { padding: 16px 16px; gap: 10px; }
}
@media (max-width: 768px) {
    .hm-hero-strip__inner {
        flex-direction: column;
        min-height: auto;
        padding: 16px;
        gap: 12px;
    }
    .hm-hero-strip__usps {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        gap: 0;
    }
    .hm-hero-strip__usp {
        padding: 10px 10px;
        flex: unset;
        border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .hm-hero-strip__usp:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.07); }
    .hm-hero-strip__usp-icon svg { width: 16px; height: 16px; }
    .hm-hero-strip__usp strong { font-size: .78rem; }
    .hm-hero-strip__usp span   { font-size: .68rem; }
    .hm-hero-strip__divider { display: none; }
    .hm-hero-strip__actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .hm-hero-strip__btn {
        justify-content: center;
        padding: 10px 8px;
        font-size: .8rem;
        border-radius: 8px;
    }
    /* Book Now spans full width */
    .hm-hero-strip__btn--book {
        grid-column: 1 / -1;
        padding: 12px;
        font-size: .88rem;
    }
}
@media (max-width: 400px) {
    .hm-hero-strip__actions { grid-template-columns: 1fr; }
    .hm-hero-strip__btn--book { grid-column: unset; }
}

/* ============================================================
   ABOUT SECTION — MODERN REDESIGN
   ============================================================ */
.hm-about {
    background: #fff;
    padding: 100px 0 !important;
    position: relative;
    overflow: hidden;
}
.hm-about__grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 80px !important;
    align-items: center !important;
}

/* ---- Image column ---- */
.hm-about__image-col {
    position: relative;
    padding: 30px 0 30px 30px;
}
.hm-about__deco-shape {
    position: absolute;
    top: 0; left: 0;
    width: 75%;
    height: 90%;
    background: linear-gradient(135deg, rgba(201,168,76,.08) 0%, rgba(26,39,68,.05) 100%);
    border-radius: 20px;
    z-index: 0;
}
.hm-about__img-main {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(26,39,68,.18);
}
.hm-about__img-main img {
    width: 100% !important;
    height: 520px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 16px !important;
    filter: none !important;
}
.hm-about__img-frame {
    position: absolute;
    bottom: -12px; right: -12px;
    width: 60%;
    height: 60%;
    border: 3px solid var(--gold, #c9a84c);
    border-radius: 12px;
    z-index: -1;
    pointer-events: none;
}

/* Floating years badge */
.hm-about__years-badge {
    position: absolute;
    bottom: 10px;
    left: -10px;
    z-index: 10;
    background: var(--primary);
    color: #fff;
    border-radius: 16px;
    padding: 18px 22px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(26,39,68,.35);
    border: 2px solid rgba(201,168,76,.4);
    min-width: 110px;
}
.hm-about__years-num {
    display: block;
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gold, #c9a84c);
    line-height: 1;
}
.hm-about__years-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,.7);
    margin-top: 6px;
    line-height: 1.4;
}

/* Floating rating card */
.hm-about__rating-card {
    position: absolute;
    top: 20px;
    right: -16px;
    z-index: 10;
    background: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
    text-align: center;
    border-top: 3px solid var(--gold, #c9a84c);
    min-width: 130px;
}
.hm-about__stars {
    display: flex;
    gap: 2px;
    justify-content: center;
    margin-bottom: 6px;
}
.hm-about__rating-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 2px;
}
.hm-about__rating-sub {
    font-size: 11px;
    color: var(--text-light);
    margin: 0;
}

/* ---- Content column ---- */
.hm-about__content {
    padding-left: 10px !important;
}
.hm-about__heading {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(1.8rem, 3.2vw, 2.8rem) !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
    line-height: 1.2 !important;
    margin: 10px 0 20px !important;
}
.hm-about__divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}
.hm-about__divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold, #c9a84c), transparent);
}
.hm-about__text {
    color: var(--text-muted) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.78 !important;
    margin-bottom: 14px !important;
}
.hm-about__text--light { color: var(--text-muted) !important; }

/* Highlights 2x2 grid */
.hm-about__highlights {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
    margin: 28px 0 36px !important;
    list-style: none !important;
    padding: 0 !important;
}
.hm-about__hl-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: var(--cream);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--border);
    transition: border-color .25s, box-shadow .25s, transform .25s;
}
.hm-about__hl-card:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 24px rgba(201,168,76,.12);
    transform: translateY(-2px);
}
.hm-about__hl-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}
.hm-about__hl-body strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}
.hm-about__hl-body span {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.45;
}
.hm-about__actions {
    display: flex !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
    margin-top: 0 !important;
}
.hm-about__actions .btn-primary,
.hm-about__actions .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 992px) {
    .hm-about__grid { grid-template-columns: 1fr !important; gap: 50px !important; }
    .hm-about__image-col { padding: 20px; max-width: 560px; margin: 0 auto; }
    .hm-about__rating-card { right: 0; }
    .hm-about__content { padding-left: 0 !important; }
}
@media (max-width: 600px) {
    .hm-about__highlights { grid-template-columns: 1fr !important; }
    .hm-about__img-main img { height: 320px !important; }
    .hm-about__years-badge { left: 0; }
}

/* =====================================================================
   OFFER POPUP MODAL
   ===================================================================== */
.hm-offer-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hm-offer-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(3px);
}
.hm-offer-modal__box {
    position: relative;
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 820px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    animation: hmModalIn .25s ease;
}
.hm-offer-modal__box--wide {
    max-width: 1100px;
}
@keyframes hmModalIn {
    from { opacity: 0; transform: translateY(30px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.hm-offer-modal__close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: rgba(0,0,0,.08);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    color: #333;
    transition: background .2s;
}
.hm-offer-modal__close:hover { background: rgba(0,0,0,.18); }
.hm-offer-modal__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.hm-offer-modal__img-wrap {
    position: relative;
    border-radius: 12px 0 0 12px;
    overflow: hidden;
    min-height: 320px;
}
.hm-offer-modal__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hm-offer-modal__content {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.hm-offer-modal__content h2 {
    font-size: 1.5rem;
    color: #1a2b4a;
    margin: 0;
    line-height: 1.3;
}
.hm-offer-modal__body { color: var(--text-muted); line-height: 1.7; font-size: .95rem; }
.hm-offer-modal__terms { background: #f8f6ee; border-left: 3px solid #c8a84b; padding: 12px 16px; border-radius: 4px; font-size: .85rem; color: var(--text-muted); }
.hm-offer-modal__terms p { margin: 6px 0 0; }
.hm-offer-modal__book { display: inline-block; align-self: flex-start; margin-top: auto; }

/* All offers grid inside modal */
.hm-all-offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    padding: 0 24px 24px;
}
.hm-offer-card--sm .hm-offer-card__image img { height: 160px; }

/* Mobile */
@media (max-width: 680px) {
    .hm-offer-modal__inner { grid-template-columns: 1fr; }
    .hm-offer-modal__img-wrap { border-radius: 12px 12px 0 0; min-height: 200px; }
    .hm-offer-modal__content { padding: 24px 20px; }
}
