/* ============================================================
   Budget Inn Greenville – Main Stylesheet
   Stack: Bootstrap 5 + Custom CSS
   Author: Antigravity
   ============================================================ */

/* ─── CSS Custom Properties ─────────────────────────────── */
:root {
  --primary: #1A3C5E;
  --primary-light: #2A5080;
  --primary-dark: #0F2132;
  --accent: #C9A84C;
  --accent-light: #DEC072;
  --accent-dark: #A8893A;
  --bg-dark: #0F2132;
  --bg-section: #F8FAFC;
  --text-main: #1C2B3A;
  --text-muted: #6B7C8D;
  --text-light: #F5F5F0;
  --surface: #FFFFFF;
  --border: #E4ECF3;
  --shadow-sm: 0 2px 8px rgba(26, 60, 94, 0.08);
  --shadow-md: 0 8px 30px rgba(26, 60, 94, 0.14);
  --shadow-lg: 0 20px 60px rgba(26, 60, 94, 0.20);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

html.mobile-nav-open,
body.mobile-nav-open {
  overflow: hidden !important;
  touch-action: none;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

/* ─── Utility Classes ────────────────────────────────────── */
.text-accent {
  color: var(--accent) !important;
}

.text-primary-dark {
  color: var(--primary) !important;
}

.bg-primary-dark {
  background-color: var(--primary) !important;
}

.bg-section {
  background-color: var(--bg-section) !important;
}

.section-pad {
  padding: 90px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--primary);
  margin-bottom: 0.5rem;
}

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

.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  margin: 0.75rem 0 1.5rem;
}

.divider-gold.center {
  margin: 0.75rem auto 1.5rem;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn-gold {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.35);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.45);
  color: #fff;
}

.btn-outline-gold {
  background: transparent;
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 0.7rem 1.8rem;
  border: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-gold:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.btn-primary-dark {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(26, 60, 94, 0.35);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-dark:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  color: #fff;
}

/* ─── Navbar ─────────────────────────────────────────────── */
.site-navbar {
  position: fixed;
  top: 37px;
  /* sits directly below the topbar */
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  transition: top 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  background: rgba(15, 33, 50, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.site-navbar.scrolled {
  top: 0;
  /* topbar hidden on scroll, navbar moves to top */
  background: rgba(15, 33, 50, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.site-navbar .navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  transition: padding 0.3s ease;
}

.site-navbar.scrolled .navbar-inner {
  padding: 12px 0;
}

/* Top bar – fixed at very top */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  /* above navbar */
  background: var(--primary-dark);
  padding: 7px 0;
  font-size: 0.82rem;
  color: rgba(245, 245, 240, 0.75);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.topbar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.topbar a {
  color: var(--accent);
}

.topbar a:hover {
  color: var(--accent-light);
}

.topbar-items {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar-social a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(245, 245, 240, 0.6);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  transition: var(--transition);
}

.topbar-social a:hover {
  background: var(--accent);
  color: #fff;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-logo .logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
}

.navbar-logo .logo-text {
  color: #fff;
}

.navbar-logo .logo-text span {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
}

.navbar-logo .logo-text small {
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links .nav-link-item a {
  color: rgba(245, 245, 240, 0.85);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  display: block;
  transition: var(--transition);
  position: relative;
}

.nav-links .nav-link-item a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-links .nav-link-item a:hover::after,
.nav-links .nav-link-item a.active::after {
  width: calc(100% - 1.8rem);
}

.nav-links .nav-link-item a:hover,
.nav-links .nav-link-item a.active {
  color: #fff;
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff !important;
  padding: 0.55rem 1.2rem !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  box-shadow: 0 3px 12px rgba(201, 168, 76, 0.4);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  color: #fff !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(10, 25, 40, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.25rem 1.5rem 3rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-header {
  width: 100%;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.mobile-nav-logo {
  text-decoration: none;
}

.mobile-nav-logo .logo-text span {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.mobile-nav-logo .logo-text small {
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
}

.mobile-nav-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-nav-close:hover,
.mobile-nav-close:focus {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.mobile-nav-links li {
  margin: 0.35rem 0;
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(245, 245, 240, 0.85);
  display: block;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--accent);
  background: rgba(201, 168, 76, 0.12);
}

.mobile-nav-cta {
  margin-top: 1.5rem;
  width: 100%;
  max-width: 320px;
  text-align: center;
}

.mobile-nav-cta .btn-gold {
  width: 100%;
  justify-content: center;
}

/* ─── Hero Section (Slider) ─────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-carousel {
  width: 100%;
  min-height: 100vh;
  touch-action: pan-y;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  min-height: 100vh;
  position: relative;
  touch-action: pan-y;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.carousel-item.active .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 25, 40, 0.82) 0%,
      rgba(15, 33, 50, 0.65) 50%,
      rgba(10, 25, 40, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 170px 1.25rem 140px;
  /* Preserve the container gutter around hero content. */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: var(--accent);
  font-style: italic;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(245, 245, 240, 0.85);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Custom Carousel Controls (Arrows) */
.hero-arrow {
  width: 54px;
  height: 54px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.85;
  z-index: 10;
  transition: var(--transition);
}

.carousel-control-prev.hero-arrow {
  left: 30px;
}

.carousel-control-next.hero-arrow {
  right: 30px;
}

.hero-arrow-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(15, 33, 50, 0.6);
  border: 1.5px solid rgba(201, 168, 76, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: var(--transition);
}

.hero-arrow:hover {
  opacity: 1;
}

.hero-arrow:hover .hero-arrow-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

/* Custom Indicators */
.hero-indicators {
  bottom: 110px;
  margin-bottom: 0;
  z-index: 10;
}

.hero-indicators [data-bs-target] {
  width: 32px;
  height: 4px;
  border: none;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0.7;
  transition: var(--transition);
  margin: 0 4px;
}

.hero-indicators .active {
  width: 48px;
  background-color: var(--accent);
  opacity: 1;
}

/* Hero Stats Wrapper */
.hero-stats-wrapper {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  z-index: 5;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.78rem;
  color: rgba(245, 245, 240, 0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Active Slide Content Animation */
.carousel-item.active .fade-in-up {
  animation: fadeInUp 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.carousel-item.active .delay-1 {
  animation-delay: 0.15s;
}

.carousel-item.active .delay-2 {
  animation-delay: 0.3s;
}

.carousel-item.active .delay-3 {
  animation-delay: 0.45s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 13px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollDot 2s infinite;
}

@keyframes scrollDot {

  0%,
  100% {
    top: 6px;
    opacity: 1;
  }

  70% {
    top: 18px;
    opacity: 0;
  }
}

/* ─── Booking Bar ────────────────────────────────────────── */
.booking-bar {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-lg);
  margin-top: -70px;
  position: relative;
  z-index: 10;
  border: 1px solid var(--border);
}

.booking-bar h2,
.booking-bar h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-bar h2 i,
.booking-bar h3 i {
  color: var(--accent);
}

.booking-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-end;
}

.booking-field {
  flex: 1;
  min-width: 160px;
}

.booking-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.booking-field input,
.booking-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-main);
  background: var(--surface);
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.booking-field input:focus,
.booking-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

/* ─── Accessibility & Special Requests Notice ────────────── */
.accessibility-notice-section {
  width: 100%;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1) 0%, rgba(201, 168, 76, 0.04) 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding: 1.25rem 0;
}

.accessibility-notice-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
  text-align: center;
}

.accessibility-notice-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.3);
}

.accessibility-notice-text p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.accessibility-notice-text strong {
  color: var(--text-main);
  font-weight: 600;
}

.accessibility-notice-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 6px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}

.accessibility-notice-phone:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

.accessibility-notice-phone i {
  font-size: 0.85rem;
}

@media (max-width: 767.98px) {
  .accessibility-notice-bar {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}

/* ─── Welcome Intro Section & Video ──────────────────────── */
.welcome-intro-section {
  background: var(--surface);
  position: relative;
}
.welcome-video-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: var(--primary-dark);
  transition: var(--transition);
}
.welcome-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(26,60,94,0.22);
}
.welcome-video-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ─── Custom Amenities List (Pet-Friendly Amenities Page) ─ */
.custom-amenities-list li {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.custom-amenities-list .bullet-symbol {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1;
  width: 14px;
  display: inline-block;
  text-align: center;
}

/* ─── Feature Cards (Why Choose Us) ─────────────────────── */
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12) 0%, rgba(201, 168, 76, 0.06) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  color: var(--accent);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ─── Room Cards ─────────────────────────────────────────── */
.room-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border);
}

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

.room-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}

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

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

.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
}

.room-body {
  padding: 1.5rem;
}

.room-body h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.room-body p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.room-amenity {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--bg-section);
  padding: 0.25rem 0.65rem;
  border-radius: 30px;
  border: 1px solid var(--border);
}

.room-amenity i {
  color: var(--accent);
  font-size: 0.7rem;
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.room-price .amount {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.room-price .per {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── Amenities Grid ─────────────────────────────────────── */
.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 0.75rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
  overflow: hidden;
}

.amenity-item:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.amenity-item i {
  font-size: 1.8rem;
  color: var(--accent);
  transition: var(--transition);
}

.amenity-item:hover i {
  color: var(--accent-light);
}

.amenity-item span {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  transition: var(--transition);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.amenity-item:hover span {
  color: rgba(245, 245, 240, 0.85);
}

/* ─── Gallery Grid ───────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 60, 94, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2rem;
  color: #fff;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: var(--transition);
}

.lightbox-close:hover {
  opacity: 1;
  color: var(--accent);
}

/* ─── Testimonials ───────────────────────────────────────── */
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  height: 100%;
  position: relative;
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.3);
}

.review-card .quote-icon {
  font-size: 3.5rem;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  font-family: Georgia, serif;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.review-stars {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-main);
}

.reviewer-info {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─── Counter Section ────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(245, 245, 240, 0.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0.5rem;
  display: block;
}

/* ─── Map Section ────────────────────────────────────────── */
.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--border);
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* ─── Contact Info Cards ─────────────────────────────────── */
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition);
  height: 100%;
  min-width: 0;
  overflow: hidden;
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-3px);
}

.contact-card > div:not(.contact-icon) {
  min-width: 0;
  flex: 1;
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-card h5,
.contact-card h2 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.contact-card a,
.contact-card p {
  font-size: 0.92rem;
  color: var(--text-main);
  font-weight: 500;
  margin: 0;
  display: block;
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact-card a[href^="mailto:"] {
  word-break: break-all;
}

.contact-card a:hover {
  color: var(--accent);
}

/* ─── Contact Form ───────────────────────────────────────── */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.form-control-custom {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-main);
  background: var(--surface);
  transition: var(--transition);
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 130px;
}

/* ─── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 155px 0 60px;
  /* clears topbar + navbar */
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 0.75rem;
}

.page-hero .breadcrumb-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(245, 245, 240, 0.65);
}

.page-hero .breadcrumb-wrap a {
  color: var(--accent);
}

.page-hero .breadcrumb-wrap a:hover {
  color: var(--accent-light);
}

.page-hero .breadcrumb-sep {
  color: rgba(245, 245, 240, 0.4);
}

/* ─── About Page ─────────────────────────────────────────── */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-img-wrap .carousel-indicators {
  margin-bottom: 1rem;
  z-index: 5;
}

.about-img-wrap .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffffff;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: var(--transition);
}

.about-img-wrap .carousel-indicators .active {
  background-color: var(--accent);
  opacity: 1;
  width: 24px;
  border-radius: 10px;
}

.about-img-wrap .carousel-control-prev,
.about-img-wrap .carousel-control-next {
  width: 42px;
  height: 42px;
  background: rgba(15, 33, 50, 0.55);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: var(--transition);
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-img-wrap:hover .carousel-control-prev,
.about-img-wrap:hover .carousel-control-next {
  opacity: 0.95;
}

.about-img-wrap .carousel-control-prev {
  left: 15px;
}

.about-img-wrap .carousel-control-next {
  right: 15px;
}

.about-img-wrap .carousel-control-prev:hover,
.about-img-wrap .carousel-control-next:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  opacity: 1;
}

.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-md);
}

.about-img-badge .num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.about-img-badge .txt {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.93rem;
  color: var(--text-muted);
}

.about-list li i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  color: rgba(245, 245, 240, 0.7);
  padding: 70px 0 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.25rem;
  color: #fff;
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(245, 245, 240, 0.55);
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 245, 240, 0.55);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(245, 245, 240, 0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--accent);
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.875rem;
}

.footer-contact-list i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}

.footer-contact-list a {
  color: rgba(245, 245, 240, 0.65);
}

.footer-contact-list a:hover {
  color: var(--accent);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 3rem;
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: rgba(245, 245, 240, 0.4);
}

.footer-bottom a {
  color: rgba(245, 245, 240, 0.4);
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ─── Scroll to top ──────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 500;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
}

#scrollTop.visible {
  opacity: 1;
  visibility: visible;
}

#scrollTop:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.5);
}

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

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 {
  transition-delay: 0.1s;
}

.fade-up.delay-2 {
  transition-delay: 0.2s;
}

.fade-up.delay-3 {
  transition-delay: 0.3s;
}

.fade-up.delay-4 {
  transition-delay: 0.4s;
}

.fade-up.delay-5 {
  transition-delay: 0.5s;
}

/* ─── Preloader ──────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.preloader-logo span {
  color: var(--accent);
}

.preloader-bar {
  width: 120px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  display: block;
  height: 100%;
  background: var(--accent);
  animation: preload 1.5s ease forwards;
}

@keyframes preload {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

/* ─── Alert / notification ───────────────────────────────── */
.form-alert {
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-top: 1rem;
  display: none;
}

.form-alert.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-alert.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hide topbar on mobile; navbar sits at very top */
  .topbar {
    display: none !important;
  }

  .site-navbar {
    top: 0 !important;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large {
    grid-row: span 1;
  }

  .booking-form {
    flex-direction: column;
  }

  .booking-field,
  .booking-field[style] {
    width: 100%;
    min-width: 0 !important;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .site-navbar .navbar-inner {
    min-height: 70px;
  }

  .navbar-logo .logo-text span {
    font-size: 1rem;
  }

  /* Reduce hero/page-hero top padding on mobile since topbar is gone */
  .hero-content {
    padding: 120px 1.25rem 100px;
  }

  .page-hero {
    padding-top: 110px;
  }

  .carousel-control-prev.hero-arrow {
    left: 10px;
  }

  .carousel-control-next.hero-arrow {
    right: 10px;
  }

  .hero-arrow-icon {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }

  .hero-indicators {
    bottom: 95px;
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 56px 0;
  }

  .section-pad-sm {
    padding: 42px 0;
  }

  .page-hero {
    padding: 100px 0 44px;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .hero-content {
    padding: 108px 1.25rem 72px;
  }

  .booking-bar {
    margin-top: -30px;
    padding: 1.5rem;
  }

  .booking-bar h2,
  .booking-bar h3 {
    margin-bottom: 1.25rem;
    padding-bottom: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    gap: 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn-gold,
  .hero-actions .btn-outline-gold {
    width: 100%;
    justify-content: center;
  }

  .map-wrapper iframe {
    height: 280px;
  }

  .about-img-wrap img {
    height: 320px;
  }

  .about-img-badge {
    bottom: 16px;
    left: 16px;
    padding: 0.8rem 1rem;
  }

  .about-img-badge .num {
    font-size: 1.8rem;
  }

  .contact-form-wrap {
    padding: 1.25rem;
  }

  .contact-card {
    padding: 1.25rem;
    gap: 1rem;
  }

  .room-img-wrap {
    height: 210px;
  }

  .room-footer {
    align-items: flex-start;
    gap: 1rem;
    flex-direction: column;
  }

  .room-footer .btn-gold {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom .d-flex {
    justify-content: center !important;
    text-align: center;
  }

  .lightbox img {
    max-width: 94vw;
    max-height: 78vh;
  }

  .lightbox-close {
    top: 12px;
    right: 16px;
  }

  .hero {
    overflow: visible;
    min-height: auto;
  }

  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item {
    min-height: auto;
  }

  .scroll-indicator {
    display: none !important;
  }

  .hero-arrow {
    display: none;
  }

  /* hero stats sit cleanly below hero slide on mobile screens */
  .hero-stats-wrapper {
    position: relative;
    bottom: auto;
    padding: 1.75rem 0 1.25rem;
    background: var(--primary-dark);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
  }
}

@media (max-width: 480px) {
  .navbar-logo .logo-text small {
    font-size: 0.62rem;
    letter-spacing: 1.4px;
  }

  .mobile-nav-links a {
    font-size: 1.6rem;
  }

  .gallery-filter-btn {
    padding: 0.55rem 0.8rem;
    font-size: 0.76rem;
  }

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

  .hero-stat .num {
    font-size: 1.8rem;
  }
}

/* --- Field error state (contact form) --------------------- */
.field-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12) !important;
}

/* --- Bootstrap accordion overrides ----------------------- */
.accordion-button:not(.collapsed) {
  color: var(--accent) !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15) !important;
}

.accordion-item {
  border: 1px solid var(--border) !important;
}

/* --- Booking Sidebar Styling & Sticky Behavior ------------- */
#booking-form-section.section-pad {
  padding-top: 50px;
}

.sidebar-card {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition);
}

.sidebar-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-3px);
}

.sidebar-card.contact-card {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.sidebar-card.contact-card .contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.sidebar-card-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
  letter-spacing: 0.5px;
}

.sidebar-phone-link {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.sidebar-phone-link:hover {
  color: var(--accent);
}

.sidebar-card-header {
  font-size: 1.1rem;
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
}

.sidebar-policy-grid {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.sidebar-policy-grid strong {
  color: var(--text-main);
}

.sidebar-policy-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.sidebar-policy-item i {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.sidebar-perks-list {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  margin-bottom: 0;
  line-height: 1.65;
}

.sidebar-perks-list li {
  margin-bottom: 0.75rem;
}

.sidebar-perks-list li:last-child {
  margin-bottom: 0;
}

.sidebar-perks-list strong {
  color: var(--text-main);
}

/* Sticky sidebar for desktop screens */
@media (min-width: 992px) {
  .booking-sidebar-sticky {
    position: sticky;
    top: 120px;
    align-self: start;
  }
}

/* Responsive sidebar adjustments */
@media (max-width: 767px) {
  .sidebar-card {
    padding: 1.25rem;
  }

  .sidebar-card.contact-card {
    gap: 1rem;
  }

  .sidebar-phone-link {
    font-size: 1.2rem;
  }
}

/* ─── Thank You / Booking Request Submitted Page ────────── */
.thank-you-container {
  max-width: 820px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.thank-you-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.badge-icon-outer {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.12) 0%, rgba(201, 168, 76, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2E7D32;
  font-size: 3.5rem;
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.15);
  animation: pulseBadge 2.5s infinite ease-in-out;
}

@keyframes pulseBadge {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.25); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 16px rgba(46, 125, 50, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(46, 125, 50, 0); }
}

.thank-you-message {
  font-size: 1.15rem;
  color: var(--text-main);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.ref-number-box {
  background: linear-gradient(135deg, rgba(26, 60, 94, 0.04) 0%, rgba(201, 168, 76, 0.08) 100%);
  border: 2px dashed var(--accent);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.ref-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.ref-value-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ref-code {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1.5px;
  background: #fff;
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-copy-ref {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(26, 60, 94, 0.2);
}

.btn-copy-ref:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  color: #fff;
}

.btn-copy-ref.copied {
  background: #2E7D32 !important;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.copy-toast {
  display: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: #2E7D32;
  margin-top: 0.5rem;
}

.copy-toast.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.ref-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.review-notice-box {
  background: rgba(26, 60, 94, 0.03);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.7;
}

.what-next-section {
  margin-bottom: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.what-next-title {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1.75rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.step-card {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition);
  height: 100%;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(201, 168, 76, 0.3);
}

.step-content h4 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
}

.btn-lg-custom {
  padding: 0.85rem 2.25rem;
  font-size: 0.95rem;
}

@media (max-width: 576px) {
  .thank-you-container {
    padding: 2rem 1.25rem;
  }
  .ref-number-box {
    padding: 1.25rem 1rem;
  }
  .ref-value-wrap {
    flex-direction: column;
    gap: 0.75rem;
  }
  .ref-code {
    width: 100%;
    word-break: break-all;
  }
  .btn-copy-ref {
    width: 100%;
    justify-content: center;
  }
  .thank-you-actions {
    flex-direction: column;
  }
  .btn-lg-custom {
    width: 100%;
    justify-content: center;
  }
}