* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --teal: #0F7A8C;
  --teal-dark: #085A69;
  --teal-light: #E1F4F7;
  --teal-mid: #1D9EAF;
  --amber: #F4A623;
  --white: #ffffff;
  --off-white: #F8FBFC;
  --text: #1a2e35;
  --text-muted: #5a7a82;
  --border: #D0E8EC;
  --radius: 12px;
  --radius-lg: 20px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

/* TOP CONTACT BAR */
.top-contact-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--teal-dark);
  padding: 7px 5%;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  flex-wrap: wrap;
}

.top-contact-bar span {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 100px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo img {
  height: 80px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-cta {
  background: var(--teal);
  color: #fff;
  padding: 9px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background .2s;
}

.nav-cta:hover {
  background: var(--teal-dark);
}

/* HERO */
.hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero.jpeg') center center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 74, 85, 0.82) 0%, rgba(8, 74, 85, 0.45) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8%;
  max-width: 620px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-content h1 span {
  color: #7DDCE8;
}

.hero-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .82);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: var(--teal-dark);
  padding: 13px 30px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .6);
  padding: 13px 30px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.hero-stats {
  position: absolute;
  bottom: 40px;
  left: 8%;
  right: 8%;
  z-index: 2;
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 560px;
}

.hero-stat {
  flex: 1;
  padding: 16px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, .7);
  margin-top: 2px;
}

/* SECTION COMMON */
section {
  padding: 40px 8%;
}

.section-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.g-main {
  grid-row: span 2;
}

.gallery-grid div {
  overflow: hidden;
  border-radius: var(--radius);
}

/* ROOMS SECTION */
.rooms-section {
  background: #F8FBFC;
}

/* ── Floor Group Container ── */
.floor-group {
  margin-bottom: 40px;
}

.floor-group:last-child {
  margin-bottom: 0;
}

/* ── Floor Header Banner ── */
.floor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 16px 24px;
  border-bottom: 3px solid var(--teal);
}

.floor-header--suite {
  border-bottom-color: #C9961A;
}

.floor-header--hall {
  border-bottom-color: var(--teal-dark);
}

.floor-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.floor-number-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floor-number-badge--gold {
  background: #FEF3DC;
  color: #8B5E00;
}

.floor-number-badge--teal {
  background: var(--teal-dark);
  color: #fff;
}

.floor-header-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.floor-header-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.floor-header-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 5px 14px;
  border-radius: 20px;
}

.floor-header-tag--gold {
  color: #8B5E00;
  background: #FEF3DC;
}

.floor-header-tag--teal {
  color: #fff;
  background: var(--teal-dark);
}

/* ── Rooms Row (under floor header) ── */
.rooms-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 20px;
}

/* ── Room Card ── */
.room-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}

.room-card:hover {
  box-shadow: 0 10px 36px rgba(15, 122, 140, .13);
  transform: translateY(-4px);
}

.room-card--suite {
  background: #FFFDF5;
  border-color: #F0DBA0;
}

.room-card--suite:hover {
  box-shadow: 0 10px 36px rgba(201, 150, 26, .15);
}

/* ── Room Image Wrap ── */
.room-img-wrap {
  position: relative;
  overflow: hidden;
}

.room-img-wrap img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.room-card:hover .room-img-wrap img {
  transform: scale(1.05);
}

.room-floor-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .04em;
  backdrop-filter: blur(6px);
}

.room-floor-badge--gold {
  color: #8B5E00;
}

/* ── Room Body ── */
.room-body {
  padding: 18px 20px 20px;
}

.room-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.room-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

/* ── Room Amenity Tags ── */
.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.room-tag {
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.room-card--suite .room-tag {
  background: #FEF3DC;
  color: #8B5E00;
}

/* ── Price Row ── */
.room-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.price-tag {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--teal);
}

.price-tag span {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

.price-tag--gold {
  color: #C9961A;
}

.book-btn {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .15s;
  font-family: 'Poppins', sans-serif;
}

.book-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.book-btn--gold {
  background: #C9961A;
}

.book-btn--gold:hover {
  background: #9C7413;
}

/* ══════════════════════════════════
   MEETING HALL CARD
══════════════════════════════════ */
.hall-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}

.hall-img-wrap {
  position: relative;
  overflow: hidden;
}

.hall-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.hall-card:hover .hall-img-wrap img {
  transform: scale(1.04);
}

.hall-capacity-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(8, 90, 105, 0.9);
  backdrop-filter: blur(6px);
  color: #fff;
  border-radius: 14px;
  padding: 10px 20px;
  text-align: center;
}

.hall-capacity-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.hall-capacity-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.75);
  margin-top: 3px;
  letter-spacing: .04em;
}

.hall-body {
  padding: 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hall-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
}

.hall-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.hall-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

.hall-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.hall-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

.hall-feature-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.hall-ideal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.hall-ideal-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.hall-ideal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hall-ideal-tag {
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.hall-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}

.hall-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal-dark);
}

.hall-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

.hall-price-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
}

.hall-book-btn {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}

.hall-book-btn:hover {
  opacity: .88;
  transform: translateY(-2px);
}

/* Responsive: hall card stacks on smaller screens */
@media (max-width: 900px) {
  .hall-card {
    grid-template-columns: 1fr;
  }

  .hall-img-wrap img {
    min-height: 240px;
    height: 240px;
  }

  .hall-body {
    padding: 24px 20px;
  }
}

@media (max-width: 640px) {
  .rooms-row {
    grid-template-columns: 1fr;
    padding: 14px;
    gap: 14px;
  }

  .hall-features {
    grid-template-columns: 1fr;
  }
}

/* AMENITIES */
.amenities-section {
  background: var(--off-white);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
}

.amenity {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
}

.amenity-icon {
  font-size: 26px;
  margin-bottom: 8px;
}

.amenity-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.amenity-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* HIGHLIGHTS */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 48px;
}

.hl {
  background: var(--teal-light);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.hl-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal-dark);
}

.hl-label {
  font-size: 12px;
  color: var(--teal);
  margin-top: 4px;
}

/* ABOUT SECTION */
.about-section {
  padding-bottom: 20px;
}

.floor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.floor-card {
  background: var(--teal-light);
  border-radius: 14px;
  padding: 20px 22px;
}

.floor-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 8px;
}

.floor-desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.75;
}

/* EXPERIENCES */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.exp {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
}

.exp-icon {
  font-size: 22px;
  margin-bottom: 8px;
}

.exp-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.exp-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* TESTIMONIAL */
.testimonial-section {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 40px 8%;
  text-align: center;
}

.testimonial-section .section-tag {
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

.testimonial-section .section-title {
  color: #fff;
}

blockquote {
  max-width: 640px;
  margin: 0 auto 20px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .9);
  font-style: italic;
  line-height: 1.8;
}

.reviewer {
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
}

/* BOOK BAR */
.book-bar {
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 8%;
  flex-wrap: wrap;
  gap: 16px;
}

.book-bar-text h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.book-bar-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, .85);
  margin-top: 4px;
}

.book-bar-btn {
  background: #fff;
  color: #8B5E00;
  border: none;
  padding: 13px 30px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

/* FOOTER */
footer {
  background: #0A3D47;
  padding: 52px 8% 28px;
  color: #9DD4DB;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-logo-group {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-logo-group img {
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* OpenPath logo - displayed with original colors in a white badge */
.logo-openpath {
  filter: none !important;
  background: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  height: 50px !important;
  object-fit: contain;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: #7DB8C0;
}

footer h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 8px;
}

footer ul li a {
  font-size: 13px;
  color: #7DB8C0;
  transition: color .2s;
}

footer ul li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 12px;
  color: #ffffff;
}

/* VIDEO TOUR */
.video-tour-section {
  background: #0A3D47;
  padding: 80px 8%;
  text-align: center;
}

.video-tour-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #7DDCE8;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
  font-weight: 600;
}

.video-tour-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.video-tour-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 100%;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.video-wrapper {
  max-width: 820px;
  margin: 0 auto 32px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #051E25;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.video-wrapper video {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.video-duration {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  pointer-events: none;
}

.video-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.video-highlight-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 8px 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  white-space: nowrap;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .hero-content h1 {
    font-size: 2.1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .g-main {
    grid-row: span 1;
    grid-column: span 2;
  }

  nav .nav-links {
    display: none;
  }

  .top-contact-bar {
    font-size: 12px;
    padding: 9px 5%;
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }

  /* HERO STATS — wrap into 2×2 grid on mobile */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    left: 5%;
    right: 5%;
    bottom: 20px;
    border-radius: var(--radius);
  }

  .hero-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 10px;
  }

  .hero-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .hero-stat:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .hero-stat-num {
    font-size: 1.1rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  section {
    padding: 32px 5%;
  }

  .testimonial-section {
    padding: 32px 5%;
  }
}

/* ══════════════════════════════════
   BOOKING PAGE STYLES
══════════════════════════════════ */
:root {
  --booking-teal: #0F7A8C;
  --booking-teal-dark: #085A69;
  --booking-teal-light: #E1F4F7;
  --booking-amber: #F4A623;
  --booking-text: #1a2e35;
  --booking-muted: #5a7a82;
  --booking-border: #D0E8EC;
}

.booking-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 5%;
}

.booking-hero {
  background: linear-gradient(135deg, var(--booking-teal-dark) 0%, var(--booking-teal) 100%);
  color: #fff;
  padding: 3rem 1.5rem;
  text-align: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.booking-hero h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.booking-hero p {
  font-size: 16px;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto;
}

.steps-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.step.active {
  color: #fff;
  font-weight: 600;
}

.step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.step.active .step-num {
  background: var(--booking-amber);
  border-color: var(--booking-amber);
  color: #fff;
}

.step-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.booking-container .section-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--booking-teal);
  margin: 40px 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  padding: 0;
}

.booking-container .section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 18px;
  background: var(--booking-amber);
  border-radius: 2px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.booking-container .room-card {
  background: #fff;
  border: 1px solid var(--booking-border);
  border-radius: 16px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}

.booking-container .room-card:hover {
  border-color: var(--booking-teal);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(15, 122, 140, 0.1);
}

.booking-container .room-card.selected {
  border-color: var(--booking-teal);
  background: var(--booking-teal-light);
  box-shadow: 0 0 0 2px var(--booking-teal);
}

.booking-container .room-card.selected::after {
  content: '✓';
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--booking-teal);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.room-floor {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--booking-muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.booking-container .room-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--booking-text);
  margin-bottom: 12px;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.feat {
  font-size: 11px;
  background: rgba(15, 122, 140, 0.1);
  color: var(--booking-teal);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}

.booking-container .room-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 0;
}

.price-amt {
  font-size: 22px;
  font-weight: 700;
  color: var(--booking-teal-dark);
}

.price-unit {
  font-size: 12px;
  color: var(--booking-muted);
}

.full-card {
  grid-column: 1 / -1;
}

.call-box {
  background: #fff;
  border: 1px solid var(--booking-border);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}

.call-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--booking-text);
  margin-bottom: 10px;
}

.call-box p {
  font-size: 15px;
  color: var(--booking-muted);
  margin-bottom: 24px;
}

.phones {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.phone-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--booking-teal-light);
  border-radius: 12px;
  padding: 12px 20px;
  text-decoration: none;
  transition: background 0.2s;
  min-width: 220px;
}

.phone-btn:hover {
  background: #d1ecf1;
}

.phone-icon {
  width: 40px;
  height: 40px;
  background: var(--booking-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-icon svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.phone-info {
  text-align: left;
}

.phone-label {
  font-size: 11px;
  color: var(--booking-muted);
  font-weight: 500;
}

.phone-num {
  font-size: 15px;
  font-weight: 700;
  color: var(--booking-teal-dark);
}

.wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  border-radius: 12px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 15px;
  transition: opacity 0.2s;
}

.wa-btn:hover {
  opacity: 0.9;
}

.wa-icon {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.divider {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 50px 0;
  color: var(--booking-muted);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--booking-border);
}

.advance-box {
  background: #fff;
  border: 1px solid var(--booking-border);
  border-radius: 20px;
  padding: 30px;
}

.advance-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}

.advance-icon {
  width: 50px;
  height: 50px;
  background: var(--booking-teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.advance-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--booking-text);
}

.advance-sub {
  font-size: 14px;
  color: var(--booking-muted);
  margin-top: 4px;
}

.amount-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFF9ED;
  border: 1px solid #F0DBA0;
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 24px;
}

.amount-label {
  font-size: 15px;
  color: var(--booking-muted);
  font-weight: 500;
}

.amount-val {
  font-size: 24px;
  font-weight: 800;
  color: var(--booking-amber);
}

.qr-section {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.qr-wrap {
  background: #fff;
  border: 2px solid var(--booking-border);
  border-radius: 16px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.qr-wrap img {
  width: 160px;
  height: 160px;
  display: block;
  border-radius: 8px;
}

.qr-label {
  font-size: 11px;
  color: var(--booking-muted);
  margin-top: 10px;
  font-weight: 500;
}

.upi-info {
  flex: 1;
  min-width: 200px;
}

.upi-row {
  margin-bottom: 15px;
}

.upi-key {
  font-size: 12px;
  color: var(--booking-muted);
  margin-bottom: 4px;
  font-weight: 500;
}

.upi-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--booking-text);
}

.upi-id-box {
  background: var(--booking-teal-light);
  border-radius: 10px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 5px;
}

.upi-id-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--booking-teal-dark);
}

.copy-btn {
  font-size: 11px;
  color: var(--booking-teal);
  background: #fff;
  border: 1px solid var(--booking-teal);
  border-radius: 6px;
  padding: 4px 12px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
}

.copy-btn:hover {
  background: var(--booking-teal);
  color: #fff;
}

.upi-logo {
  height: 80px;
  width: auto;
  margin: 0 auto 20px;
  display: block;
}

.note-box {
  background: #FFFDF5;
  border: 1px solid #F0DBA0;
  border-radius: 12px;
  padding: 20px;
  font-size: 14px;
  color: #8B5E00;
  line-height: 1.6;
  margin-top: 24px;
}

.note-box b {
  color: var(--booking-amber);
}

@media (max-width: 600px) {
  .booking-container .rooms-grid {
    grid-template-columns: 1fr;
  }

  .qr-section {
    justify-content: center;
    text-align: center;
  }

  .upi-info {
    width: 100%;
  }
}