/* Silver Fox Glamping - Vibrant Modern Theme */
/* High-energy sunset palette: coral, saffron, fuchsia, deep plum */

:root {
  --cream: #F5F5DC;
  --saffron: #FBC02D;
  --coral: #FF8F00;
  --coral-light: #FFE0B2;
  --fuchsia: #C62828;
  --plum: #C62828;
  --plum-dark: #8E1C1C;
  --teal: #FBC02D;
  --teal-light: #FFF8E1;
  --amber: #FBC02D;
  --charcoal: #3E2723;
  --warm-gray: #6D4C41;
  --light-gray: #F5F5DC;
  --text-muted: #8D6E63;
  --shadow-color: rgba(198, 40, 40, 0.15);
  --ease-fluid: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand-text, .hero-title, .section-title, .footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

/* Noise overlay for physical texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 9998;
}

/* Floating Glass Navbar */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 14px 0;
  background: transparent;
  transition: all 0.5s var(--ease-fluid);
  border-bottom: none;
}
#mainNav.scrolled {
  background: rgba(245, 245, 220, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 143, 0, 0.08), 0 12px 40px rgba(62, 39, 35, 0.06);
  padding: 10px 0;
}
#mainNav.scrolled .navbar-brand .brand-text,
#mainNav.scrolled .nav-link { color: var(--charcoal) !important; }
#mainNav.scrolled .nav-link:hover { color: var(--coral) !important; }
#mainNav .navbar-brand { text-decoration: none; gap: 10px; }
.brand-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 6px rgba(255, 143, 0, 0.25));
  transition: transform 0.4s var(--ease-bounce);
}
#mainNav .navbar-brand:hover .brand-icon { transform: rotate(-12deg) scale(1.1); }
.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: white;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-top: 2px;
}
#mainNav.scrolled .brand-sub { color: var(--coral); }
#mainNav .nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 0.6rem 1rem;
  position: relative;
  transition: color 0.3s var(--ease-fluid);
}
#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-fluid);
  border-radius: 2px;
}
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after { transform: scaleX(1); }
#mainNav .nav-link:hover { color: white !important; }
#mainNav.scrolled .nav-link:hover { color: var(--coral) !important; }
.admin-link { color: var(--amber) !important; }
.user-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--fuchsia));
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 12px var(--shadow-color);
}

/* Animated hamburger */
.navbar-toggler {
  border: none;
  padding: 8px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  position: relative;
  transition: background 0.3s;
}
#mainNav.scrolled .navbar-toggler { background: rgba(255, 143, 0, 0.08); }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: none !important;
  width: 20px;
  height: 14px;
  position: relative;
  display: inline-block;
  transition: all 0.3s var(--ease-fluid);
}
.navbar-toggler-icon span,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.35s var(--ease-fluid);
}
.navbar-toggler-icon::before { top: 0; }
.navbar-toggler-icon span { top: 6px; }
.navbar-toggler-icon::after { top: 12px; }
#mainNav.scrolled .navbar-toggler-icon::before,
#mainNav.scrolled .navbar-toggler-icon span,
#mainNav.scrolled .navbar-toggler-icon::after { background: var(--charcoal); }
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 6px;
  transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span { opacity: 0; transform: translateX(-10px); }
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  top: 6px;
  transform: rotate(-45deg);
}

/* Mobile nav menu overlay */
#mainNavbar {
  background: transparent;
}
@media (max-width: 991px) {
  #mainNavbar {
    position: fixed;
    inset: 0;
    top: 0;
    background: rgba(245, 245, 220, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 6rem 2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.4s var(--ease-fluid);
  }
  #mainNavbar.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  #mainNavbar .navbar-nav {
    text-align: center;
    gap: 1.2rem !important;
  }
  #mainNavbar .nav-link {
    color: var(--charcoal) !important;
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-fluid);
  }
  #mainNavbar.show .nav-link { opacity: 1; transform: translateY(0); }
  #mainNavbar.show .nav-link:nth-child(1) { transition-delay: 0.08s; }
  #mainNavbar.show .nav-link:nth-child(2) { transition-delay: 0.14s; }
  #mainNavbar.show .nav-link:nth-child(3) { transition-delay: 0.20s; }
  #mainNavbar.show .nav-link:nth-child(4) { transition-delay: 0.26s; }
  #mainNavbar.show .nav-link:nth-child(5) { transition-delay: 0.32s; }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(62,39,35,0.7) 0%, rgba(198,40,40,0.6) 100%), url('/images/img_13.jpg') center/cover no-repeat;
  overflow: hidden;
  color: white;
  padding: 8rem 1rem 5rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(251, 192, 45, 0.35) 0%, transparent 45%),
              radial-gradient(circle at 80% 70%, rgba(198, 40, 40, 0.3) 0%, transparent 50%);
  animation: heroBlob 12s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25%;
  background: linear-gradient(to top, var(--cream) 0%, transparent 100%);
}
@keyframes heroBlob {
  0% { transform: scale(1) translate(0,0); opacity: 0.8; }
  100% { transform: scale(1.15) translate(30px, -20px); opacity: 1; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 2rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s var(--ease-fluid) both;
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.9s 0.15s var(--ease-fluid) both;
}
.hero-title em {
  font-style: italic;
  color: #FBC02D;
  background: linear-gradient(90deg, #FBC02D, #FBC02D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s 0.3s var(--ease-fluid) both;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.1s 0.45s var(--ease-fluid) both;
}
.hero-rating {
  margin-top: 2rem;
  animation: fadeInUp 1.2s 0.6s var(--ease-fluid) both;
}
.hero-rating .badge {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  padding: 0.5rem 1rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
  font-weight: 600;
  border-radius: 50px;
  padding: 0.85rem 1.75rem;
  transition: all 0.35s var(--ease-fluid);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn:hover::before { transform: translateX(100%); }
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--fuchsia));
  color: white;
  box-shadow: 0 8px 24px rgba(255, 143, 0, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 143, 0, 0.45);
  color: white;
}
.btn-light {
  background: white;
  color: var(--charcoal);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.btn-light:hover {
  background: var(--cream);
  transform: translateY(-2px);
  color: var(--coral);
}
.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: white;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  color: white;
  transform: translateY(-2px);
}
.btn-outline-dark {
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--charcoal);
  color: white;
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.btn-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.2);
  transition: transform 0.35s var(--ease-bounce);
}
.btn:hover .btn-icon { transform: translate(2px, -2px) scale(1.05); }

/* Section styling */
.section { padding: 6rem 0; position: relative; }
.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section-cream { background: var(--light-gray); }

/* Eyebrow tag */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--coral-light), #FFF8E1);
  color: var(--coral);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse-dot 2s infinite;
}

/* Tent Cards - Double bezel style */
.tent-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(62, 39, 35, 0.06);
  transition: all 0.45s var(--ease-fluid);
  height: 100%;
  border: 1px solid rgba(255, 143, 0, 0.06);
  position: relative;
}
.tent-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 143, 0, 0.15), transparent 40%, rgba(251, 192, 45, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.tent-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(255, 143, 0, 0.14);
}
.tent-card-img {
  height: 240px;
  background: linear-gradient(180deg, rgba(245,245,220,0) 0%, rgba(245,245,220,0.95) 100%), linear-gradient(135deg, var(--coral-light), var(--light-gray));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.tent-card-img .tent-card-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(245,245,220,0.92);
  box-shadow: 0 4px 16px rgba(62,39,35,0.12);
  z-index: 2;
}
.tent-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(198, 40, 40, 0.08) 100%);
}
.tent-card-body { padding: 1.75rem; }
.tent-card-body h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.tent-card-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--coral);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.tent-card-price small { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.tent-card .badge {
  background: var(--light-gray);
  color: var(--charcoal);
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 50px;
}
.tent-card .btn-primary { width: 100%; margin-top: 1.25rem; }

/* Event Cards */
.event-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(62, 39, 35, 0.06);
  transition: all 0.45s var(--ease-fluid);
  height: 100%;
  border: 1px solid rgba(251, 192, 45, 0.1);
}
.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(251, 192, 45, 0.18);
}
.event-card-banner {
  height: 200px;
  background: linear-gradient(135deg, var(--plum), var(--coral));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.event-card-banner .event-card-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(245,245,220,0.92);
  box-shadow: 0 4px 16px rgba(62,39,35,0.12);
  z-index: 2;
}
.event-card-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 60%);
}
.event-date-badge {
  background: linear-gradient(135deg, var(--coral), var(--fuchsia));
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  display: inline-block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(198, 40, 40, 0.2);
}
.event-card h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

/* Service pills */
.service-pill {
  background: white;
  border-radius: 28px;
  padding: 2rem 1.25rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(62, 39, 35, 0.04);
  border: 1px solid rgba(255, 143, 0, 0.05);
  transition: all 0.4s var(--ease-fluid);
  height: 100%;
}
.service-pill:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 143, 0, 0.1);
  border-color: rgba(255, 143, 0, 0.12);
}
.service-pill .service-icon {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--coral-light), #FFF8E1);
  transition: transform 0.4s var(--ease-bounce);
}
.service-pill:hover .service-icon { transform: scale(1.1) rotate(-4deg); }
.service-pill h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

/* Steps */
.step-card {
  background: white;
  border-radius: 28px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(62, 39, 35, 0.04);
  border: 1px solid rgba(255, 143, 0, 0.08);
  height: 100%;
  transition: all 0.4s var(--ease-fluid);
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(255, 143, 0, 0.1); }
.step-card .step-icon { font-size: 2.8rem; margin-bottom: 1rem; }
.step-card .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--saffron));
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.step-card h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 50%, var(--coral) 100%);
  color: white;
  overflow: hidden;
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(251, 192, 45, 0.35) 0%, transparent 45%),
              radial-gradient(circle at 20% 80%, rgba(198, 40, 40, 0.3) 0%, transparent 50%);
}
.cta-section .section-title { color: white; }
.cta-section p { color: rgba(255,255,255,0.9); }

/* Calendar */
.calendar-container {
  background: white;
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(62, 39, 35, 0.06);
  border: 1px solid rgba(255, 143, 0, 0.06);
}
.fc-theme-standard td, .fc-theme-standard th { border-color: #F5F5DC; }
.fc-toolbar-title { font-family: 'Playfair Display', serif !important; font-size: 1.5rem !important; color: var(--charcoal); }
.fc-button {
  background: linear-gradient(135deg, var(--coral), var(--fuchsia)) !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 6px 18px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(255, 143, 0, 0.25) !important;
}
.fc-button:hover { background: linear-gradient(135deg, var(--plum), var(--coral)) !important; }
.fc-event {
  border-radius: 8px !important;
  border: none !important;
  padding: 4px 10px !important;
  font-size: 0.8rem !important;
  cursor: pointer;
  background: linear-gradient(135deg, var(--teal), var(--saffron)) !important;
}

/* Chat */
.chat-container {
  background: white;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(62, 39, 35, 0.06);
  display: flex;
  flex-direction: column;
  height: 70vh;
  min-height: 500px;
  border: 1px solid rgba(255, 143, 0, 0.06);
  overflow: hidden;
}
.chat-header {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid #F5F5DC;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--cream);
}
.chat-bubble {
  max-width: 75%;
  padding: 14px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  line-height: 1.5;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.chat-bubble-user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--coral), var(--fuchsia));
  color: white;
  border-bottom-right-radius: 4px;
}
.chat-bubble-owner {
  align-self: flex-start;
  background: white;
  border: 1px solid #F5F5DC;
  border-bottom-left-radius: 4px;
}
.chat-bubble-time {
  font-size: 0.7rem;
  opacity: 0.7;
  margin-top: 6px;
}
.chat-input-area {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid #F5F5DC;
  display: flex;
  gap: 0.75rem;
  background: white;
}
.chat-input-area textarea {
  flex: 1;
  border-radius: 18px;
  border: 1px solid #F5F5DC;
  padding: 12px 18px;
  resize: none;
  font-size: 0.9rem;
  font-family: inherit;
}
.chat-input-area textarea:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255, 143, 0, 0.1); }
.chat-input-area .btn-primary { padding: 0.75rem 1.5rem; }

/* Status timeline */
.status-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 1.5rem 0;
}
.status-timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg, #F5F5DC, #F5F5DC);
  z-index: 0;
  border-radius: 3px;
}
.status-step {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
}
.status-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin: 0 auto 6px;
  background: #F5F5DC;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.status-step.active .status-dot { background: var(--coral); }
.status-step.done .status-dot { background: var(--teal); }
.status-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.status-step.active .status-label { color: var(--coral); font-weight: 700; }
.status-step.done .status-label { color: var(--teal); }

/* Dashboard cards */
.dashboard-card {
  background: white;
  border-radius: 28px;
  padding: 1.75rem;
  box-shadow: 0 8px 24px rgba(62, 39, 35, 0.04);
  transition: all 0.4s var(--ease-fluid);
  border: 1px solid rgba(255, 143, 0, 0.05);
}
.dashboard-card:hover { box-shadow: 0 16px 40px rgba(255, 143, 0, 0.1); transform: translateY(-4px); }

/* Admin panel */
.admin-sidebar {
  background: linear-gradient(180deg, var(--plum-dark), var(--plum));
  min-height: 100vh;
  padding-top: 5rem;
}
.admin-sidebar .nav-link {
  color: rgba(255,255,255,0.75);
  padding: 0.85rem 1.5rem;
  border-left: 3px solid transparent;
  transition: all 0.25s;
  font-weight: 500;
}
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
  color: white;
  background: rgba(255,255,255,0.1);
  border-left-color: var(--amber);
}
.admin-stat {
  background: white;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(62, 39, 35, 0.04);
  border: 1px solid rgba(255, 143, 0, 0.05);
}
.admin-stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: linear-gradient(135deg, var(--coral), var(--fuchsia));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.admin-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* Referral box */
.referral-box {
  background: linear-gradient(135deg, var(--plum-dark), var(--plum));
  color: white;
  border-radius: 28px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.referral-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(251, 192, 45, 0.2) 0%, transparent 40%);
}
.referral-code {
  background: rgba(255,255,255,0.12);
  border: 2px dashed rgba(255,255,255,0.35);
  border-radius: 16px;
  padding: 14px 28px;
  font-size: 1.5rem;
  font-family: 'SF Mono', monospace;
  letter-spacing: 0.12em;
  display: inline-block;
  margin: 1rem 0;
  cursor: pointer;
  transition: all 0.3s var(--ease-fluid);
  position: relative;
  z-index: 1;
}
.referral-code:hover { background: rgba(255,255,255,0.2); transform: scale(1.02); }

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--charcoal), #3E2723);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--fuchsia), var(--amber), var(--teal));
}
.footer-brand {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.site-footer h6 {
  color: white;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.site-footer a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.site-footer a:hover { color: var(--amber); }
.site-footer .btn-outline-light {
  border-color: rgba(255,255,255,0.25);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}
.site-footer .btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: white; }
.site-footer .badge {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}

/* Auth forms */
.auth-card {
  background: white;
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 12px 40px rgba(62, 39, 35, 0.08);
  max-width: 440px;
  margin: 0 auto;
  border: 1px solid rgba(255, 143, 0, 0.06);
}
.auth-card .form-control {
  border-radius: 16px;
  padding: 14px 18px;
  border: 1px solid #F5F5DC;
  font-size: 0.95rem;
}
.auth-card .form-control:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 143, 0, 0.1);
}
.auth-card .btn-primary { width: 100%; }

/* Green dot (booked indicator) */
.green-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FBC02D;
  box-shadow: 0 0 8px rgba(251, 192, 45, 0.5);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 4px rgba(251, 192, 45, 0.4); }
  50% { box-shadow: 0 0 16px rgba(251, 192, 45, 0.8); }
}

/* PWA install prompt */
.install-prompt {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--charcoal);
  color: white;
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform 0.5s var(--ease-bounce);
}
.install-prompt.show { transform: translateX(-50%) translateY(0); }

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-fluid), transform 0.8s var(--ease-fluid);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 768px) {
  .hero { min-height: 90dvh; padding-top: 6rem; }
  .hero-title { font-size: 2.5rem; }
  .section { padding: 4rem 0; }
  .chat-bubble { max-width: 90%; }
  .admin-sidebar { min-height: auto; padding-top: 1rem; }
}

/* Utility */
.cursor-pointer { cursor: pointer; }
.text-warm { color: var(--coral) !important; }
.text-cream { color: var(--cream) !important; }
.bg-warm { background: linear-gradient(135deg, var(--coral), var(--fuchsia)) !important; }
.bg-charcoal { background: var(--charcoal) !important; }
.bg-cream { background: var(--cream) !important; }
.rounded-xl { border-radius: 28px; }
.text-gradient {
  background: linear-gradient(135deg, var(--coral), var(--fuchsia));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gallery Mosaic */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 0.75rem;
}
.gallery-mosaic-item {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(62,39,35,0.08);
  border: 1px solid rgba(251,192,45,0.12);
  transition: transform 0.4s var(--ease-bounce), box-shadow 0.4s var(--ease-fluid);
}
.gallery-mosaic-item:hover { transform: scale(1.02); box-shadow: 0 16px 40px rgba(198,40,40,0.14); }
.gallery-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-fluid);
}
.gallery-mosaic-item:hover img { transform: scale(1.08); }
.gallery-mosaic-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-mosaic-item:nth-child(4) { grid-column: span 2; }
.gallery-mosaic-item:nth-child(7) { grid-row: span 2; }
.gallery-mosaic-more .gallery-mosaic-more-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(62,39,35,0.65);
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  backdrop-filter: blur(2px);
  transition: background 0.3s;
}
.gallery-mosaic-more:hover .gallery-mosaic-more-overlay { background: rgba(198,40,40,0.75); }
@media (max-width: 767px) {
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .gallery-mosaic-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-mosaic-item:nth-child(4) { grid-column: span 1; }
  .gallery-mosaic-item:nth-child(7) { grid-row: span 1; }
}

/* Brand Logo */
.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
  transition: transform 0.4s var(--ease-bounce);
  flex-shrink: 0;
}
#mainNav .navbar-brand:hover .brand-logo { transform: rotate(-8deg) scale(1.08); }
@media (max-width: 991px) {
  #mainNav.scrolled .brand-logo { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15)); }
}

/* Page nav (non-home pages) */
.page-nav,
body.page-light #mainNav,
body.page-light #mainNav.scrolled {
  background: rgba(245, 245, 220, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 143, 0, 0.08), 0 12px 40px rgba(62, 39, 35, 0.06);
}
.page-nav .navbar-brand .brand-text,
body.page-light #mainNav .navbar-brand .brand-text,
.page-nav .nav-link,
body.page-light #mainNav .nav-link,
body.page-light #mainNav .nav-link:hover {
  color: var(--charcoal) !important;
}
.page-nav .brand-sub,
body.page-light #mainNav .brand-sub { color: var(--coral); }
.page-nav .nav-link::after,
body.page-light #mainNav .nav-link::after { background: var(--coral); }
.page-nav .navbar-toggler,
body.page-light #mainNav .navbar-toggler { background: rgba(255, 143, 0, 0.08); }
.page-nav .navbar-toggler-icon::before,
.page-nav .navbar-toggler-icon span,
.page-nav .navbar-toggler-icon::after,
body.page-light #mainNav .navbar-toggler-icon::before,
body.page-light #mainNav .navbar-toggler-icon span,
body.page-light #mainNav .navbar-toggler-icon::after { background: var(--charcoal); }
@media (max-width: 991px) {
  body.page-light #mainNavbar,
  body.page-light #mainNavbar.show { background: rgba(245, 245, 220, 0.98); }
  body.page-light #mainNavbar .nav-link,
  body.page-light #mainNavbar.show .nav-link { color: var(--charcoal) !important; }
}

body.page-light #mainNav .nav-link.active,
.page-nav .nav-link.active { color: var(--charcoal) !important; }
body.page-light #mainNav .nav-link.active::after,
.page-nav .nav-link.active::after { transform: scaleX(1); }
