:root {
  --brand: #669bbc;
  --brand-dark: #4f7e9c;
  --ink: #16344a;        /* deep teal-navy for dark bands/footer */
}

body { color: #243239; }
.brand-header { box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.brand-logo { height: 34px; width: 34px; border-radius: 8px; object-fit: cover; background: #fff; }

/* Floating WhatsApp contact button */
.whatsapp-fab {
  position: fixed; inset-inline-start: 18px; bottom: 18px; z-index: 1030;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; box-shadow: 0 8px 22px rgba(0,0,0,.28);
  transition: transform .15s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }

.brand-header {
  background-color: var(--brand);
}
.brand-header .navbar-brand,
.brand-header .btn-outline-light {
  color: #fff;
}

.btn-brand,
.brand-badge {
  background-color: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.btn-brand:hover {
  background-color: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}

a {
  color: var(--brand);
}
a:hover {
  color: var(--brand-dark);
}

/* Hero + search */
.hero {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}
.hero-overlay {
  background: rgba(0, 0, 0, 0.15);
}
.search-wrap {
  max-width: 920px;
}
.search-box {
  background: #fff;
}

/* Room imagery */
.room-img {
  height: 200px;
  object-fit: cover;
}
.object-cover {
  object-fit: cover;
}

/* ============================================================
   Landing page (Stella-Stays-style)
   ============================================================ */

/* Hero */
.hero-landing { position: relative; min-height: 78vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.03); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,30,45,.30) 0%, rgba(11,30,45,.15) 40%, rgba(11,30,45,.65) 100%); }
.hero-inner { position: relative; z-index: 2; padding-bottom: 2.5rem; padding-top: 4rem; width: 100%; }
.hero-copy { color: #fff; max-width: 640px; margin-bottom: 1.5rem; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.hero-title { font-size: clamp(1.9rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; margin-bottom: .5rem; }
.hero-sub { font-size: clamp(1rem, 2.2vw, 1.3rem); opacity: .95; margin: 0; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.1rem; }
.hero-badge { background: rgba(255,255,255,.18); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.3);
  color: #fff; border-radius: 2rem; padding: .4rem .9rem; font-size: .92rem; }
.hero-badge b { color: #ffd66b; }
.hero-badge small { opacity: .9; }

/* Rating summary (reviews heading) */
.rating-summary { display: inline-flex; align-items: center; gap: .6rem; margin-top: .35rem; }
.rating-score { font-size: 1.8rem; font-weight: 800; color: var(--ink); }
.rating-stars { color: #f4b740; letter-spacing: 2px; font-size: 1.1rem; }
.rating-count { color: #6b7b85; font-size: .9rem; }

/* Search card (floats over hero bottom) */
.search-card { background: #fff; border-radius: 1.25rem; padding: 1rem 1.1rem; }
.search-card .search-box { box-shadow: none !important; padding: 0 !important; }

/* Sections */
.section { padding: 3.5rem 0; }
.section-head { margin-bottom: 1.75rem; }
.section-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: var(--ink); margin-bottom: .35rem; }
.section-desc { color: #6b7b85; margin: 0; }

/* Room tiles */
.room-tile { display: block; background: #fff; border-radius: 1rem; overflow: hidden; text-decoration: none; color: inherit;
  box-shadow: 0 6px 24px rgba(16,52,74,.08); transition: transform .2s ease, box-shadow .2s ease; height: 100%; }
.room-tile:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(16,52,74,.16); color: inherit; }
.room-tile-img { height: 220px; background-color: var(--brand); background-size: cover; background-position: center; }
.room-tile-body { padding: 1.1rem 1.2rem 1.3rem; }
.room-tile-name { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin: 0; }
.room-tile-price { color: var(--brand); font-weight: 800; white-space: nowrap; }
.room-tile-price small { color: #98a6ad; font-weight: 500; }
.room-tile-desc { color: #6b7b85; font-size: .92rem; margin: .5rem 0 .75rem; }
.room-tile-meta { display: flex; gap: 1rem; color: #56666e; font-size: .88rem; }

/* Features band */
.features-band { background: #f5f8fa; }
.feature-icon { width: 72px; height: 72px; margin: 0 auto 1rem; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.9rem; background: #fff; color: var(--brand); box-shadow: 0 6px 20px rgba(16,52,74,.1); }
.feature-title { font-size: 1.15rem; font-weight: 700; color: var(--ink); }
.feature-desc { color: #6b7b85; max-width: 320px; margin: 0 auto; }

/* Amenities */
.amenity-grid { display: flex; flex-wrap: wrap; gap: .65rem; }
.amenity-pill { background: #eef4f8; color: var(--brand-dark); border: 1px solid #dce8f0; border-radius: 2rem;
  padding: .5rem 1rem; font-weight: 600; font-size: .92rem; }

/* Reviews */
.reviews-band { background: #f5f8fa; }
.review-card { background: #fff; border-radius: 1rem; padding: 1.4rem 1.3rem; height: 100%;
  box-shadow: 0 6px 24px rgba(16,52,74,.07); display: flex; flex-direction: column; }
.review-stars { color: #f4b740; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: .6rem; }
.review-text { color: #3a4a52; line-height: 1.7; flex: 1; margin-bottom: 1rem; }
.review-author { display: flex; align-items: center; gap: .7rem; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--brand); color: #fff; font-weight: 800; font-size: 1.1rem; }
.review-name { font-weight: 700; color: var(--ink); }
.review-country { color: #8a99a2; font-size: .85rem; }

/* Map */
.map-wrap { border-radius: 1rem; overflow: hidden; line-height: 0; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; }

/* App CTA band */
.app-band { background: linear-gradient(135deg, var(--brand), var(--ink)); color: #fff; padding: 3.5rem 0; }
.app-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: .4rem; }
.app-sub { opacity: .9; margin-bottom: 1.25rem; }
.badge-store { display: inline-flex; align-items: center; gap: .4rem; background: #000; color: #fff !important;
  border: 1px solid rgba(255,255,255,.25); border-radius: .6rem; padding: .55rem 1rem; font-weight: 600; text-decoration: none; }
.badge-store:hover { background: #1a1a1a; color: #fff; }
.badge-store-lg { padding: .7rem 1.3rem; font-size: 1.02rem; }
.phone-mock { width: 180px; height: 330px; margin: 0 auto; background: #fff; border-radius: 1.8rem; padding: .55rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.phone-screen { width: 100%; height: 100%; border-radius: 1.4rem; background: linear-gradient(160deg, var(--brand), var(--brand-dark));
  display: grid; place-items: center; color: #fff; font-weight: 800; }

/* Footer */
.site-footer { background: var(--ink); color: #cfdbe3; }
.site-footer .h5 { color: #fff; }
.footer-muted { color: #9fb3c0; }
.footer-head { color: #fff; font-weight: 700; margin-bottom: .75rem; }
.site-footer a { display: block; color: #cfdbe3; text-decoration: none; padding: .2rem 0; }
.site-footer a:hover { color: #fff; }
.footer-rule { border-color: rgba(255,255,255,.12); margin: 1.5rem 0 1rem; }

