/* ============================================================
   DAAK BANGLA RETREAT — Global Design System
   base.css  |  Theme: Heritage Luxury Editorial
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&family=Cormorant:ital,wght@0,300;0,400;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

/* --- Custom Local Fonts --- */
@font-face {
  font-family: "Ogg";
  src: url("/static/fonts/Ogg/Ogg-Roman.2fd8a5ab8896.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ogg";
  src: url("/static/fonts/Ogg/OggMedium.689332d035ee.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Brand Colors — Premium Himalayan Luxury */
  --color-linen: #F9F7F3;
  /* modern breathable off-white */
  --color-linen-light: #FFFFFF;
  /* pristine white for cards */
  --color-linen-dark: #EFECE4;
  /* soft sand/beige for contrast */
  --color-sand: #E5E0D8;
  /* subtle border color */
  --color-tan: #B8905B;
  /* luxury muted gold/bronze */
  --color-tan-dark: #9A7849;
  /* darker gold for hover */
  --color-tan-light: #D4B184;
  /* lighter gold */
  --color-khaki: #2C3E35;
  /* deep pine/forest green */
  --color-khaki-dark: #1A2421;
  /* darker pine for hover/footer */

  /* Text Colors */
  --color-ink: #1C1B1A;
  /* sharp almost-black */
  --color-ink-light: #4A4A48;
  /* softer charcoal */
  --color-ink-muted: #888580;
  /* elegant grey */
  --color-white: #FFFFFF;
  --color-cream: #FBFAF7;
  /* warm bright cream */

  /* Legacy compatibility — mapped to new palette */
  --color-mud: var(--color-tan);
  --color-mud-light: var(--color-tan-light);
  --color-mud-dark: var(--color-tan-dark);
  --color-forest: #3A3028;
  --color-forest-light: #4E4238;
  --color-forest-dark: #2C2820;
  --color-crimson: var(--color-tan);
  --color-crimson-light: var(--color-tan-light);
  --color-crimson-dark: var(--color-tan-dark);
  --color-bone: var(--color-linen);
  --color-bone-dark: var(--color-linen-dark);
  --color-warm-gray: var(--color-ink-muted);
  --color-charcoal: var(--color-ink);
  --color-dark: var(--color-ink);

  /* Typography */
  --font-heading: 'Ogg', 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --font-accent: 'Cormorant', serif;

  /* Font Sizes - Fluid scaling */
  --fs-xs: clamp(0.65rem, 1vw + 0.5rem, 0.75rem);
  --fs-sm: clamp(0.75rem, 1vw + 0.6rem, 0.875rem);
  --fs-base: clamp(0.875rem, 1vw + 0.7rem, 1rem);
  --fs-md: clamp(1rem, 1.2vw + 0.7rem, 1.125rem);
  --fs-lg: clamp(1.1rem, 1.5vw + 0.7rem, 1.25rem);
  --fs-xl: clamp(1.25rem, 2vw + 0.7rem, 1.5rem);
  --fs-2xl: clamp(1.5rem, 2.5vw + 0.7rem, 1.875rem);
  --fs-3xl: clamp(1.75rem, 3vw + 0.8rem, 2.25rem);
  --fs-4xl: clamp(2rem, 4vw + 1rem, 3rem);
  --fs-5xl: clamp(2.5rem, 5vw + 1rem, 3.75rem);
  --fs-6xl: clamp(3rem, 6vw + 1rem, 4.5rem);

  /* Spacing - Fluid scaling */
  --space-xs: clamp(0.25rem, 0.5vw + 0.1rem, 0.5rem);
  --space-sm: clamp(0.5rem, 1vw + 0.2rem, 1rem);
  --space-md: clamp(1rem, 1.5vw + 0.3rem, 1.5rem);
  --space-lg: clamp(1.25rem, 2vw + 0.4rem, 2rem);
  --space-xl: clamp(1.5rem, 3vw + 0.5rem, 3rem);
  --space-2xl: clamp(2.5rem, 5vw + 0.5rem, 5rem);
  --space-3xl: clamp(3.5rem, 8vw + 0.5rem, 8rem);

  /* Border Radius — soft modern corners, fluidly scaling */
  --radius-sm: clamp(2px, 0.5vw, 6px);
  --radius-md: clamp(4px, 1vw, 12px);
  --radius-lg: clamp(8px, 1.5vw, 16px);
  --radius-xl: clamp(12px, 2vw, 24px);
  --radius-full: 999px;

  /* Shadows — elevated, soft, luxury depth */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 20px rgba(184, 144, 91, 0.15);
  /* New subtle gold glow */

  /* Glassmorphism variables */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-blur: blur(12px);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);

  /* Z-index layers */
  --z-below: -1;
  --z-base: 1;
  --z-raised: 10;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-nav: 1000;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
}

/* ============================================================
   RESET & BASE STYLES
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.75;
  color: var(--color-ink);
  background-color: var(--color-linen);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 300;
  letter-spacing: 0.015em;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--color-ink);
  font-weight: 300;
  letter-spacing: 0.01em;
}

h1 {
  font-size: var(--fs-5xl);
}

h2 {
  font-size: var(--fs-4xl);
}

h3 {
  font-size: var(--fs-3xl);
}

h4 {
  font-size: var(--fs-2xl);
}

h5 {
  font-size: var(--fs-xl);
}

h6 {
  font-size: var(--fs-lg);
}

p {
  margin-bottom: var(--space-sm);
  font-weight: 300;
  color: var(--color-ink-light);
}

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

a:hover {
  color: var(--color-tan);
}

/* --- Booking Bar (Hero) --- */
.mbe-booking-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-lg);
  padding: clamp(10px, 1.5vw, 15px) clamp(15px, 2vw, 20px);
  margin-top: clamp(20px, 4vw, 40px);
  gap: clamp(10px, 1.5vw, 15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  padding: 0.4rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.4), inset 0 2px 15px rgba(255, 255, 255, 0.5);
}

.card img,
.more-exp-card-img,
.exp-photo-card-img {
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

ul,
ol {
  list-style: none;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-sm {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Text colors */
.text-mud {
  color: var(--color-tan);
}

.text-forest {
  color: var(--color-ink);
}

.text-crimson {
  color: var(--color-tan);
}

.text-cream {
  color: var(--color-cream);
}

.text-charcoal {
  color: var(--color-ink);
}

.text-warm-gray {
  color: var(--color-ink-muted);
}

/* Background colors */
.bg-cream {
  background-color: var(--color-linen);
}

.bg-bone {
  background-color: var(--color-linen-light);
}

.bg-linen {
  background-color: var(--color-linen);
}

.bg-linen-light {
  background-color: var(--color-linen-light);
}

.bg-forest {
  background-color: var(--color-ink);
}

.bg-ink {
  background-color: var(--color-ink);
}

.bg-mud {
  background-color: var(--color-tan);
}

.bg-tan {
  background-color: var(--color-tan);
}

.bg-dark {
  background-color: var(--color-ink);
}

.bg-khaki {
  background-color: var(--color-khaki);
}

.bg-bone-dark {
  background-color: var(--color-linen-dark);
}

.text-cream {
  color: var(--color-cream);
}

.text-ink {
  color: var(--color-ink);
}

/* Text alignment */
.text-center {
  text-align: center;
}

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

.text-right {
  text-align: right;
}

/* Display */
.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.d-block {
  display: block;
}

.d-none {
  display: none;
}

/* ============================================================
   LUXURY EDITORIAL UTILITIES
   ============================================================ */
.drop-cap::first-letter {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 400;
  color: var(--color-tan);
  float: left;
  line-height: 0.8;
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 5px;
}

.text-serif-italic {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  color: var(--color-tan);
}

.luxury-divider {
  width: 60px;
  height: 2px;
  background: var(--color-tan);
  margin: var(--space-md) auto;
  border: none;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Flex utilities */
.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

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

.flex-wrap {
  flex-wrap: wrap;
}

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

/* Spacing */
.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.py-sm {
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}

.py-md {
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}

.py-lg {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.py-xl {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.py-2xl {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.py-3xl {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

/* ============================================================
   COMPONENTS - BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 1.2vw, 12px) clamp(16px, 2.5vw, 24px);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-base);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  border: none;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.4s ease-out;
  pointer-events: none;
}

.btn:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

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

.btn:active {}

/* Primary: filled tan/gold */
.btn-primary {
  background-color: var(--color-tan);
  color: var(--color-white);
  border-color: var(--color-tan);
  background: linear-gradient(145deg, var(--color-tan-light) 0%, var(--color-tan) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 4px 14px rgba(184, 144, 91, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(145deg, var(--color-tan) 0%, var(--color-tan-dark) 100%);
  color: var(--color-white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 6px 20px rgba(184, 144, 91, 0.4);
  transform: translateY(-2px);
}

/* Secondary: outlined on dark backgrounds */
.btn-secondary {
  background-color: transparent;
  color: var(--color-cream);
  border: 1px solid var(--color-cream);
}

.btn-secondary:hover {
  background-color: var(--color-cream);
  color: var(--color-ink);
}

/* Outline mud (tan outline) */
.btn-outline-mud {
  background-color: transparent;
  color: var(--color-ink);
  border: 1px solid var(--color-ink);
}

.btn-outline-mud:hover {
  background-color: var(--color-ink);
  color: var(--color-cream);
}

/* Forest (dark ink filled) */
.btn-forest {
  background-color: var(--color-ink);
  color: var(--color-cream);
  border-color: var(--color-ink);
}

.btn-forest:hover {
  background-color: var(--color-ink-light);
  border-color: var(--color-ink-light);
  color: var(--color-cream);
}

/* WhatsApp */
.btn-whatsapp {
  background-color: #25D366;
  color: var(--color-white);
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background-color: #1da851;
  border-color: #1da851;
  color: var(--color-white);
}

/* Text link button — "DISCOVER MORE" style */
.btn-text-link {
  background: none;
  border: none;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition-fast), gap var(--transition-fast);
}

.btn-text-link::after {
  content: '→';
  display: inline-block;
  transition: transform var(--transition-fast);
}

.btn-text-link:hover {
  color: var(--color-tan-dark);
  gap: 0.75rem;
}

.btn-text-link:hover::after {
  transform: translateX(4px);
}

.btn-lg {
  padding: 0.9rem 2.4rem;
  font-size: 0.75rem;
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.65rem;
}

/* ============================================================
   SECTION HEADINGS — Minimal Editorial
   ============================================================ */

/* Small uppercase eyebrow label */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-sm);
}

/* Remove the old line decoration */
.section-tag::before {
  display: none;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  color: var(--color-ink);
  margin-bottom: var(--space-md);
  line-height: 1.1;
  font-weight: 300;
}

.section-heading span {
  color: var(--color-tan);
  font-style: italic;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--color-ink-muted);
  max-width: 650px;
  line-height: 1.9;
  font-weight: 300;
}

/* Section divider — thin, minimal */
.section-divider {
  width: 3rem;
  height: 1px;
  background: var(--color-sand);
  margin: var(--space-md) 0;
}

/* ============================================================
   CARDS — Flat, Minimal, No Shadow
   ============================================================ */

.card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.4), inset 0 2px 15px rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.9);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), opacity var(--transition-base), border-color var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.7), inset 0 2px 15px rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 1);
  opacity: 1;
}

.card-img {
  width: 100%;
  height: 280px;
  object-fit: fill;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.card:hover .card-img {
  transform: scale(1.04);
}

.card-body {
  padding: var(--space-lg) var(--space-md);
}

/* ============================================================
   PAGE HERO
   ============================================================ */

.page-hero {
  position: relative;
  height: 90vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: clamp(80px, 8vw, 100px);
  /* Account for navbar height */
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.4);
}

/* Fix for mobile background-attachment zoom/cropping issue */
@media (max-width: 1024px) {
  .page-hero-bg {
    background-attachment: scroll;
  }
}



/* --- Hero Elements --- */
.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(28, 27, 26, 0.6) 0%, rgba(28, 27, 26, 0.2) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 60px 20px;
  /* Increased top and bottom padding */
  max-width: 900px;
}

.page-hero-tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.7);
  margin-bottom: var(--space-sm);
  font-weight: 400;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: var(--fs-5xl);
  color: var(--color-cream);
  margin-bottom: var(--space-md);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.page-hero-subtitle {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: rgba(250, 247, 242, 0.75);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.9;
}

/* ============================================================
   FORMS — Clean, Minimal
   ============================================================ */

/* Modal Overrides */
.modal-content {
  border: 2px solid var(--color-tan) !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow: var(--shadow-lg) !important;
}

.modal-header {
  background-color: var(--color-ink) !important;
  border-bottom: none !important;
  padding: var(--space-md) var(--space-lg) !important;
}

.modal-header .modal-title {
  color: var(--color-cream) !important;
  font-family: var(--font-heading);
}

.modal-header .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-body {
  padding: var(--space-lg);
}

.form-control,
.form-select {
  display: block;
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 300;
  color: var(--color-ink);
  background-color: var(--color-white);
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-full);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

textarea.form-control {
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  resize: none;
  overflow-y: auto;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-tan);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-control::file-selector-button {
  transition: none !important;
  background-color: #ffffff !important;
  color: var(--color-ink) !important;
  border-right: 1px solid var(--color-sand) !important;
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #ffffff !important;
  color: var(--color-ink) !important;
}

.form-control::file-selector-button:hover {
  background-color: #ffffff !important;
  color: var(--color-ink) !important;
}

.form-label {
  font-family: var(--font-body);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
}

.form-group {
  margin-bottom: var(--space-md);
}

/* ============================================================
   MESSAGES / ALERTS
   ============================================================ */

.alert-messages {
  position: fixed;
  top: 90px;
  right: var(--space-lg);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 420px;
}

.alert {
  padding: 1rem 1.5rem;
  border-radius: 0;
  font-size: var(--fs-sm);
  font-weight: 400;
  line-height: 1.5;
  box-shadow: var(--shadow-lg);
  animation: slideInRight 0.4s ease;
}

.alert-success {
  background: var(--color-ink);
  color: var(--color-cream);
  border-left: 3px solid var(--color-tan);
}

.alert-error,
.alert-danger {
  background: var(--color-ink);
  color: var(--color-cream);
  border-left: 3px solid #c0392b;
}

/* ============================================================
   BADGE
   ============================================================ */

.badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
}

.badge-mud {
  background: var(--color-tan);
  color: var(--color-white);
}

.badge-forest {
  background: var(--color-ink);
  color: var(--color-cream);
}

.badge-crimson {
  background: var(--color-tan);
  color: var(--color-white);
}

.badge-bone {
  background: var(--color-sand);
  color: var(--color-ink);
}

.badge-green {
  background: #27AE60;
  color: var(--color-white);
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.6);
  margin-bottom: var(--space-md);
  font-weight: 400;
}

.breadcrumb a {
  color: rgba(250, 247, 242, 0.6);
}

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

.breadcrumb span {
  color: var(--color-cream);
  font-weight: 500;
}

/* ============================================================
   DIVIDER & DECORATIVE
   ============================================================ */

.ornament {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  justify-content: center;
  margin: var(--space-lg) 0;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-sand);
  max-width: 80px;
}

.ornament-icon {
  font-size: 1rem;
  color: var(--color-tan);
}

/* ============================================================
   RATING STARS
   ============================================================ */

.stars {
  color: var(--color-tan);
  font-size: var(--fs-sm);
  letter-spacing: 2px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes slideInRight {
  from {
    transform: translateX(120%);
    opacity: 0;
  }

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

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease both;
}

.animate-fade-in {
  animation: fadeIn 0.7s ease both;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay helpers */
.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.6s;
}

.delay-5 {
  animation-delay: 0.75s;
}

/* ============================================================
   FLUID RESPONSIVENESS (Typography & Layout)
   ============================================================ */

/* Fluid Root Font Size (Scales smoothly from 12px to 18px) */
html {
  font-size: clamp(12px, 0.8vw + 10px, 18px);
}

/* Fluid Max Widths & Container Padding */
.container-fluid {
  max-width: 2400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem) !important;
}

.container {
  padding: 0 clamp(1rem, 4vw, 3rem);
}

/* Fluid Typography for Headings */
h1 {
  font-size: clamp(2rem, 4vw + 1rem, var(--fs-5xl));
}

h2 {
  font-size: clamp(1.8rem, 3vw + 1rem, var(--fs-4xl));
}

h3 {
  font-size: clamp(1.5rem, 2vw + 1rem, var(--fs-3xl));
}

.section-heading {
  font-size: clamp(1.8rem, 3vw + 1rem, var(--fs-4xl));
}

.page-hero-title {
  font-size: clamp(2.5rem, 5vw + 1rem, var(--fs-5xl));
}

.mbe-hero-content h1 {
  font-size: clamp(2.2rem, 5vw + 1rem, var(--fs-5xl));
}

.mbe-hero-content p {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
}

/* Fluid Hero Heights */
.page-hero {
  min-height: clamp(220px, 45vh, 400px);
}

/* Fluid Spacing Classes */
.py-3xl {
  padding-top: clamp(3rem, 8vw, var(--space-3xl));
  padding-bottom: clamp(3rem, 8vw, var(--space-3xl));
}

.py-2xl {
  padding-top: clamp(2rem, 6vw, var(--space-2xl));
  padding-bottom: clamp(2rem, 6vw, var(--space-2xl));
}

/* Fluid Buttons */
.btn {
  padding: clamp(0.65rem, 1vw + 0.4rem, 0.8rem) clamp(1.4rem, 2vw + 1rem, 2rem);
}

.btn-lg {
  padding: clamp(0.8rem, 1vw + 0.5rem, 1rem) clamp(1.8rem, 3vw + 1rem, 2.5rem);
}

/* For extremely small screens, buttons expand */
@media (max-width: 320px) {
  .btn {
    width: 100%;
    display: block;
    margin-bottom: 0.5rem;
  }
}

/* ============================================================
   BOOTSTRAP OVERRIDES — Accordion
   ============================================================ */

/* Remove Bootstrap's default arrow icon */
.accordion-button::after {
  background-image: none !important;
  content: '+';
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--color-ink-muted);
  width: auto;
  height: auto;
  transform: none !important;
  flex-shrink: 0;
  margin-left: auto;
  transition: color var(--transition-fast);
}

.accordion-button:not(.collapsed)::after {
  content: '−';
  color: var(--color-tan);
  transform: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
  border-color: var(--color-sand) !important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--color-linen-light) !important;
  box-shadow: none !important;
  color: var(--color-ink) !important;
}

/* ============================================================
   SECTION BG HELPER — bg-ink inherits cream text
   ============================================================ */

.bg-ink,
.bg-forest {
  color: var(--color-cream);
}

/* ============================================================
   TESTIMONIAL CARD — Shared page styles (reviews.html etc.)
   ============================================================ */

.testimonial-card {
  background: var(--color-linen-light);
  border-radius: 0;
  padding: var(--space-xl);
  position: relative;
  border: 1px solid var(--color-sand);
  transition: opacity var(--transition-base);
}

.testimonial-card:hover {
  opacity: 0.9;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--color-linen-dark);
  line-height: 1;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-style: italic;
  color: var(--color-ink);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
  font-weight: 300;
  text-align: justify;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-author-avatar {
  width: 40px;
  height: 40px;
  background: var(--color-tan);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: 400;
  flex-shrink: 0;
}

.testimonial-author-name {
  font-weight: 500;
  color: var(--color-ink);
  font-size: var(--fs-sm);
  display: block;
}

.testimonial-author-meta {
  font-size: var(--fs-xs);
  color: var(--color-ink-muted);
  font-weight: 300;
}

/* ============================================================
   TESTIMONIALS SLIDER
   ============================================================ */
.testimonials-section {
  background: var(--color-linen);
  border-top: 1px solid var(--color-sand);
}

.testimonial-img {
  width: 90px;
  height: 90px;
  object-fit: fill;
  margin: 0 auto;
  border: 2px solid var(--color-tan);
  padding: 3px;
}

.testimonials-section .testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  border: none;
  background: transparent;
  padding: var(--space-md) var(--space-lg);
}

.testimonials-section .testimonial-card::before {
  display: none;
}

.testimonials-section .testimonial-text {
  font-size: var(--fs-lg);
}

/* ============================================================
   INTL TEL INPUT CUSTOMIZATIONS
   ============================================================ */
.iti {
  width: 100%;
  display: block;
}

.iti__selected-flag {
  background-color: transparent !important;
  border-right: 1px solid var(--color-sand);
}

.iti__selected-flag:hover {
  background-color: transparent !important;
}

.iti__country-list {
  max-width: 260px;
  /* Limit the width so it stays within the modal */
  overflow-x: hidden;
}

.iti__country-name {
  max-width: 140px;
  /* Truncate long country names */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
}

/* ============================================================
   FORM PLACEHOLDERS
   ============================================================ */
::-webkit-input-placeholder {
  color: var(--color-ink-muted) !important;
  opacity: 0.45 !important;
}

:-ms-input-placeholder {
  color: var(--color-ink-muted) !important;
  opacity: 0.45 !important;
}

::-moz-placeholder {
  color: var(--color-ink-muted) !important;
  opacity: 0.45 !important;
}

::placeholder {
  color: var(--color-ink-muted) !important;
  opacity: 0.45 !important;
}

/* ============================================================
   RESPONSIVE UTILITY GRIDS
   ============================================================ */

.grid-responsive-2,
.grid-responsive-3,
.grid-responsive-2-1,
.grid-responsive-auto {
  display: grid;
  gap: var(--space-xl);
}

/* Base Mobile: 1 Column */
.grid-responsive-2,
.grid-responsive-3,
.grid-responsive-2-1 {
  grid-template-columns: 1fr;
}

/* Tablet (768px) and Up */
@media (min-width: 768px) {
  .grid-responsive-2 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-responsive-2-1 {
    grid-template-columns: 2fr 1fr;
  }
}

/* Laptop (1024px) and Up */
@media (min-width: 1024px) {
  .grid-responsive-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-responsive-2-1 {
    grid-template-columns: 1.5fr 1fr;
  }
}

/* Auto-fit for flexible galleries */
.grid-responsive-auto {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ============================================================
   GLOBAL CONTACT & BOOKING CONTROLS
   ============================================================ */

/* Mobile Bottom Menu */
.mobile-bottom-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-khaki-dark);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: var(--z-sticky);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  padding-bottom: env(safe-area-inset-bottom, 0.5rem);
}

.mobile-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-cream);
  font-size: 0.65rem;
  text-decoration: none;
  font-weight: 500;
  gap: 0.25rem;
}

.mobile-menu-item i {
  font-size: 1.1rem;
}

.mobile-menu-item.book-now-btn {
  color: var(--color-tan);
}

.mobile-menu-item:hover,
.mobile-menu-item.book-now-btn:hover {
  color: var(--color-white);
}

/* Removed body bottom padding to place it on footer instead */

/* ============================================================
   AESTHETIC ENHANCEMENTS
   ============================================================ */
.hover-lift {
  transition: transform var(--transition-base), box-shadow var(--transition-base) !important;
}

gap: var(--space-sm);
}

.testimonial-author-avatar {
  width: 40px;


  /* ============================================================
   MOBILE RESPONSIVE SPACING OVERRIDES
   ============================================================ */
  @media (max-width: 767.98px) {

    /* Scale down large Bootstrap margins */
    .mt-5,
    .my-5,
    .m-5 {
      margin-top: 2rem !important;
    }

    .mb-5,
    .my-5,
    .m-5 {
      margin-bottom: 2rem !important;
    }

    .ms-5,
    .mx-5,
    .m-5 {
      margin-left: 1rem !important;
    }

    .me-5,
    .mx-5,
    .m-5 {
      margin-right: 1rem !important;
    }

    .mt-4,
    .my-4,
    .m-4 {
      margin-top: 1.5rem !important;
    }

    .mb-4,
    .my-4,
    .m-4 {
      margin-bottom: 1.5rem !important;
    }

    /* Scale down large Bootstrap paddings */
    .pt-5,
    .py-5,
    .p-5 {
      padding-top: 2rem !important;
    }

    .pb-5,
    .py-5,
    .p-5 {
      padding-bottom: 2rem !important;
    }

    .ps-5,
    .px-5,
    .p-5 {
      padding-left: 1rem !important;
    }

    .pe-5,
    .px-5,
    .p-5 {
      padding-right: 1rem !important;
    }

    .pt-4,
    .py-4,
    .p-4 {
      padding-top: 1.5rem !important;
    }

    .pb-4,
    .py-4,
    .p-4 {
      padding-bottom: 1.5rem !important;
    }

    /* Scale down Bootstrap grid gaps */
    .g-5,
    .gy-5 {
      --bs-gutter-y: 2rem !important;
    }

    .g-5,
    .gx-5 {
      --bs-gutter-x: 1.5rem !important;
    }

    .g-4,
    .gy-4 {
      --bs-gutter-y: 1.5rem !important;
    }

    .g-4,
    .gx-4 {
      --bs-gutter-x: 1rem !important;
    }

    /* Scale down custom large padding utilities */
    .py-xl {
      padding-top: 2.5rem !important;
      padding-bottom: 2.5rem !important;
    }

    .py-2xl {
      padding-top: 3rem !important;
      padding-bottom: 3rem !important;
    }

    .py-3xl {
      padding-top: 3.5rem !important;
      padding-bottom: 3.5rem !important;
    }
  }