/* ============================================
   SUNRISE STAY MALDIVES - Tropical Modern CSS
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --ocean-deep: #0a2e3d;
  --ocean-mid: #0d4f6b;
  --ocean-light: #1a7a9b;
  --sand-warm: #f5e6c8;
  --sand-light: #faf3e6;
  --sand-white: #fefcf7;
  --coral: #e8734a;
  --coral-dark: #d45a30;
  --sunset-gold: #f0a830;
  --sunset-orange: #e87b3a;
  --palm-green: #2d6a4f;
  --palm-light: #40916c;
  --lagoon: #48cae4;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-muted: #5a6978;
  --shadow-sm: 0 2px 8px rgba(10, 46, 61, 0.08);
  --shadow-md: 0 8px 30px rgba(10, 46, 61, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 46, 61, 0.15);
  --shadow-glow: 0 0 40px rgba(232, 115, 74, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--sand-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--ocean-deep);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--sunset-orange));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 115, 74, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 115, 74, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--ocean-deep);
  border: 2px solid var(--ocean-deep);
}

.btn-secondary:hover {
  background: var(--ocean-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--ocean-deep);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  background: #1fb855;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 16px 24px;
  transition: var(--transition);
}

.navbar-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(40px) saturate(1.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-top-color: rgba(255, 255, 255, 0.4);
  border-radius: 60px;
  padding: 5px 8px 5px 14px;
  min-width: 520px;
  max-width: 720px;
  width: 100%;
  transition: var(--transition);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .navbar-pill {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(50px) saturate(2);
  -webkit-backdrop-filter: blur(50px) saturate(2);
  border-color: rgba(255, 255, 255, 0.5);
  border-top-color: rgba(255, 255, 255, 0.7);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 0, 0, 0.03);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.15);
  padding: 2px 2px 0 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
  margin-left: -6px;
}

.navbar.scrolled .navbar-logo {
  background: rgba(10, 46, 61, 0.06);
  box-shadow: 0 0 0 1.5px rgba(10, 46, 61, 0.08);
}

.navbar-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}

.navbar.scrolled .navbar-title {
  color: var(--ocean-deep);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-links a {
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}

.navbar.scrolled .navbar-links a {
  color: var(--text-dark);
}

.navbar-links a:hover,
.navbar-links a.active {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.navbar.scrolled .navbar-links a:hover,
.navbar.scrolled .navbar-links a.active {
  background: var(--ocean-deep);
  color: var(--white);
}

.navbar-links .btn-primary {
  color: var(--white) !important;
  padding: 5px 14px;
  font-size: 0.78rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s ease;
  transform-origin: center;
}

.navbar.scrolled .mobile-toggle span,
.mobile-toggle.active span {
  background: var(--ocean-deep);
}

.mobile-toggle.active span {
  background: var(--ocean-deep) !important;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url('/Hero.png') center center / cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 22, 40, 0.55) 0%,
    rgba(10, 30, 50, 0.4) 40%,
    rgba(10, 30, 50, 0.2) 60%,
    rgba(250, 245, 235, 0.7) 80%,
    var(--sand-white) 95%,
    var(--sand-white) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: none;
}

/* Hero Layout - two column */
.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* Hero Reviews - scrolling column */
.hero-reviews {
  flex: 0 0 420px;
  max-width: 420px;
  height: 420px;
  position: relative;
  overflow: hidden;
  align-self: center;
}

.hero-reviews-header {
  position: relative;
  z-index: 3;
  margin-bottom: 16px;
}

.hero-reviews-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--sunset-gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.hero-reviews-stars svg {
  width: 14px;
  height: 14px;
}

/* Two Column Reviews */
.hero-reviews-columns {
  display: flex;
  gap: 12px;
  height: calc(100% - 36px);
}

.hero-reviews-col {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to bottom,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%);
}

.hero-reviews-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-reviews-track.track-down {
  animation: reviewsScrollDown 45s linear infinite;
}

.hero-reviews-track.track-up {
  animation: reviewsScrollUp 35s linear infinite;
}

.hero-reviews-col:hover .hero-reviews-track {
  animation-play-state: paused;
}

.hero-review-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  padding: 14px 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.hero-review-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}


.platform-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  object-fit: contain;
}

.hero-review-info {
  flex: 1;
  min-width: 0;
}

.hero-review-name {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--ocean-deep);
  letter-spacing: 0.2px;
  line-height: 1.2;
}

.hero-review-platform {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 1px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.platform-icon-sm {
  width: 11px;
  height: 11px;
  object-fit: contain;
}

.hero-review-rating {
  display: flex;
  align-items: center;
  gap: 1px;
  flex-shrink: 0;
}

.hero-review-rating svg {
  width: 14px;
  height: 14px;
}

.hero-review-rating svg.star-full {
  fill: #F5A623;
  color: #F5A623;
}

.hero-review-rating svg.star-half {
  fill: url(#halfStarGrad);
}

.hero-review-rating svg.star-empty {
  fill: #ddd;
  color: #ddd;
}

.hero-review-text {
  font-size: 0.75rem;
  line-height: 1.55;
  color: rgba(10, 46, 61, 0.7);
}

@keyframes reviewsScrollDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes reviewsScrollUp {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 480px;
  flex: 1;
  padding: 140px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--sand-warm);
  margin-bottom: 32px;
  letter-spacing: 1px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--sunset-gold);
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--sunset-gold), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
  max-width: 420px;
  line-height: 1.7;
}

.property-tag-small {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-feature {
  text-align: center;
}

.hero-feature-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sunset-gold);
}

.hero-feature-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* Decorative wave shapes */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 2;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Floating decorative elements */
.hero-decor {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  z-index: 1;
  overflow: hidden;
}

.decor-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.decor-circle:nth-child(1) {
  width: 400px;
  height: 400px;
  top: 15%;
  right: -10%;
  animation: float 12s ease-in-out infinite;
}

.decor-circle:nth-child(2) {
  width: 250px;
  height: 250px;
  top: 50%;
  right: 20%;
  animation: float 8s ease-in-out infinite reverse;
}

.decor-circle:nth-child(3) {
  width: 150px;
  height: 150px;
  top: 30%;
  right: 35%;
  background: rgba(240, 168, 48, 0.05);
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

/* ---------- Features Section ---------- */
.features {
  padding: 60px 0;
  background: #FEFCF7;
}

.features-header {
  text-align: center;
  margin-bottom: 36px;
}

.features-header .section-subtitle {
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(10, 46, 61, 0.05);
  will-change: transform;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

@property --border-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--border-angle), var(--coral) 0%, var(--sunset-gold) 25%, transparent 35%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::before {
  opacity: 1;
  animation: borderTrace 2.5s linear infinite;
}

@keyframes borderTrace {
  to { --border-angle: 360deg; }
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.feature-icon.airport {
  background: linear-gradient(135deg, rgba(72, 202, 228, 0.15), rgba(26, 122, 155, 0.1));
  color: var(--ocean-light);
}

.feature-icon.comfort {
  background: linear-gradient(135deg, rgba(232, 115, 74, 0.15), rgba(240, 168, 48, 0.1));
  color: var(--coral);
}

.feature-icon.location {
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.15), rgba(64, 145, 108, 0.1));
  color: var(--palm-green);
}

.feature-icon.service {
  background: linear-gradient(135deg, rgba(240, 168, 48, 0.15), rgba(232, 115, 74, 0.1));
  color: var(--sunset-gold);
}

.feature-card h3 {
  font-size: 1.25rem;
  color: var(--ocean-deep);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Rooms Section ---------- */
.rooms-section {
  padding: 0 0 60px;
  background: transparent;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.page-hero + .rooms-section {
  margin-top: 0;
  padding-top: 50px;
}

.rooms-header {
  text-align: center;
  margin-bottom: 36px;
}

.rooms-header .section-subtitle {
  margin: 0 auto;
}

.property-group {
  margin-bottom: 36px;
  margin-top: 20px;
}

.property-group:first-child {
  margin-top: 0;
}

.property-group:last-child {
  margin-bottom: 0;
}

.property-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ocean-deep);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.property-label svg {
  width: 18px;
  height: 18px;
  fill: var(--sunset-gold);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.rooms-grid .room-card {
  max-width: 450px;
}

/* Compact horizontal room cards - 4 per row */
.rooms-grid-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.room-card-h {
  display: flex;
  flex-direction: row;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(10, 46, 61, 0.06);
  transition: var(--transition);
}

.room-card-h:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.room-card-h-image {
  width: 110px;
  min-height: 120px;
  flex-shrink: 0;
  overflow: hidden;
}

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

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

.room-card-h-body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

.room-card-h-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 2px;
}

.room-card-h-body h3 {
  font-size: 0.85rem;
  color: var(--ocean-deep);
  margin-bottom: 6px;
  font-weight: 600;
}

.room-card-h-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 8px;
}

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

.room-card-h-detail svg {
  color: var(--ocean-mid);
  flex-shrink: 0;
}

.room-card-h-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--sand-light);
  border-radius: 8px;
  padding: 4px 10px;
}

.room-card-h-stars {
  display: flex;
  gap: 1px;
}

.room-card-h-stars svg {
  width: 11px;
  height: 11px;
  fill: #F5A623;
}

.room-card-h-score {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--ocean-deep);
  white-space: nowrap;
}

.btn-xs {
  padding: 4px 12px !important;
  font-size: 0.68rem !important;
  align-self: flex-start;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(10, 46, 61, 0.06);
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.room-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

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

.room-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(10, 46, 61, 0.4), transparent);
}

.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ocean-deep);
  z-index: 1;
}

.room-card-body {
  padding: 24px;
}

.room-card-body h3 {
  font-size: 1.3rem;
  color: var(--ocean-deep);
  margin-bottom: 8px;
}

.room-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.room-amenities {
  display: flex;
  gap: 12px;
}

.room-amenity {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--ocean-mid);
}

.room-card .btn {
  padding: 8px 18px;
  font-size: 0.8rem;
}

/* ---------- About / Location Section ---------- */
.about-section {
  padding: 60px 0;
  background: var(--ocean-deep);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(240, 168, 48, 0.08), transparent 70%);
  border-radius: 50%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content .section-label {
  color: var(--sunset-gold);
}

.about-content .section-label::before {
  background: var(--sunset-gold);
}

.about-content .section-title {
  color: var(--white);
}

.about-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.about-stat {
  text-align: center;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sunset-gold);
}

.about-stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.about-visual {
  position: relative;
}

.about-map-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(10px);
}

.map-pin {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.map-pin-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--sunset-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.map-pin-text h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.map-pin-text p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.map-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.map-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 30px 0;
  background: #FEFCF7;
  text-align: center;
  position: relative;
}

.cta-section::before,
.cta-section::after {
  content: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content .section-title {
  margin-bottom: 20px;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  background: url('/Hero.png') center bottom / cover no-repeat;
  padding: 180px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    #FEFCF7 0%,
    #FEFCF7 15%,
    rgba(254, 252, 247, 0.85) 30%,
    rgba(254, 252, 247, 0.5) 45%,
    rgba(10, 30, 50, 0.2) 60%,
    rgba(10, 30, 50, 0.4) 75%,
    rgba(10, 22, 40, 0.55) 100%);
  z-index: 0;
  pointer-events: none;
}

.footer > * {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.footer-logo-light {
  filter: brightness(1.8) saturate(0.3) opacity(0.85);
}

.footer-brand span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social:hover {
  background: var(--coral);
  border-color: var(--coral);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-column a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--sunset-gold);
  padding-left: 6px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: url('/Hero.png') center top / cover no-repeat;
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 22, 40, 0.75) 0%,
    rgba(10, 30, 50, 0.65) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
}

/* ---------- Contact Page ---------- */
.contact-section {
  padding: 60px 0;
}

.contact-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.contact-center h2 {
  font-size: 2rem;
  color: var(--ocean-deep);
  margin-bottom: 16px;
}

.contact-intro {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10, 46, 61, 0.06);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-card-icon.whatsapp { background: rgba(37, 211, 102, 0.1); color: #25d366; }
.contact-card-icon.telegram { background: rgba(0, 136, 204, 0.1); color: #0088cc; }
.contact-card-icon.tiktok { background: rgba(0, 0, 0, 0.06); color: #000; }

.contact-card h3 {
  font-size: 1.1rem;
  color: var(--ocean-deep);
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.contact-card-label {
  font-size: 0.78rem;
  color: var(--ocean-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 46, 61, 0.06);
}

.contact-detail-card svg {
  flex-shrink: 0;
  color: var(--ocean-light);
}

.contact-detail-card h4 {
  font-size: 0.95rem;
  color: var(--ocean-deep);
  margin-bottom: 6px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ocean-deep);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(10, 46, 61, 0.08);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--sand-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--ocean-light);
  box-shadow: 0 0 0 4px rgba(26, 122, 155, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform var(--transition);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 8px 12px 0 12px;
  }

  .navbar-pill {
    min-width: auto;
    max-width: 100%;
    width: 100%;
    padding: 4px 8px 1px 12px;
    flex-wrap: wrap;
    border-radius: 40px;
    transition: background 0.3s ease, border-radius 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .navbar-logo {
    width: 28px;
    height: 28px;
  }

  .navbar-title {
    font-size: 1rem;
  }

  .navbar-brand {
    padding-left: 4px;
  }

  .mobile-toggle {
    padding: 8px 10px 0 10px;
  }

  .navbar-pill.menu-open {
    background: #fff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 18px;
    border: 1px solid rgba(10, 46, 61, 0.08) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    padding: 6px 6px 6px 6px;
  }

  .navbar-pill.menu-open .navbar-title {
    color: var(--ocean-deep);
  }

  .navbar-links {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    order: 3;
    padding: 0;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .navbar-links.open {
    max-height: 240px;
    opacity: 1;
    padding: 4px 10px 8px;
    border-top: 1px solid rgba(10, 46, 61, 0.06);
  }

  .navbar-links a,
  .navbar.scrolled .navbar-links a {
    color: var(--text-dark) !important;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    background: none !important;
  }

  .navbar-links a.active,
  .navbar.scrolled .navbar-links a.active {
    color: var(--ocean-deep) !important;
    font-weight: 600;
    background: var(--sand-light) !important;
  }

  .navbar-links a:hover,
  .navbar.scrolled .navbar-links a:hover {
    background: var(--sand-light) !important;
    color: var(--ocean-deep) !important;
  }

  .navbar-links .btn-primary,
  .navbar.scrolled .navbar-links .btn-primary {
    margin-top: 4px;
    align-self: stretch;
    text-align: center;
    color: var(--white) !important;
    background: var(--coral) !important;
    padding: 12px 16px;
    border-radius: 12px;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-layout {
    flex-direction: column;
    gap: 30px;
  }

  .hero-content {
    padding: 120px 0 20px;
    max-width: 100%;
  }

  .hero-layout {
    overflow: hidden;
  }

  .hero-reviews {
    flex: none;
    max-width: calc(100vw - 48px);
    width: 100%;
    height: 380px;
    overflow: hidden;
  }

  .hero-reviews-columns {
    gap: 8px;
    overflow: hidden;
  }

  .hero-reviews-col {
    min-width: 0;
  }

  .hero-review-card {
    padding: 10px 12px;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .rooms-section {
    margin-top: 0;
    padding-top: 40px;
  }

  .rooms-grid-compact {
    grid-template-columns: 1fr;
  }

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

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

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .about-stat {
    padding: 16px 8px;
  }

  .about-stat-value {
    font-size: 1.5rem;
  }

  .footer {
    color: rgba(30, 30, 30, 0.7);
  }

  /* Top: dark text (brand + about) */
  .footer-brand span {
    color: var(--ocean-deep);
  }

  .footer-about p {
    color: rgba(30, 30, 30, 0.6);
  }

  .footer-social {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
    color: rgba(30, 30, 30, 0.6);
  }

  /* Navigate column - slightly lighter */
  .footer-column:nth-child(2) h4 {
    color: rgba(30, 30, 30, 0.7);
  }

  .footer-column:nth-child(2) a {
    color: rgba(30, 30, 30, 0.45);
  }

  /* Properties column - transitioning to light */
  .footer-column:nth-child(3) h4 {
    color: rgba(255, 255, 255, 0.85);
  }

  .footer-column:nth-child(3) a {
    color: rgba(255, 255, 255, 0.55);
  }

  /* Contact column - light text */
  .footer-column:nth-child(4) h4 {
    color: rgba(255, 255, 255, 0.9);
  }

  .footer-column:nth-child(4) a {
    color: rgba(255, 255, 255, 0.6);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

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

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .contact-card {
    padding: 32px 20px;
  }
}

/* ---------- Room Card Link Reset ---------- */
a.room-card-h {
  text-decoration: none;
  color: inherit;
}

/* ---------- Room Detail Page ---------- */
/* ==================== Room Detail Page ==================== */
.room-detail {
  padding: 100px 0 60px;
  background: var(--sand-white);
}

.room-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.room-breadcrumb a {
  color: var(--ocean-mid);
  text-decoration: none;
}

.room-breadcrumb a:hover {
  color: var(--coral);
}

.room-breadcrumb span {
  color: var(--ocean-deep);
  font-weight: 600;
}

/* Room Header */
.room-detail-header {
  margin-bottom: 28px;
}

.room-detail-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 4px;
}

.room-detail-header h1 {
  font-size: 1.8rem;
  color: var(--ocean-deep);
  margin-bottom: 8px;
}

.room-detail-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}

/* Two Column Layout */
.room-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

/* LEFT Column */
.room-detail-left {
  min-width: 0;
}

/* Image Grid - 3 columns desktop */
.room-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.room-grid-img {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
}

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

.room-grid-img:hover img {
  transform: scale(1.05);
}

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

.room-grid-overlay svg {
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.room-grid-img:hover .room-grid-overlay {
  background: rgba(0, 0, 0, 0.2);
}

.room-grid-img:hover .room-grid-overlay svg {
  opacity: 1;
}

/* Featured first image spans full width */
.room-grid-featured {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
  max-height: 500px;
  border-radius: 16px;
}

/* RIGHT: Sticky Book Card */
.room-detail-right {
  position: sticky;
  top: 100px;
}

/* Sidebar / Content Cards */
.room-sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid rgba(10, 46, 61, 0.06);
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.room-sidebar-card h3 {
  font-size: 1rem;
  color: var(--ocean-deep);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(10, 46, 61, 0.06);
}

/* Amenities Card */
.room-amenities-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.amenity-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--sand-white);
  border: 1px solid rgba(10, 46, 61, 0.08);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ocean-deep);
  transition: var(--transition);
}

.amenity-pill:hover {
  background: var(--sand-warm);
  border-color: var(--sunset-gold);
}

.amenity-pill svg {
  color: var(--ocean-mid);
  flex-shrink: 0;
}

/* Map Card */
.room-map-embed {
  margin-bottom: 14px;
  border-radius: 12px;
  overflow: hidden;
}

.room-map-embed iframe {
  display: block;
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 12px;
}

.room-location-details {
  padding-top: 2px;
}

.room-location-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.82rem;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(10, 46, 61, 0.05);
}

.room-location-detail:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.room-location-detail svg {
  color: var(--ocean-mid);
  flex-shrink: 0;
}

/* View More Button */
.amenity-more-btn {
  background: var(--ocean-deep) !important;
  color: var(--white) !important;
  border-color: var(--ocean-deep) !important;
  cursor: pointer;
  font-weight: 600;
}

.amenity-more-btn svg {
  color: var(--white) !important;
}

.amenity-more-btn:hover {
  background: var(--ocean-mid) !important;
  border-color: var(--ocean-mid) !important;
}

/* Map Link */
.room-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ocean-mid);
  text-decoration: none;
  transition: var(--transition);
}

.room-map-link:hover {
  color: var(--coral);
}

/* Room Detail Reviews */
.room-reviews-section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(10, 46, 61, 0.08);
}

.room-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  gap: 20px;
}

.room-reviews-header h2 {
  font-size: 1.4rem;
  color: var(--ocean-deep);
  margin-bottom: 4px;
}

.room-reviews-subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
}

.room-reviews-overall {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.room-reviews-score {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ocean-deep);
  line-height: 1;
}

.room-reviews-score-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.room-reviews-score-label span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.room-reviews-stars {
  display: flex;
  gap: 1px;
}

.room-reviews-stars svg {
  width: 14px;
  height: 14px;
  fill: #F5A623;
}

.room-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.room-reviews-grid .hero-review-card {
  background: var(--sand-light);
  border-radius: 12px;
  padding: 18px;
  border: 1px solid rgba(10, 46, 61, 0.06);
}

@media (max-width: 900px) {
  .room-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .room-reviews-header {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .room-reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* Amenities Popup */
.amenities-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.amenities-popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.amenities-popup {
  background: var(--white);
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.amenities-popup-overlay.active .amenities-popup {
  transform: translateY(0);
}

.amenities-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(10, 46, 61, 0.08);
  position: sticky;
  top: 0;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  z-index: 1;
}

.amenities-popup-header h2 {
  font-size: 1.2rem;
  color: var(--ocean-deep);
}

.amenities-popup-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition: color 0.2s;
}

.amenities-popup-close:hover {
  color: var(--ocean-deep);
}

.amenities-popup-body {
  padding: 24px 28px 28px;
}

.amenities-popup-category {
  margin-bottom: 24px;
}

.amenities-popup-category:last-child {
  margin-bottom: 0;
}

.amenities-popup-category h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ocean-mid);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(10, 46, 61, 0.06);
}

/* Book Card */
.room-book-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Lightbox */
.room-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.room-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.room-lightbox img {
  max-width: min(90%, 2000px);
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: white;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(8px);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

/* Room Detail Responsive */
@media (max-width: 960px) {
  .room-detail-layout {
    grid-template-columns: 1fr;
  }

  .room-detail-right {
    position: static;
  }
}

@media (max-width: 768px) {
  .room-image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .room-grid-featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .room-detail-header h1 {
    font-size: 1.4rem;
  }

  .room-sidebar-card {
    padding: 18px;
  }

  .lightbox-nav {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}
