/* ============================================
   NAATOA HOUSING - Modern Rental Platform
   Airbnb-inspired Design System
   ============================================ */

/* --- CSS Variables --- */
:root {
  --coral: #FF385C;
  --coral-light: #FF5A78;
  --coral-dark: #E31C5F;
  --dark: #222222;
  --dark-light: #484848;
  --dark-deep: #14171A;
  --teal: #00A699;
  --teal-light: #00BFA6;
  --purple: #7B61FF;
  --orange: #FF8C42;
  --white: #FFFFFF;
  --gray-50: #F7F7F7;
  --gray-100: #EBEBEB;
  --gray-200: #DDDDDD;
  --gray-300: #B0B0B0;
  --gray-400: #767676;
  --gray-600: #484848;
  --gray-800: #222222;
  --font-heading: "DM Serif Display", "Playfair Display", Georgia, serif;
  --font-body: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.16);
  --shadow-coral: 0 8px 30px rgba(255, 56, 92, 0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- 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);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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; }

/* --- Selection --- */
::selection { background: var(--coral); color: var(--white); }

/* --- Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark-deep);
  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 {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  position: relative;
}
.loader-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(255, 56, 92, 0.15);
}
.loader-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--coral);
  animation: spin 0.8s linear infinite;
}
.loader-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  color: var(--coral);
}
.loader-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 4px;
  font-weight: 600;
  text-transform: uppercase;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- Navbar --- */
.naatoa-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 20px 0;
  transition: var(--transition);
}
.naatoa-navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.naatoa-navbar .navbar-brand {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 3px;
  transition: var(--transition);
}
.naatoa-navbar.scrolled .navbar-brand { color: var(--dark); }

.brand-text { font-family: var(--font-body); font-weight: 800; }
.brand-dot { color: var(--coral); font-size: 2rem; line-height: 0; }
.brand-sub {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral);
  opacity: 0.9;
  margin-left: 4px;
}

.naatoa-navbar .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 18px !important;
  position: relative;
  transition: var(--transition);
}
.naatoa-navbar.scrolled .nav-link { color: var(--gray-600) !important; }
.naatoa-navbar .nav-link:hover,
.naatoa-navbar .nav-link.active { color: var(--coral) !important; }
.naatoa-navbar.scrolled .nav-link:hover,
.naatoa-navbar.scrolled .nav-link.active { color: var(--coral) !important; }

.naatoa-navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}
.naatoa-navbar .nav-link:hover::after,
.naatoa-navbar .nav-link.active::after { width: 24px; }

.navbar-toggler {
  border: 2px solid rgba(255, 56, 92, 0.4) !important;
  padding: 6px 10px;
  transition: var(--transition);
}
.naatoa-navbar.scrolled .navbar-toggler { border-color: rgba(255, 56, 92, 0.4) !important; }
.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(255,56,92,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.btn-nav {
  background: var(--coral) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 10px 28px !important;
  border-radius: 50px;
  font-size: 0.88rem !important;
  transition: var(--transition);
  border: none !important;
}
.btn-nav:hover {
  background: var(--coral-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-coral);
  color: var(--white) !important;
}

/* --- 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.08);
  transition: opacity 1.8s ease, transform 10s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(20, 23, 26, 0.7) 0%, rgba(20, 23, 26, 0.5) 40%, rgba(20, 23, 26, 0.85) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}
.hero-particles .particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 56, 92, 0.5);
  border-radius: 50%;
  animation: float-particle 20s infinite;
}
.hero-particles .particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; animation-duration: 25s; width: 3px; height: 3px; }
.hero-particles .particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 3s; animation-duration: 22s; }
.hero-particles .particle:nth-child(3) { top: 40%; left: 50%; animation-delay: 6s; animation-duration: 28s; width: 4px; height: 4px; }
.hero-particles .particle:nth-child(4) { top: 80%; left: 30%; animation-delay: 2s; animation-duration: 20s; }
.hero-particles .particle:nth-child(5) { top: 10%; left: 70%; animation-delay: 4s; animation-duration: 30s; width: 3px; height: 3px; }
.hero-particles .particle:nth-child(6) { top: 50%; left: 20%; animation-delay: 7s; animation-duration: 24s; }

@keyframes float-particle {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0; }
  10% { opacity: 0.8; }
  50% { transform: translate(80px, -150px) scale(1.5); opacity: 0.3; }
  90% { opacity: 0; }
}

.hero-content { position: relative; z-index: 3; padding-top: 80px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 56, 92, 0.1);
  border: 1px solid rgba(255, 56, 92, 0.2);
  color: var(--coral-light);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 56, 92, 0.4); }
  50% { opacity: 0.8; transform: scale(1.2); box-shadow: 0 0 0 8px rgba(255, 56, 92, 0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4.8rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--coral), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn-primary-naatoa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--coral);
  color: var(--white);
  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.15), transparent);
  transition: left 0.5s ease;
}
.btn-primary-naatoa:hover::before { left: 100%; }
.btn-primary-naatoa:hover {
  background: var(--coral-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-coral);
  color: var(--white);
}

.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.2);
  transition: var(--transition);
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-outline-naatoa:hover {
  border-color: var(--coral);
  color: var(--coral);
  background: rgba(255, 56, 92, 0.05);
  transform: translateY(-3px);
}

.btn-dark-naatoa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: var(--white);
  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(--dark-deep);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* --- Section Headers --- */
.section-header { margin-bottom: 60px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.section-tag .line { width: 32px; height: 2px; background: var(--coral); border-radius: 2px; }

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.section-title .highlight { color: var(--coral); }
.section-desc {
  font-size: 1.05rem;
  color: var(--gray-400);
  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(--white); }

.welcome-images {
  position: relative;
  height: 500px;
}
.welcome-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.welcome-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.welcome-img-main:hover img { transform: scale(1.05); }
.welcome-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 280px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 6px 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(--coral);
  color: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-coral);
  z-index: 2;
  animation: float-badge 4s ease-in-out infinite;
}
.welcome-experience-badge .number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
}
.welcome-experience-badge .number span { font-size: 1.5rem; }
.welcome-experience-badge .text {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  line-height: 1.3;
  opacity: 0.9;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 12px)); }
}

.welcome-features { margin: 32px 0; }
.welcome-feature {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}
.welcome-feature:last-child { border-bottom: none; }
.welcome-feature:hover { padding-left: 8px; }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 56, 92, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition-bounce);
}
.welcome-feature:hover .feature-icon {
  background: var(--coral);
  color: var(--white);
  transform: rotate(-5deg) scale(1.1);
  border-radius: 14px;
}
.welcome-feature h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.welcome-feature p {
  font-size: 0.88rem;
  color: var(--gray-400);
  margin: 0;
}

/* --- Room / Stay Cards --- */
.rooms-section { background: var(--gray-50); }

.room-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  height: 100%;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  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.6s ease;
}
.room-card:hover .room-card-image img { transform: scale(1.08); }

.room-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(20, 23, 26, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
}
.room-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 23, 26, 0.7), transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  opacity: 0;
  transition: var(--transition);
}
.room-card:hover .room-card-overlay { opacity: 1; }
.btn-book-room {
  background: var(--coral);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transform: translateY(20px);
  transition: var(--transition-bounce);
}
.room-card:hover .btn-book-room { transform: translateY(0); }
.btn-book-room:hover { background: var(--coral-dark); color: var(--white); box-shadow: var(--shadow-coral); }

.room-card-body { padding: 28px; }
.room-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 10px;
}
.room-card-desc {
  font-size: 0.88rem;
  color: var(--gray-400);
  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(--coral); font-size: 0.75rem; width: 16px; text-align: center; }

.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
}
.room-price .price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
}
.room-price .per-night {
  font-size: 0.82rem;
  color: var(--gray-300);
}
.btn-room-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--coral);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
}
.btn-room-book:hover { color: var(--coral-dark); gap: 12px; }

/* --- Amenities Section --- */
.amenities-section {
  background: var(--dark-deep);
  position: relative;
  overflow: hidden;
}
.amenities-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 56, 92, 0.08), transparent 70%);
}
.amenities-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 166, 153, 0.06), transparent 70%);
}

.amenity-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  height: 100%;
  position: relative;
}
.amenity-card:hover {
  background: rgba(255, 56, 92, 0.06);
  border-color: rgba(255, 56, 92, 0.15);
  transform: translateY(-8px);
}
.amenity-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: rgba(255, 56, 92, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.5rem;
  color: var(--coral);
  transition: var(--transition-bounce);
}
.amenity-card:hover .amenity-icon {
  background: var(--coral);
  color: var(--white);
  transform: rotate(-5deg) scale(1.1);
  border-radius: 18px;
  box-shadow: var(--shadow-coral);
}
.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.4);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
}

/* --- Why Choose Us --- */
.why-section { background: var(--gray-50); }

.why-list { margin-top: 32px; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 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: 400;
  color: var(--coral);
  line-height: 1;
  min-width: 48px;
  opacity: 0.4;
  transition: var(--transition);
}
.why-item:hover .why-number { opacity: 1; }
.why-item h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.why-item p { font-size: 0.9rem; color: var(--gray-400); 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-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-img-1 img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.why-img-1:hover img { transform: scale(1.05); }
.why-img-2 {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 55%;
  height: 260px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 6px 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(--white);
  padding: 28px 36px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-xl);
  z-index: 2;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--coral);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--gray-400); margin-top: 4px; font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--gray-200); }

/* --- CTA Section --- */
.cta-section {
  background: var(--coral);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}
.cta-section p { color: rgba(255, 255, 255, 0.8); font-size: 1.05rem; }

/* --- Page Hero --- */
.page-hero {
  background: var(--dark-deep);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(255, 56, 92, 0.08) 0%, transparent 60%);
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 56, 92, 0.2), transparent);
}
.page-hero .breadcrumb-nav {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}
.page-hero .breadcrumb-nav a { color: var(--coral); font-size: 0.9rem; font-weight: 500; }
.page-hero .breadcrumb-nav a:hover { text-decoration: underline; }
.page-hero .breadcrumb-nav span { color: rgba(255, 255, 255, 0.35); font-size: 0.9rem; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.5px;
}
.page-hero p { color: rgba(255, 255, 255, 0.5); font-size: 1.05rem; max-width: 600px; margin-top: 12px; }

/* --- Room Detail Page --- */
.room-detail-image {
  position: relative;
  border-radius: var(--radius-xl);
  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.04); }
.room-detail-price-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(20, 23, 26, 0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: 18px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
}
.room-detail-price-badge .from { display: block; font-size: 0.72rem; color: rgba(255, 255, 255, 0.5); text-transform: uppercase; letter-spacing: 1.5px; }
.room-detail-price-badge .price { display: block; font-family: var(--font-heading); font-size: 1.6rem; font-weight: 400; color: var(--coral); }
.room-detail-price-badge .per { display: block; font-size: 0.78rem; color: rgba(255, 255, 255, 0.4); }

.room-detail-info { padding: 20px 0; }
.room-type-badge {
  display: inline-block;
  background: rgba(255, 56, 92, 0.08);
  color: var(--coral);
  padding: 8px 20px;
  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: 400;
  color: var(--dark);
  margin-bottom: 16px;
}
.room-description { font-size: 1rem; color: var(--gray-400); 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: 12px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.amenity-item i { color: var(--coral); 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-xl);
  padding: 44px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.booking-form-header { margin-bottom: 32px; }
.booking-form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 6px;
}
.booking-form-header h3 i { color: var(--coral); margin-right: 10px; }
.booking-form-header p { font-size: 0.9rem; color: var(--gray-400); margin: 0; }

.form-section { margin-bottom: 36px; }
.form-section-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-100);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-section-title i { color: var(--coral); margin-right: 8px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  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(--white);
  color: var(--gray-800);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 56, 92, 0.08);
}

.btn-submit {
  background: var(--coral);
  color: var(--white);
  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.15), transparent);
  transition: left 0.5s ease;
}
.btn-submit:hover::before { left: 100%; }
.btn-submit:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: var(--shadow-coral); }

/* 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: #FFF5F5;
  border: 1px solid #FED7D7;
  color: #E53E3E;
}
.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: #F0FFF4;
  border: 1px solid #C6F6D5;
  color: #38A169;
}

/* Booking Summary */
.booking-summary {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.summary-header {
  background: var(--dark-deep);
  padding: 22px 28px;
}
.summary-header h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}
.summary-header h4 i { color: var(--coral); margin-right: 10px; }
.summary-body { padding: 28px; }

.summary-placeholder {
  text-align: center;
  padding: 36px 0;
  color: var(--gray-300);
}
.summary-placeholder i { font-size: 2.5rem; margin-bottom: 14px; display: block; opacity: 0.5; }
.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-400);
}
.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: 400;
  color: var(--coral);
}
.summary-divider { height: 1px; background: var(--gray-100); 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: #F0FFF4; color: #38A169; border: 1px solid #C6F6D5; }
.avail-badge.unavailable { background: #FFF5F5; color: #E53E3E; border: 1px solid #FED7D7; }

.summary-footer { padding: 0 28px 28px; }
.summary-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--gray-300);
  margin-bottom: 10px;
}
.summary-note i { color: var(--coral); margin-top: 2px; flex-shrink: 0; font-size: 0.9rem; }

/* --- 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-xl);
  padding: 50px 44px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.confirmation-icon { margin-bottom: 24px; }
.confirmation-card h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 10px;
}
.confirmation-subtitle {
  font-size: 1rem;
  color: var(--gray-400);
  margin-bottom: 32px;
}

.reservation-code-box {
  background: var(--dark-deep);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.code-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
}
.code-value {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--coral);
  letter-spacing: 4px;
}
.code-copy {
  background: rgba(255, 56, 92, 0.12);
  color: var(--coral);
  border: 1px solid rgba(255, 56, 92, 0.25);
  padding: 8px 18px;
  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(--coral); color: var(--white); }

.confirmation-details { text-align: left; margin-bottom: 24px; }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  transition: var(--transition);
}
.detail-item:hover { background: var(--gray-100); }
.detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 56, 92, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
}
.detail-label { display: block; font-size: 0.72rem; color: var(--gray-300); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.detail-value { display: block; font-size: 0.92rem; font-weight: 600; color: var(--dark); }
.detail-value.highlight { color: var(--coral); 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: #F0FFF4; color: #38A169; border: 1px solid #C6F6D5; }
.status-badge.cancelled { background: #FFF5F5; color: #E53E3E; border: 1px solid #FED7D7; }
.status-badge.checked_in { background: #EBF8FF; color: #3182CE; border: 1px solid #BEE3F8; }

.confirmation-notes {
  text-align: left;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 28px;
}
.confirmation-notes h5 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.note-steps { display: flex; flex-direction: column; gap: 18px; }
.note-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  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(--dark); margin-bottom: 2px; }
.note-step p { font-size: 0.85rem; color: var(--gray-400); 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 var(--teal);
}
.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: var(--teal);
  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(0, 166, 153, 0.3);
}
.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-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.check-form-icon {
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(255, 56, 92, 0.06);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; font-size: 1.6rem; color: var(--coral);
}
.check-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 400;
  color: var(--dark); margin-bottom: 8px;
}
.check-form-card > p { font-size: 0.92rem; color: var(--gray-400); margin-bottom: 28px; }
.check-form .form-group { text-align: left; }

.check-result {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.check-result-header {
  background: var(--dark-deep);
  padding: 22px 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: 28px; }
.result-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 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-400); }
.result-row .value { font-weight: 600; color: var(--dark); }
.result-row .value.highlight { color: var(--coral); font-weight: 700; }

/* --- Contact Page --- */
.contact-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  height: 100%;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-detail-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: var(--coral);
  border-radius: 3px 3px 0 0;
  transition: transform 0.4s ease;
}

.contact-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.contact-detail-card:hover::after { transform: translateX(-50%) scaleX(1); }

.contact-detail-icon {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: var(--dark-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition-bounce);
}
.contact-detail-icon i { font-size: 1.3rem; color: var(--coral); }
.contact-detail-card:hover .contact-detail-icon {
  background: var(--coral);
  transform: rotate(-5deg) scale(1.1);
}
.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: 400;
  color: var(--dark);
  margin-bottom: 12px;
}

.contact-detail-text { font-size: 0.92rem; color: var(--gray-400); line-height: 1.7; margin: 0; }
.contact-detail-text a { color: var(--gray-400); transition: color 0.3s ease; }
.contact-detail-text a:hover { color: var(--coral); }

.contact-socials { display: flex; justify-content: center; gap: 14px; }
.contact-social-link {
  width: 50px; height: 50px; border-radius: 16px;
  background: var(--dark-deep);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--coral); font-size: 1.1rem;
  transition: var(--transition-bounce);
}
.contact-social-link:hover {
  background: var(--coral); color: var(--white);
  transform: translateY(-4px) rotate(-5deg);
  box-shadow: var(--shadow-coral);
}

/* Service cards (contact page) */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  height: 100%;
  border: 1px solid var(--gray-100);
  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: var(--coral);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(255, 56, 92, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-bounce);
}
.service-card-icon i { font-size: 1.4rem; color: var(--coral); transition: var(--transition); }
.service-card:hover .service-card-icon {
  background: var(--coral);
  transform: rotate(-5deg) scale(1.1);
}
.service-card:hover .service-card-icon i { color: var(--white); }
.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card-desc { font-size: 0.9rem; color: var(--gray-400); line-height: 1.6; margin: 0; }
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(255, 56, 92, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--coral);
}

/* --- Footer --- */
.naatoa-footer {
  background: var(--dark-deep);
  color: rgba(255, 255, 255, 0.6);
}
.footer-top { padding: 80px 0 40px; }
.footer-brand {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}
.footer-brand span { color: var(--coral); }
.footer-brand small { font-family: var(--font-body); font-size: 0.55rem; letter-spacing: 3px; text-transform: uppercase; color: var(--coral); opacity: 0.7; }
.footer-desc { color: rgba(255, 255, 255, 0.4); font-size: 0.92rem; margin-bottom: 24px; max-width: 320px; line-height: 1.7; }

.footer-socials { display: flex; gap: 12px; list-style: none; padding: 0; }
.footer-socials a {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.5); transition: var(--transition);
}
.footer-socials a:hover { background: var(--coral); color: var(--white); border-color: var(--coral); transform: translateY(-3px); }

.footer-widget h6 {
  color: var(--white); font-size: 0.85rem; font-weight: 700;
  margin-bottom: 24px; position: relative; padding-bottom: 12px;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.footer-widget h6::after { content: ""; position: absolute; bottom: 0; left: 0; width: 24px; height: 2px; background: var(--coral); border-radius: 2px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255, 255, 255, 0.4); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--coral); padding-left: 6px; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.footer-contact-item i { color: var(--coral); margin-top: 4px; flex-shrink: 0; font-size: 0.85rem; }
.footer-contact-item p { color: rgba(255, 255, 255, 0.4); font-size: 0.9rem; margin: 0; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.05); padding: 24px 0; }
.footer-bottom p { color: rgba(255, 255, 255, 0.25); font-size: 0.85rem; margin: 0; }
.footer-bottom a { color: var(--coral); }

/* --- Scroll Top --- */
.scroll-top-btn {
  position: fixed; bottom: 30px; right: 30px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--coral); color: var(--white);
  display: none; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: var(--shadow-coral);
  z-index: 999; transition: var(--transition-bounce);
  border: none; cursor: pointer;
}
.scroll-top-btn:hover { transform: translateY(-5px) scale(1.1); background: var(--coral-dark); }

/* --- Map --- */
.map-wrapper { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); height: 400px; }
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* --- 404 Page --- */
.not-found-hero { min-height: 60vh; display: flex; align-items: center; }
.not-found-graphic { position: relative; display: inline-block; }
.not-found-graphic .number {
  font-family: var(--font-heading);
  font-size: 10rem;
  font-weight: 400;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  opacity: 0.15;
}
.not-found-graphic .icon-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 56, 92, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float-badge 4s ease-in-out infinite;
}
.not-found-graphic .icon-wrap i {
  font-size: 2rem;
  color: var(--coral);
}

/* --- Animations --- */
.fade-in-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.92); transition: opacity 0.7s ease, transform 0.7s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }

/* Blur-in animation */
.blur-in { opacity: 0; filter: blur(10px); transform: translateY(20px); transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease; }
.blur-in.visible { opacity: 1; filter: blur(0); transform: translateY(0); }

.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; }

/* --- Responsive --- */
@media (max-width: 1200px) {
  .hero-title { font-size: 3.8rem; }
  .section-title { font-size: 2.4rem; }
}

@media (max-width: 992px) {
  .hero-title { font-size: 3rem; }
  .hero-subtitle { font-size: 1rem; max-width: 100%; }
  .hero-content { padding-top: 80px; }
  .hero-section { min-height: 0; }
  .hero-section .row.min-vh-100 { min-height: 0 !important; padding: 120px 0 60px; }

  .naatoa-navbar .navbar-collapse {
    background: rgba(20, 23, 26, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    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: 10px;
    color: rgba(255, 255, 255, 0.8) !important;
  }
  .naatoa-navbar.scrolled .nav-link { color: rgba(255, 255, 255, 0.8) !important; }
  .naatoa-navbar .nav-link:hover,
  .naatoa-navbar .nav-link.active {
    background: rgba(255, 56, 92, 0.1);
    color: var(--coral) !important;
  }
  .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 { height: 400px; }
  .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; }

  .booking-form-card { padding: 28px; }
  .room-amenities-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .cta-section h2 { font-size: 2.2rem; }
  .cta-section .text-lg-end { text-align: left !important; margin-top: 16px; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.4rem; 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-images { height: 350px; }
  .welcome-img-main { width: 80%; height: 300px; }
  .welcome-img-accent { width: 60%; height: 200px; }
  .welcome-experience-badge { right: 10%; padding: 20px; }
  .welcome-experience-badge .number { font-size: 2.2rem; }

  .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-image .main-img { height: 280px; }
  .room-detail-info h2 { font-size: 1.8rem; }
  .room-detail-row { margin-top: 50px !important; }

  .amenity-card { padding: 28px 18px; }
  .amenity-icon { width: 60px; height: 60px; font-size: 1.3rem; }

  .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-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%; }

  .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 { position: static !important; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 2rem; }
  .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; }

  .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: 16px; }
  .welcome-experience-badge .number { font-size: 2rem; }
  .welcome-experience-badge .text { font-size: 0.72rem; }

  .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-card-image { height: 200px; }
  .room-card-amenities { grid-template-columns: 1fr; }

  .room-detail-image .main-img { height: 220px; }
  .room-detail-info h2 { font-size: 1.5rem; }
  .room-amenities-grid { grid-template-columns: 1fr; }

  .booking-form-card { padding: 20px 16px; }
  .booking-form-header h3 { font-size: 1.3rem; }
  .form-section-title { font-size: 0.88rem; }
  .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-card { padding: 24px 16px; }
  .amenity-icon { width: 56px; height: 56px; font-size: 1.2rem; margin-bottom: 14px; border-radius: 16px; }
  .amenity-card h5 { font-size: 0.95rem; }
  .amenity-card p { font-size: 0.82rem; }

  .cta-section h2 { font-size: 1.5rem; }
  .cta-section p { font-size: 0.9rem; }

  .page-hero { padding: 110px 0 36px; }
  .page-hero h1 { font-size: 1.7rem; }
  .page-hero p { font-size: 0.88rem; }

  .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-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-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-btn { bottom: 20px; right: 16px; width: 42px; height: 42px; font-size: 0.9rem; }
  .map-wrapper { height: 280px; }
}

@media (max-width: 400px) {
  .hero-title { font-size: 1.7rem; }
  .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; }
}
