/* ============================================
   NAATOA HOTEL - Luxury Booking Website
   ============================================ */

/* --- CSS Variables --- */
:root {
  --navy: #0a1628;
  --navy-light: #132040;
  --navy-mid: #0d2137;
  --gold: #c8963e;
  --gold-light: #e0b96e;
  --gold-dark: #a67a2e;
  --teal: #1a8a7d;
  --teal-light: #22b8a7;
  --white: #ffffff;
  --gray-50: #f8f9fc;
  --gray-100: #eef1f6;
  --gray-200: #dde2ec;
  --gray-400: #8896ab;
  --gray-600: #5a6882;
  --gray-800: #2d3748;
  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 8px 30px rgba(10, 22, 40, 0.1);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.15);
  --shadow-gold: 0 8px 30px rgba(200, 150, 62, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Global Reset & Base --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 70px 0; }

/* --- Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }

.loader-inner {
  text-align: center;
}
.loader-icon {
  font-size: 3rem;
  color: var(--gold);
  animation: pulse-glow 1.5s ease-in-out infinite;
  margin-bottom: 20px;
}
.loader-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 6px;
  font-weight: 600;
  opacity: 0.9;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.8; text-shadow: 0 0 20px rgba(200,150,62,0.3); }
  50% { transform: scale(1.1); opacity: 1; text-shadow: 0 0 40px rgba(200,150,62,0.6); }
}

/* --- Navbar --- */
.naatoa-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 18px 0;
  transition: var(--transition);
}
.naatoa-navbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.naatoa-navbar .navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.brand-text { font-family: var(--font-heading); font-weight: 700; }
.brand-dot { color: var(--gold); font-size: 2rem; line-height: 0; }
.brand-sub { font-size: 0.65rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); opacity: 0.8; margin-left: 4px; }

.naatoa-navbar .nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 18px !important;
  position: relative;
  transition: var(--transition);
}
.naatoa-navbar .nav-link:hover,
.naatoa-navbar .nav-link.active { color: var(--gold) !important; }
.naatoa-navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  transform: translateX(-50%);
}
.naatoa-navbar .nav-link:hover::after,
.naatoa-navbar .nav-link.active::after { width: 60%; }

.navbar-toggler {
  border: 2px solid rgba(200, 150, 62, 0.5) !important;
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(200,150,62,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
.btn-nav {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 10px 28px !important;
  border-radius: 50px;
  font-size: 0.88rem !important;
  transition: var(--transition);
}
.btn-nav:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.5s ease, transform 8s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(10,22,40,0.85) 0%, rgba(13,33,55,0.7) 50%, rgba(10,22,40,0.8) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}
.hero-particles .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(200, 150, 62, 0.4);
  border-radius: 50%;
  animation: float-particle 15s infinite;
}
.hero-particles .particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; animation-duration: 20s; }
.hero-particles .particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 3s; animation-duration: 18s; }
.hero-particles .particle:nth-child(3) { top: 40%; left: 50%; animation-delay: 6s; animation-duration: 22s; }
.hero-particles .particle:nth-child(4) { top: 80%; left: 30%; animation-delay: 2s; animation-duration: 16s; }
.hero-particles .particle:nth-child(5) { top: 10%; left: 70%; animation-delay: 4s; animation-duration: 25s; }
.hero-particles .particle:nth-child(6) { top: 50%; left: 20%; animation-delay: 7s; animation-duration: 19s; }

@keyframes float-particle {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  50% { transform: translate(100px, -200px) scale(1.5); opacity: 0.5; }
  90% { opacity: 0; }
}

.hero-content { position: relative; z-index: 3; padding-top: 100px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 150, 62, 0.12);
  border: 1px solid rgba(200, 150, 62, 0.25);
  color: var(--gold-light);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary-naatoa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  border: none;
  transition: var(--transition);
  cursor: pointer;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}
.btn-primary-naatoa::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}
.btn-primary-naatoa:hover::before { left: 100%; }
.btn-primary-naatoa:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
  color: var(--navy);
}

.btn-outline-naatoa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: var(--transition);
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-outline-naatoa:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn-dark-naatoa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--gold);
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  border: none;
  transition: var(--transition);
  font-family: var(--font-body);
}
.btn-dark-naatoa:hover {
  background: var(--navy-light);
  color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* --- Hero Booking Bar --- */
.hero-booking-bar {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 10;
}
.booking-bar-inner {
  background: rgba(255,255,255,0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.booking-field {
  flex: 1;
  min-width: 0;
}
.booking-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-600);
  margin-bottom: 6px;
}
.booking-field label i {
  color: var(--gold);
  margin-right: 4px;
}
.booking-field input,
.booking-field select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: var(--transition);
  background: var(--gray-50);
  color: var(--gray-800);
  appearance: auto;
}
.booking-field input:focus,
.booking-field select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(200, 150, 62, 0.1);
}
.booking-bar-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 10px;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  font-family: var(--font-body);
}
.booking-bar-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* --- Section Headers --- */
.section-header { margin-bottom: 60px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.section-tag .line { width: 30px; height: 2px; background: var(--gold); }

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.section-title .highlight { color: var(--gold); }
.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin-top: 16px;
  line-height: 1.8;
}
.section-desc.centered { margin-left: auto; margin-right: auto; }

/* --- Welcome Section --- */
.welcome-section { background: var(--gray-50); }

.welcome-images {
  position: relative;
  height: 500px;
}
.welcome-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.welcome-img-main img { width: 100%; height: 100%; object-fit: cover; }
.welcome-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.welcome-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.welcome-experience-badge {
  position: absolute;
  top: 50%;
  right: 30%;
  transform: translateY(-50%);
  background: var(--gold);
  color: var(--navy);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-gold);
  z-index: 2;
  animation: float-badge 3s ease-in-out infinite;
}
.welcome-experience-badge .number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}
.welcome-experience-badge .number span { font-size: 1.5rem; }
.welcome-experience-badge .text {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  line-height: 1.3;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 10px)); }
}

.welcome-features { margin: 30px 0; }
.welcome-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}
.welcome-feature:last-child { border-bottom: none; }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(200, 150, 62, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.welcome-feature:hover .feature-icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(-5deg) scale(1.1);
}
.welcome-feature h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.welcome-feature p {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin: 0;
}

/* --- Room Cards --- */
.rooms-section { background: var(--white); }

.room-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}
.room-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.room-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.room-card:hover .room-card-image img { transform: scale(1.1); }

.room-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}
.room-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.room-card:hover .room-card-overlay { opacity: 1; }
.btn-book-room {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transform: translateY(20px);
  transition: var(--transition);
}
.room-card:hover .btn-book-room { transform: translateY(0); }
.btn-book-room:hover { background: var(--gold-light); color: var(--navy); }

.room-card-body { padding: 28px; }
.room-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.room-card-desc {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 18px;
  line-height: 1.6;
}

.room-card-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  margin-bottom: 20px;
}
.amenity-tag {
  font-size: 0.8rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 0;
}
.amenity-tag i { color: var(--gold); font-size: 0.75rem; width: 16px; text-align: center; }

.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.room-price .price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}
.room-price .per-night {
  font-size: 0.82rem;
  color: var(--gray-400);
}
.btn-room-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
}
.btn-room-book:hover { color: var(--gold-dark); gap: 12px; }

/* --- Amenities Section --- */
.amenities-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}
.amenity-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  height: 100%;
}
.amenity-card:hover {
  background: rgba(200, 150, 62, 0.08);
  border-color: rgba(200, 150, 62, 0.2);
  transform: translateY(-8px);
}
.amenity-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(200, 150, 62, 0.1);
  border: 2px solid rgba(200, 150, 62, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--gold);
  transition: var(--transition);
}
.amenity-card:hover .amenity-icon {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: rotate(-10deg) scale(1.1);
}
.amenity-card h5 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.amenity-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  margin: 0;
}

/* --- Why Choose Us --- */
.why-section { background: var(--gray-50); }

.why-list { margin-top: 30px; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.why-item:last-child { border-bottom: none; }
.why-item:hover { padding-left: 10px; }
.why-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  min-width: 48px;
  opacity: 0.6;
}
.why-item:hover .why-number { opacity: 1; }
.why-item h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-item p { font-size: 0.9rem; color: var(--gray-600); margin: 0; }

.why-image-grid {
  position: relative;
  height: 500px;
}
.why-img-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-img-1 img { width: 100%; height: 100%; object-fit: cover; }
.why-img-2 {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 55%;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.why-img-2 img { width: 100%; height: 100%; object-fit: cover; }

.why-stats-card {
  position: absolute;
  bottom: 60px;
  right: 20px;
  background: var(--navy);
  padding: 24px 32px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.cta-section p { color: rgba(10, 22, 40, 0.7); font-size: 1.05rem; }

/* --- Page Hero --- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(200, 150, 62, 0.06) 0%, transparent 50%);
}
.page-hero .breadcrumb-nav {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}
.page-hero .breadcrumb-nav a { color: var(--gold); font-size: 0.9rem; }
.page-hero .breadcrumb-nav span { color: rgba(255,255,255,0.4); font-size: 0.9rem; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 600px; margin-top: 12px; }

/* --- Room Detail Page --- */
.room-detail-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.room-detail-image .main-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.room-detail-image:hover .main-img { transform: scale(1.05); }
.room-detail-price-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(10, 22, 40, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: var(--radius);
  text-align: center;
}
.room-detail-price-badge .from { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
.room-detail-price-badge .price { display: block; font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--gold); }
.room-detail-price-badge .per { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.5); }

.room-detail-info { padding: 20px 0; }
.room-type-badge {
  display: inline-block;
  background: rgba(200, 150, 62, 0.1);
  color: var(--gold-dark);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.room-detail-info h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.room-description { font-size: 1rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 28px; }

.room-amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 32px;
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 8px 0;
}
.amenity-item {
  font-size: 0.92rem;
  color: var(--gray-800);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.amenity-item i { color: var(--gold); font-size: 0.9rem; width: 20px; text-align: center; }
.room-detail-actions { margin-top: 8px; }

/* --- Booking Page --- */
.booking-page { background: var(--gray-50); }

.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.booking-form-header { margin-bottom: 30px; }
.booking-form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.booking-form-header h3 i { color: var(--gold); margin-right: 8px; }
.booking-form-header p { font-size: 0.9rem; color: var(--gray-600); margin: 0; }

.form-section { margin-bottom: 32px; }
.form-section-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
}
.form-section-title i { color: var(--gold); margin-right: 8px; }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: var(--font-body);
  transition: var(--transition);
  background: var(--gray-50);
  color: var(--gray-800);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(200, 150, 62, 0.1);
}

.btn-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.btn-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}
.btn-submit:hover::before { left: 100%; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* Alert Box */
.alert-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 0.9rem;
}
.alert-box.error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
}
.alert-box.error i { margin-top: 3px; }
.alert-box ul { margin: 6px 0 0 16px; padding: 0; }
.alert-box li { margin-bottom: 4px; }
.alert-box.success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #16a34a;
}

/* Booking Summary */
.booking-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.summary-header {
  background: var(--navy);
  padding: 20px 24px;
}
.summary-header h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}
.summary-header h4 i { color: var(--gold); margin-right: 8px; }
.summary-body { padding: 24px; }

.summary-placeholder {
  text-align: center;
  padding: 30px 0;
  color: var(--gray-400);
}
.summary-placeholder i { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.summary-placeholder p { font-size: 0.9rem; margin: 0; }

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--gray-600);
}
.summary-row span:last-child { font-weight: 600; color: var(--gray-800); }
.summary-row.total {
  padding-top: 16px;
  font-size: 1.05rem;
}
.summary-row.total span:last-child {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.summary-divider { height: 1px; background: var(--gray-200); margin: 8px 0; }

.avail-badge {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.avail-badge.available { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.avail-badge.unavailable { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

.summary-footer { padding: 0 24px 24px; }
.summary-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-bottom: 10px;
}
.summary-note i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

/* --- Confirmation Page --- */
.confirmation-section {
  padding: 140px 0 60px;
  background: var(--gray-50);
  min-height: 100vh;
}
.confirmation-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 44px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.confirmation-icon { margin-bottom: 24px; }
.confirmation-card h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.confirmation-subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 32px;
}

.reservation-code-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.code-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
}
.code-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
}
.code-copy {
  background: rgba(200, 150, 62, 0.15);
  color: var(--gold);
  border: 1px solid rgba(200, 150, 62, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.code-copy:hover { background: var(--gold); color: var(--navy); }

.confirmation-details { text-align: left; margin-bottom: 24px; }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--gray-50);
  border-radius: var(--radius);
}
.detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(200, 150, 62, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.detail-label { display: block; font-size: 0.75rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; }
.detail-value { display: block; font-size: 0.92rem; font-weight: 600; color: var(--navy); }
.detail-value.highlight { color: var(--gold-dark); font-family: var(--font-heading); font-size: 1.1rem; }

.confirmation-status { margin-bottom: 28px; }
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
}
.status-badge.pending { background: #fffbeb; color: #d97706; border: 1px solid #fde68a; }
.status-badge.confirmed { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.status-badge.cancelled { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.status-badge.checked_in { background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe; }

.confirmation-notes {
  text-align: left;
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 28px;
}
.confirmation-notes h5 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 18px; }
.note-steps { display: flex; flex-direction: column; gap: 16px; }
.note-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  flex-shrink: 0;
}
.note-step strong { display: block; font-size: 0.92rem; color: var(--navy); margin-bottom: 2px; }
.note-step p { font-size: 0.85rem; color: var(--gray-600); margin: 0; }

.confirmation-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Success Checkmark Animation */
.success-checkmark { width: 80px; height: 80px; margin: 0 auto; }
.check-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid #4CAF50;
}
.check-icon::before {
  top: 3px; left: -2px; width: 30px; height: 60px;
  border-radius: 40px 0 0 40px; content: '';
  position: absolute; background: var(--white);
  transform: rotate(-45deg); transform-origin: 30px 30px;
}
.check-icon::after {
  top: 0; left: 28px; width: 60px; height: 60px;
  border-radius: 0 60px 60px 0; content: '';
  position: absolute; background: var(--white);
  transform: rotate(-45deg); transform-origin: 0 30px;
  animation: rotate-circle 4.25s ease-in;
}
.icon-line {
  height: 5px; background-color: #4CAF50;
  display: block; border-radius: 2px;
  position: absolute; z-index: 10;
}
.line-tip { top: 46px; left: 14px; width: 25px; transform: rotate(45deg); animation: icon-line-tip 0.75s; }
.line-long { top: 38px; right: 8px; width: 47px; transform: rotate(-45deg); animation: icon-line-long 0.75s; }
.icon-circle {
  top: -4px; left: -4px; z-index: 10;
  width: 80px; height: 80px; border-radius: 50%;
  position: absolute; box-sizing: content-box;
  border: 4px solid rgba(76, 175, 80, 0.5);
}
.icon-fix {
  top: 8px; width: 5px; left: 26px; z-index: 1;
  height: 85px; position: absolute;
  background-color: var(--white);
  transform: rotate(-45deg);
}

@keyframes rotate-circle { 0% { transform: rotate(-45deg); } 5% { transform: rotate(-45deg); } 12% { transform: rotate(-405deg); } 100% { transform: rotate(-405deg); } }
@keyframes icon-line-tip { 0% { width: 0; left: 1px; top: 19px; } 54% { width: 0; left: 1px; top: 19px; } 70% { width: 50px; left: -8px; top: 37px; } 84% { width: 17px; left: 21px; top: 48px; } 100% { width: 25px; left: 14px; top: 46px; } }
@keyframes icon-line-long { 0% { width: 0; right: 46px; top: 54px; } 65% { width: 0; right: 46px; top: 54px; } 84% { width: 55px; right: 0; top: 35px; } 100% { width: 47px; right: 8px; top: 38px; } }

/* --- Check Reservation --- */
.check-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.check-form-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(200, 150, 62, 0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.6rem; color: var(--gold);
}
.check-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.check-form-card > p { font-size: 0.92rem; color: var(--gray-600); margin-bottom: 28px; }
.check-form .form-group { text-align: left; }

.check-result {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.check-result-header {
  background: var(--navy);
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.check-result-header h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin: 0; }
.check-result-body { padding: 24px 28px; }
.result-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
}
.result-row:last-child { border-bottom: none; }
.result-row .label { color: var(--gray-600); }
.result-row .value { font-weight: 600; color: var(--navy); }
.result-row .value.highlight { color: var(--gold-dark); font-weight: 700; }

/* --- Contact Page --- */
.contact-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 160px 0 80px;
}
.contact-card-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.contact-info-side {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 48px 40px;
  color: var(--white);
  height: 100%;
}
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 30px; }
.contact-info-item .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(200, 150, 62, 0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.contact-info-item h6 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.contact-info-item p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 0; }
.contact-form-side { padding: 48px 40px; }

/* --- Footer --- */
.naatoa-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
}
.footer-top { padding: 80px 0 40px; }
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}
.footer-brand span { color: var(--gold); }
.footer-brand small { font-family: var(--font-body); font-size: 0.55rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); opacity: 0.7; }
.footer-desc { color: rgba(255,255,255,0.5); font-size: 0.92rem; margin-bottom: 24px; max-width: 320px; }

.footer-socials { display: flex; gap: 12px; list-style: none; padding: 0; }
.footer-socials a {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.footer-widget h6 {
  color: var(--white); font-size: 1rem; font-weight: 700;
  margin-bottom: 24px; position: relative; padding-bottom: 12px;
}
.footer-widget h6::after { content: ""; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--gold); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 6px; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.footer-contact-item i { color: var(--gold); margin-top: 4px; flex-shrink: 0; }
.footer-contact-item p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin: 0; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.85rem; margin: 0; }

/* --- Scroll Top --- */
.scroll-top-btn {
  position: fixed; bottom: 30px; right: 30px;
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--gold); color: var(--navy);
  display: none; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: var(--shadow-gold);
  z-index: 999; transition: var(--transition);
  border: none; cursor: pointer;
}
.scroll-top-btn:hover { transform: translateY(-4px); background: var(--gold-light); }

/* --- Animations --- */
.fade-in-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.9); transition: opacity 0.8s ease, transform 0.8s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }

.stagger-1 { transition-delay: 0.1s !important; }
.stagger-2 { transition-delay: 0.2s !important; }
.stagger-3 { transition-delay: 0.3s !important; }
.stagger-4 { transition-delay: 0.4s !important; }
.stagger-5 { transition-delay: 0.5s !important; }
.stagger-6 { transition-delay: 0.6s !important; }
.stagger-7 { transition-delay: 0.7s !important; }
.stagger-8 { transition-delay: 0.8s !important; }

/* --- Map --- */
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); height: 400px; }
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* --- Responsive --- */

/* ---- XL screens ---- */
@media (max-width: 1200px) {
  .hero-title { font-size: 3.5rem; }
  .section-title { font-size: 2.4rem; }
  .booking-bar-inner { flex-wrap: wrap; }
  .booking-field { min-width: calc(50% - 16px); }
}

/* ---- Tablets / medium screens ---- */
@media (max-width: 992px) {
  .hero-title { font-size: 2.8rem; }
  .hero-subtitle { font-size: 1rem; max-width: 100%; }
  .hero-content { padding-top: 80px; }

  /* Hero section: remove min-vh-100 so content isn't clipped */
  .hero-section { min-height: 0; }
  .hero-section .row.min-vh-100 { min-height: 0 !important; padding: 120px 0 60px; }

  /* Move booking bar out of absolute position so it flows naturally */
  .hero-booking-bar { position: relative; bottom: auto; padding: 0 16px; margin-top: 30px; margin-bottom: 30px; }
  .booking-bar-inner { flex-direction: column; padding: 20px; }
  .booking-field { min-width: 100%; }
  .booking-bar-btn { width: 100%; text-align: center; padding: 16px; }

  /* Navbar mobile dropdown */
  .naatoa-navbar .navbar-collapse {
    background: rgba(10, 22, 40, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 16px 20px;
    margin-top: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  }
  .naatoa-navbar .nav-link {
    padding: 12px 16px !important;
    border-radius: 8px;
  }
  .naatoa-navbar .nav-link:hover,
  .naatoa-navbar .nav-link.active {
    background: rgba(200, 150, 62, 0.1);
  }
  .naatoa-navbar .nav-link::after { display: none; }
  .btn-nav {
    display: block !important;
    text-align: center;
    margin-top: 8px;
    margin-left: 0 !important;
  }

  .section-padding { padding: 70px 0; }
  .section-padding-sm { padding: 50px 0; }
  .section-header { margin-bottom: 40px; }
  .page-hero { padding: 130px 0 50px; }
  .page-hero h1 { font-size: 2.4rem; }

  /* Welcome images */
  .welcome-images { height: 400px; }

  /* Why section images */
  .why-image-grid { height: auto; position: relative; }
  .why-img-1 { position: relative; width: 100%; height: 280px; }
  .why-img-2 { position: relative; width: 80%; height: 220px; margin-top: -30px; }
  .why-stats-card { position: relative; bottom: auto; right: auto; margin-top: 16px; justify-content: center; }

  /* Contact page */
  .contact-info-side { padding: 32px 28px; }
  .contact-form-side { padding: 32px 28px; }

  /* Booking page */
  .booking-form-card { padding: 28px; }
  .room-amenities-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }

  /* CTA section */
  .cta-section h2 { font-size: 2.2rem; }
  .cta-section .text-lg-end { text-align: left !important; margin-top: 16px; }
}

/* ---- Mobile landscape / small tablets ---- */
@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; letter-spacing: -0.5px; }
  .hero-subtitle { font-size: 0.95rem; line-height: 1.7; }
  .hero-badge { font-size: 0.72rem; padding: 8px 16px; letter-spacing: 1px; }
  .hero-section .row.min-vh-100 { padding: 100px 0 40px; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .hero-buttons a { text-align: center; justify-content: center; width: 100%; padding: 14px 24px; }

  .section-title { font-size: 2rem; }
  .section-desc { font-size: 0.95rem; }
  .section-tag { font-size: 0.75rem; letter-spacing: 2px; }

  .cta-section h2 { font-size: 1.8rem; }
  .cta-section p { font-size: 0.95rem; }
  .page-hero { padding: 120px 0 40px; }
  .page-hero h1 { font-size: 2rem; }
  .page-hero p { font-size: 0.95rem; }

  /* Welcome section */
  .welcome-images { height: 350px; }
  .welcome-img-main { width: 80%; height: 300px; }
  .welcome-img-accent { width: 60%; height: 200px; }
  .welcome-experience-badge { right: 10%; padding: 18px; }
  .welcome-experience-badge .number { font-size: 2.2rem; }

  /* Room cards */
  .room-card-image { height: 220px; }
  .room-card-body { padding: 22px; }
  .room-card-body h3 { font-size: 1.2rem; }
  .room-card-footer { flex-direction: column; align-items: flex-start; gap: 12px; }
  .room-price .price { font-size: 1.3rem; }

  /* Room detail page */
  .room-detail-image .main-img { height: 280px; }
  .room-detail-info h2 { font-size: 1.8rem; }
  .room-detail-row { margin-top: 50px !important; }

  /* Amenity cards */
  .amenity-card { padding: 28px 18px; }
  .amenity-icon { width: 60px; height: 60px; font-size: 1.3rem; }

  /* Confirmation page */
  .confirmation-card { padding: 36px 24px; }
  .code-value { font-size: 1.3rem; letter-spacing: 2px; }
  .confirmation-card h1 { font-size: 1.6rem; }
  .detail-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { padding: 50px 0 30px; }
  .footer-bottom .row { text-align: center; }
  .footer-bottom .text-md-end { text-align: center !important; margin-top: 4px; }
  .footer-desc { max-width: 100%; }

  /* Buttons general */
  .btn-primary-naatoa { padding: 14px 28px; font-size: 0.9rem; }
  .btn-outline-naatoa { padding: 14px 28px; font-size: 0.9rem; }
  .btn-dark-naatoa { padding: 14px 28px; font-size: 0.9rem; }

  /* Booking summary sticky off on mobile */
  .booking-summary { position: static !important; }
}

/* ---- Small mobile ---- */
@media (max-width: 576px) {
  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: 0.9rem; margin-bottom: 28px; }
  .hero-content { padding-top: 60px; }
  .hero-section .row.min-vh-100 { padding: 90px 0 30px; }
  .hero-badge { font-size: 0.68rem; padding: 7px 14px; margin-bottom: 20px; }
  .hero-buttons a { font-size: 0.88rem; padding: 13px 20px; }

  .section-title { font-size: 1.6rem; }
  .section-padding { padding: 50px 0; }
  .section-padding-sm { padding: 40px 0; }
  .section-header { margin-bottom: 30px; }

  .naatoa-navbar { padding: 12px 0; }
  .naatoa-navbar.scrolled { padding: 8px 0; }
  .naatoa-navbar .navbar-brand { font-size: 1.2rem; }
  .brand-sub { display: inline; }

  /* Welcome section */
  .welcome-images { height: auto; min-height: 280px; }
  .welcome-img-main { position: relative; width: 100%; height: 260px; }
  .welcome-img-accent { display: none; }
  .welcome-experience-badge { right: 10px; bottom: 10px; top: auto; transform: none; padding: 14px; }
  .welcome-experience-badge .number { font-size: 2rem; }
  .welcome-experience-badge .text { font-size: 0.72rem; }

  /* Why section */
  .why-number { font-size: 1.6rem; min-width: 36px; }
  .why-item { gap: 14px; padding: 16px 0; }
  .why-item h5 { font-size: 0.95rem; }
  .why-item p { font-size: 0.85rem; }

  /* Room cards */
  .room-card-image { height: 200px; }
  .room-card-amenities { grid-template-columns: 1fr; }

  /* Booking bar */
  .booking-bar-inner { padding: 16px; border-radius: var(--radius); }
  .booking-field label { font-size: 0.72rem; }
  .booking-field input,
  .booking-field select { padding: 10px 12px; font-size: 0.85rem; }
  .booking-bar-btn { padding: 14px; font-size: 0.88rem; }

  /* Room detail page */
  .room-detail-image .main-img { height: 220px; }
  .room-detail-info h2 { font-size: 1.5rem; }
  .room-amenities-grid { grid-template-columns: 1fr; }

  /* Booking form */
  .booking-form-card { padding: 20px 16px; }
  .booking-form-header h3 { font-size: 1.3rem; }
  .form-section-title { font-size: 1rem; }
  .form-group label { font-size: 0.82rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 12px 14px; font-size: 0.88rem; }
  .btn-submit { padding: 16px 24px; font-size: 0.92rem; }

  /* Amenity section */
  .amenity-card { padding: 24px 16px; }
  .amenity-icon { width: 56px; height: 56px; font-size: 1.2rem; margin-bottom: 14px; }
  .amenity-card h5 { font-size: 0.95rem; }
  .amenity-card p { font-size: 0.82rem; }

  /* CTA */
  .cta-section h2 { font-size: 1.5rem; }
  .cta-section p { font-size: 0.9rem; }

  /* Page hero */
  .page-hero { padding: 110px 0 36px; }
  .page-hero h1 { font-size: 1.7rem; }
  .page-hero p { font-size: 0.88rem; }

  /* Confirmation */
  .confirmation-section { padding: 110px 0 40px; }
  .confirmation-card { padding: 24px 16px; }
  .confirmation-card h1 { font-size: 1.4rem; }
  .reservation-code-box { flex-direction: column; gap: 8px; padding: 18px; }
  .code-value { font-size: 1.2rem; }
  .confirmation-notes { padding: 20px; }
  .confirmation-actions { flex-direction: column; }
  .confirmation-actions a,
  .confirmation-actions button { width: 100%; text-align: center; justify-content: center; }

  /* Check reservation */
  .check-form-card { padding: 24px 18px; }
  .check-result-header { flex-direction: column; gap: 10px; padding: 16px 20px; }
  .check-result-body { padding: 18px 20px; }
  .result-row { flex-direction: column; gap: 2px; }
  .result-row .label { font-size: 0.78rem; }
  .result-row .value { font-size: 0.9rem; }

  /* Footer */
  .footer-top { padding: 40px 0 24px; }
  .footer-widget h6 { margin-bottom: 16px; }
  .footer-socials { justify-content: flex-start; }
  .footer-bottom { padding: 18px 0; }
  .footer-bottom p { font-size: 0.78rem; }

  /* Scroll top */
  .scroll-top-btn { bottom: 20px; right: 16px; width: 42px; height: 42px; border-radius: 12px; font-size: 1rem; }

  /* Map */
  .map-wrapper { height: 280px; }
}

/* ---- Extra small (below 400px) ---- */
@media (max-width: 400px) {
  .hero-title { font-size: 1.5rem; }
  .hero-subtitle { font-size: 0.85rem; }
  .section-title { font-size: 1.4rem; }
  .hero-badge { font-size: 0.65rem; padding: 6px 12px; }
  .booking-form-card { padding: 16px 12px; }
  .room-card-body { padding: 18px 14px; }
  .confirmation-card { padding: 20px 12px; }
  .page-hero h1 { font-size: 1.5rem; }
}

/* ============================================
   Service Cards (Contact Page)
   ============================================ */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.1), rgba(200, 150, 62, 0.05));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card-icon i {
  font-size: 1.4rem;
  color: var(--gold);
  transition: var(--transition);
}

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.service-card:hover .service-card-icon i {
  color: var(--white);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   Contact Detail Cards
   ============================================ */
.contact-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  height: 100%;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.contact-detail-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px 3px 0 0;
  transition: transform 0.4s ease;
}

.contact-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.contact-detail-card:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.contact-detail-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}

.contact-detail-icon i {
  font-size: 1.4rem;
  color: var(--gold-light);
}

.contact-detail-card:hover .contact-detail-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.contact-detail-card:hover .contact-detail-icon i {
  color: var(--white);
}

.contact-detail-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-detail-text {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

.contact-detail-text a {
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail-text a:hover {
  color: var(--gold);
}

.contact-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.contact-social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition);
}

.contact-social-link:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
