/* =============================================
   BlueSky Hotel – Modern Luxury Design
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy:  #0a1628;
  --blue:  #1565C0;
  --gold:  #C9A84C;
  --light: #f7f8fc;
  --white: #ffffff;
  --gray:  #6b7280;
  --dark:  #111827;
}

/* ---- RESET / BASE ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--light);
  color: var(--dark);
  font-size: 16px;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', serif;
}

/* ---- NAVBAR ---- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s;
  background: transparent;
  padding: 1.2rem 0;
}
.site-nav.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 0.7rem 0;
}
.site-nav .navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white) !important;
  letter-spacing: 1px;
}
.site-nav .navbar-brand span {
  color: var(--gold);
}
.site-nav .nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--gold) !important;
}
.btn-book-nav {
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: 2rem;
  padding: 0.5rem 1.5rem !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
}
.btn-book-nav:hover {
  background: #e0bc65;
  transform: translateY(-2px);
  color: var(--navy) !important;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/BlueSky  (1).jpg') center center / cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,40,0.55) 0%, rgba(10,22,40,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 1rem;
}
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.88;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.btn-hero {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2.8rem;
  border-radius: 3rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.btn-hero:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
.btn-hero-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2.5rem;
  border-radius: 3rem;
  border: 2px solid rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.25s;
  margin-bottom: 0.5rem;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}
.hero-scroll i {
  display: block;
  font-size: 1.4rem;
  animation: bounce 2s infinite;
  margin-top: 0.4rem;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ---- QUICK BOOKING BAR ---- */
.booking-bar {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 16px 60px rgba(10,22,40,0.22);
  border-top: 4px solid var(--gold);
  padding: 1.8rem 2rem;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}
.booking-bar label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.3rem;
  display: block;
}
.booking-bar .form-control,
.booking-bar .form-select {
  border: none;
  border-bottom: 2px solid #e5e7eb;
  border-radius: 0;
  padding: 0.5rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  background: transparent;
  box-shadow: none;
}
.booking-bar .form-control:focus,
.booking-bar .form-select:focus {
  border-bottom-color: var(--gold);
  box-shadow: none;
}
.btn-search {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 0.75rem;
  padding: 0.9rem 2.2rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  width: 100%;
  transition: background 0.2s, transform 0.2s;
}
.btn-search:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

/* ---- SECTIONS ---- */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.section-lead {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.7;
}

/* ---- ROOM CARDS ---- */
.room-card {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10,22,40,0.08);
  background: var(--white);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 48px rgba(10,22,40,0.14);
}
.room-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.room-card:hover .room-card-img {
  transform: scale(1.06);
}
.room-card-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 240px;
  background: linear-gradient(to top, rgba(10,22,40,0.55) 0%, transparent 60%);
  pointer-events: none;
}
.room-card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
}
.room-card-body {
  padding: 1.5rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.room-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.room-card-text {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.1rem;
  flex: 1;
}
.room-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 1.2rem;
}
.room-card-meta i { color: var(--gold); margin-right: 0.3rem; }
.room-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
}
.room-card-price span {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--gray);
}
.btn-room {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  border: none;
  letter-spacing: 0.3px;
}
.btn-room:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- AMENITIES ---- */
.amenity-box {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 1.2rem;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(10,22,40,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.amenity-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 32px rgba(10,22,40,0.11);
}
.amenity-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, #e8f0fe, #d0e4ff);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
  color: var(--blue);
}
.amenity-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.amenity-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 0.75rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: 0.8rem;
  position: relative;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s, filter 0.4s;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  background: var(--white);
  border-radius: 1.2rem;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(10,22,40,0.06);
  height: 100%;
  transition: transform 0.25s;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }
.testimonial-text {
  font-size: 0.97rem;
  color: #374151;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.9rem;
  border: 2px solid var(--gold);
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ---- STATS STRIP ---- */
.stats-strip {
  background: var(--navy);
  color: var(--white);
  border-radius: 1.2rem;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: url('../img/BlueSky  (103).jpg') center center / cover no-repeat;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,22,40,0.88) 45%, rgba(10,22,40,0.2) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
  padding: 3rem;
  color: var(--white);
}
.cta-title {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.cta-sub {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 1.8rem;
  max-width: 420px;
  line-height: 1.7;
}
.btn-cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2.5rem;
  border-radius: 3rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-cta:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.footer-brand span { color: var(--gold); }
.footer-desc { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}
.footer-contact-item i { color: var(--gold); margin-top: 0.15rem; font-size: 1rem; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-right: 0.5rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  padding: 1.2rem 0;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.4) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.page-hero-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.page-hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
}

/* ---- FORMS ---- */
.form-section {
  background: var(--white);
  border-radius: 1.3rem;
  box-shadow: 0 8px 36px rgba(10,22,40,0.08);
  padding: 2.5rem;
}
.form-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.4rem;
}
.form-control, .form-select {
  border: 1.5px solid #e5e7eb;
  border-radius: 0.7rem;
  padding: 0.8rem 1rem;
  font-size: 0.97rem;
  color: var(--dark);
  transition: border-color 0.2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21,101,192,0.12);
}
.btn-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 0.7rem;
  padding: 0.9rem 2.5rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.btn-submit:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

/* ---- ABOUT FEATURE LIST ---- */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}
.feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #e8f0fe, #d0e4ff);
  border-radius: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--blue);
  flex-shrink: 0;
}
.feature-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.feature-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* ---- UTILITIES ---- */
.bg-light-blue { background: #f0f5ff; }
.divider-gold {
  width: 56px; height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0.8rem 0 1.5rem;
}
.divider-gold.mx-auto { margin-left: auto; margin-right: auto; }

/* ==============================================
   MOBILE RESPONSIVE
   ============================================= */

/* ── Navbar ── */
@media (max-width: 991px) {
  .site-nav .navbar-collapse {
    background: var(--navy);
    border-radius: 0 0 1rem 1rem;
    padding: 0.75rem 1rem 1rem;
    margin-top: 0.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  }
  .site-nav .navbar-collapse .navbar-nav { gap: 0 !important; }
  .site-nav .nav-link {
    padding: 0.55rem 0.5rem !important;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .btn-book-nav {
    display: inline-block;
    margin-top: 0.6rem;
    width: 100%;
    text-align: center;
  }
}

/* ── Hero ── */
@media (max-width: 767px) {
  .hero { min-height: 100svh; }
  .hero-sub { font-size: 1rem; padding: 0 0.5rem; }
  .btn-hero, .btn-hero-outline {
    display: block;
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 0.75rem;
    padding: 0.85rem 1.5rem;
  }
  .hero-scroll { display: none; }
  .hero-badge { font-size: 0.7rem; letter-spacing: 2px; }
}

/* ── Booking bar ── */
@media (max-width: 767px) {
  .booking-bar { padding: 1.2rem 1rem; margin-top: -1.5rem; border-radius: 0.8rem; }
  .btn-search { padding: 0.75rem 1rem; }
}

/* ── Section headings ── */
@media (max-width: 575px) {
  .section-heading { font-size: 1.5rem; }
  .section-lead { font-size: 0.92rem; }
}

/* ── Stats strip ── */
@media (max-width: 575px) {
  .stat-num { font-size: 2rem; }
  .stats-strip { border-radius: 0.8rem; }
  .stats-strip .col-6 { padding: 1rem 0.5rem; text-align: center; }
}

/* ── Gallery ── */
@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 0.5rem;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }
}
@media (max-width: 400px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
}

/* ── Amenity boxes ── */
@media (max-width: 575px) {
  .amenity-box { padding: 1rem 0.5rem; }
  .amenity-icon { width: 44px; height: 44px; font-size: 1.1rem; margin-bottom: 0.7rem; }
  .amenity-title { font-size: 0.78rem; font-weight: 700; margin-bottom: 0.2rem; }
  .amenity-desc { font-size: 0.72rem; line-height: 1.4; }
}
@media (max-width: 360px) {
  .amenity-box { padding: 0.75rem 0.3rem; }
  .amenity-icon { width: 38px; height: 38px; font-size: 1rem; }
  .amenity-title { font-size: 0.72rem; }
  .amenity-desc { display: none; }
}

/* ── Room cards ── */
@media (max-width: 575px) {
  .room-card-body { padding: 1.2rem 1.2rem 1.5rem; }
  .room-card-img { height: 200px; }
  .room-card-price { font-size: 1.35rem; }
  .room-card-meta { flex-wrap: wrap; gap: 0.5rem; }
}

/* ── Testimonials ── */
@media (max-width: 575px) {
  .testimonial-card { padding: 1.5rem; }
  .testimonial-text { font-size: 0.9rem; }
}

/* ── CTA Banner ── */
@media (max-width: 767px) {
  .cta-content { padding: 2rem 1.5rem; }
  .cta-title { font-size: 1.6rem; }
  .cta-sub { font-size: 0.93rem; max-width: 100%; }
  .cta-banner { min-height: 280px; }
  .cta-banner-overlay {
    background: linear-gradient(to bottom, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.65) 100%);
  }
}
@media (max-width: 400px) {
  .cta-title { font-size: 1.35rem; }
  .btn-cta { padding: 0.75rem 1.5rem; font-size: 0.92rem; }
}

/* ── Page hero (inner pages) ── */
@media (max-width: 767px) {
  .page-hero { min-height: 220px; padding-bottom: 1.5rem; }
  .page-hero-title { font-size: 1.8rem; }
}
@media (max-width: 400px) {
  .page-hero-title { font-size: 1.4rem; }
}

/* ── Forms / form-section ── */
@media (max-width: 767px) {
  .form-section { padding: 1.5rem 1rem; border-radius: 0.9rem; }
}
@media (max-width: 400px) {
  .form-section { padding: 1.1rem 0.75rem; }
}

/* ── Footer ── */
@media (max-width: 767px) {
  .footer-bottom .container { flex-direction: column; gap: 0.4rem; text-align: center; }
  .footer-desc { max-width: 100%; }
  .footer-social { margin-top: 0.5rem; }
}
@media (max-width: 575px) {
  .footer-brand { font-size: 1.5rem; }
}

/* ── Booking wizard page ── */
@media (max-width: 575px) {
  .bk-step-label { font-size: 0.62rem; letter-spacing: 0; }
  .bk-summary-row { font-size: 0.82rem; }
}

/* ── Rooms page ── */
@media (max-width: 767px) {
  .room-detail-flex { flex-direction: column !important; }
}

/* ── Feature items ── */
@media (max-width: 575px) {
  .feature-item { gap: 0.8rem; }
  .feature-icon { width: 42px; height: 42px; font-size: 1.1rem; }
  .feature-title { font-size: 0.95rem; }
}

/* ── Global overflow guard ── */
html, body { overflow-x: hidden; max-width: 100%; }
section { overflow-x: hidden; }
@media (max-width: 575px) {
  .container { padding-left: 1rem; padding-right: 1rem; }
}

/* ── Touch-friendly tap targets ── */
@media (max-width: 767px) {
  .btn-hero, .btn-cta, .btn-room, .btn-submit, .btn-search { min-height: 48px; }
  .site-nav .nav-link { min-height: 44px; display: flex; align-items: center; }
}
