/* =============================================
   اکو کمپ گردشگری mjgholami
   رنگ‌های طبیعت: آسمان، جنگل، دریا
   ============================================= */

/* ---------- Variables ---------- */
:root {
  /* Forest Green */
  --forest-dark:   #1a3a1e;
  --forest:        #2d5a27;
  --forest-mid:    #3d7a35;
  --forest-light:  #5aab4e;
  --forest-pale:   #c8e6c3;
  /* Sky Blue */
  --sky-dark:      #1b4f72;
  --sky:           #2980b9;
  --sky-mid:       #3498db;
  --sky-light:     #7fb3d3;
  --sky-pale:      #d6eaf8;
  /* Sea / Ocean */
  --sea-dark:      #0d4b5e;
  --sea:           #006994;
  --sea-mid:       #0099cc;
  --sea-light:     #5dade2;
  /* Earth Tones */
  --earth-dark:    #6e4a1f;
  --earth:         #a0704c;
  --earth-light:   #d4a574;
  --earth-pale:    #fdf3e7;
  /* Neutrals */
  --white:         #ffffff;
  --gray-50:       #f8fafb;
  --gray-100:      #f1f5f0;
  --gray-200:      #e2e8df;
  --gray-300:      #c9d5c6;
  --gray-400:      #9eae9a;
  --gray-500:      #6b7c68;
  --gray-600:      #4a5a47;
  --gray-700:      #2f3e2d;
  --gray-800:      #1c2a1a;
  --gray-900:      #0f1a0e;
  /* Accents */
  --accent-orange: #e67e22;
  --accent-red:    #e74c3c;
  --accent-yellow: #f39c12;
  /* Typography */
  --font-fa:      'Vazirmatn', 'IRANSans', 'Tahoma', sans-serif;
  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
  --shadow:       0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.16);
  --shadow-xl:    0 16px 48px rgba(0,0,0,.20);
  /* Radius */
  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --radius-full:  9999px;
  /* Transitions */
  --transition:   0.25s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-fa);
  direction: rtl;
  background: var(--gray-50);
  color: var(--gray-700);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 { line-height: 1.3; font-weight: 700; color: var(--gray-800); }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { margin-bottom: .75rem; }
p:last-child { margin-bottom: 0; }

/* ---------- Container ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-sm { max-width: 900px; }
.container-xs { max-width: 600px; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 58, 30, .92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  transition: background var(--transition);
}
.navbar.scrolled { background: var(--forest-dark); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1rem;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
}
.navbar-brand .logo-icon {
  width: 44px; height: 44px;
  background: var(--forest-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.navbar-nav a {
  color: rgba(255,255,255,.85);
  padding: .5rem .85rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.navbar-nav a:hover,
.navbar-nav a.active {
  background: rgba(255,255,255,.15);
  color: var(--white);
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  padding: .4rem;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--sea-dark) 50%, var(--sky-dark) 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: .35;
  mix-blend-mode: luminosity;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(15,26,14,.7) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  padding: .4rem 1rem;
  border-radius: var(--radius-full);
  font-size: .85rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-stats {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 2;
}
.hero-stats-inner {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
  color: var(--white);
}
.hero-stat .number {
  font-size: 2rem;
  font-weight: 800;
  display: block;
}
.hero-stat .label {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}

/* ---------- Search Bar ---------- */
.search-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  gap: .75rem;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: -2rem;
  position: relative;
  z-index: 10;
}
.search-bar .search-group {
  flex: 1;
  min-width: 160px;
}
.search-bar label {
  display: block;
  font-size: .8rem;
  color: var(--gray-500);
  margin-bottom: .4rem;
  font-weight: 600;
}
.search-bar select,
.search-bar input {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .92rem;
  background: var(--gray-50);
  color: var(--gray-700);
  transition: border-color var(--transition);
  outline: none;
}
.search-bar select:focus,
.search-bar input:focus {
  border-color: var(--forest-mid);
  background: var(--white);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1.5rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1.4;
  cursor: pointer;
}
.btn:disabled { opacity: .6; cursor: not-allowed; }
.btn-primary {
  background: var(--forest-mid);
  color: var(--white);
  border-color: var(--forest-mid);
}
.btn-primary:hover {
  background: var(--forest);
  border-color: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61,122,53,.35);
}
.btn-secondary {
  background: var(--sky-mid);
  color: var(--white);
  border-color: var(--sky-mid);
}
.btn-secondary:hover {
  background: var(--sky);
  border-color: var(--sky);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--forest-mid);
  border-color: var(--forest-mid);
}
.btn-outline:hover {
  background: var(--forest-mid);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
.btn-danger {
  background: var(--accent-red);
  color: var(--white);
  border-color: var(--accent-red);
}
.btn-danger:hover { background: #c0392b; }
.btn-sm { padding: .45rem 1rem; font-size: .82rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-icon { padding: .6rem; border-radius: var(--radius-sm); }
.btn-block { width: 100%; }

/* ---------- Sections ---------- */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  background: var(--forest-pale);
  color: var(--forest-mid);
  padding: .3rem .9rem;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: .75rem;
  letter-spacing: .03em;
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .card-image img { transform: scale(1.06); }
.card-image .badge {
  position: absolute;
  top: .75rem;
  right: .75rem;
}
.card-image .wishlist-btn {
  position: absolute;
  top: .75rem;
  left: .75rem;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gray-400);
  transition: all var(--transition);
}
.card-image .wishlist-btn:hover,
.card-image .wishlist-btn.active {
  color: var(--accent-red);
  background: var(--white);
}
.card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--gray-800);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-location {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  color: var(--gray-500);
  margin-bottom: .75rem;
}
.card-location svg { width: 14px; height: 14px; flex-shrink: 0; }
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--gray-100);
}
.card-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--forest-mid);
}
.card-price span { font-size: .75rem; font-weight: 400; color: var(--gray-500); }
.card-rating {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .85rem;
  color: var(--gray-600);
}
.star-filled { color: var(--accent-yellow); }

/* ---------- Grid Layouts ---------- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .75rem;
  border-radius: var(--radius-full);
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
}
.badge-green  { background: var(--forest-pale); color: var(--forest); }
.badge-blue   { background: var(--sky-pale);    color: var(--sky-dark); }
.badge-orange { background: #fef3e2;             color: var(--earth-dark); }
.badge-red    { background: #fde8e8;             color: var(--accent-red); }
.badge-last-second {
  background: var(--accent-red);
  color: var(--white);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .7; }
}

/* ---------- Filter Bar ---------- */
.filter-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}
.filter-bar .filter-group {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.filter-pill {
  padding: .4rem 1rem;
  border-radius: var(--radius-full);
  font-size: .85rem;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-pill:hover,
.filter-pill.active {
  border-color: var(--forest-mid);
  background: var(--forest-pale);
  color: var(--forest);
}

/* ---------- Page Header ---------- */
.page-header {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--sea-dark) 100%);
  padding: 7rem 0 3rem;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/pattern.svg') repeat;
  opacity: .05;
}
.page-header h1 { color: var(--white); }
.page-header p { color: rgba(255,255,255,.8); font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { font-size: .7rem; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: .5rem;
}
.form-label .required { color: var(--accent-red); margin-right: .2rem; }
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: var(--font-fa);
  color: var(--gray-700);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--forest-mid);
  box-shadow: 0 0 0 3px rgba(61,122,53,.12);
}
.form-control.error { border-color: var(--accent-red); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-error {
  color: var(--accent-red);
  font-size: .8rem;
  margin-top: .35rem;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.form-hint { color: var(--gray-400); font-size: .82rem; margin-top: .35rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---------- Leader Card ---------- */
.leader-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.leader-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--forest-pale);
}
.leader-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .35rem;
}
.leader-meta {
  font-size: .85rem;
  color: var(--gray-500);
  margin-bottom: .75rem;
}
.leader-tours-count {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: var(--forest-pale);
  color: var(--forest);
  padding: .3rem .75rem;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ---------- Village Card ---------- */
.village-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.village-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.village-card:hover img { transform: scale(1.08); }
.village-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.village-card-title { color: var(--white); font-size: 1.1rem; font-weight: 700; }
.village-card-location { color: rgba(255,255,255,.75); font-size: .85rem; }

/* ---------- Stats Section ---------- */
.stats-section {
  background: linear-gradient(135deg, var(--forest) 0%, var(--sea-dark) 100%);
  color: var(--white);
  padding: 4rem 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  display: block;
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-label { font-size: .92rem; color: rgba(255,255,255,.75); }

/* ---------- How It Works ---------- */
.how-step {
  text-align: center;
  padding: 1.5rem;
}
.step-icon {
  width: 72px; height: 72px;
  background: var(--forest-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 2rem;
  transition: all var(--transition);
}
.how-step:hover .step-icon {
  background: var(--forest-mid);
  color: var(--white);
  transform: scale(1.1);
}
.step-number {
  width: 28px; height: 28px;
  background: var(--forest-mid);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  margin: 0 auto .75rem;
}

/* ---------- Pagination ---------- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.page-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px; height: 40px;
  padding: 0 .75rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-size: .9rem;
  cursor: pointer;
  transition: all var(--transition);
}
.page-item:hover {
  border-color: var(--forest-mid);
  color: var(--forest-mid);
}
.page-item.active {
  background: var(--forest-mid);
  border-color: var(--forest-mid);
  color: var(--white);
  font-weight: 700;
}
.page-item.disabled { opacity: .5; cursor: not-allowed; }

/* ---------- Toast / Notifications ---------- */
.toast-container {
  position: fixed;
  top: 5rem; left: 1rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  pointer-events: none;
}
.toast {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  max-width: 360px;
  pointer-events: all;
  animation: slideIn .3s ease;
  border-right: 4px solid var(--forest-mid);
}
.toast.success { border-right-color: var(--forest-mid); }
.toast.error   { border-right-color: var(--accent-red); }
.toast.warning { border-right-color: var(--accent-yellow); }
.toast-icon { font-size: 1.3rem; flex-shrink: 0; }
.toast-body { flex: 1; }
.toast-title { font-weight: 700; font-size: .92rem; margin-bottom: .2rem; }
.toast-msg { font-size: .85rem; color: var(--gray-500); }
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ---------- Loading ---------- */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.85);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.spinner {
  width: 44px; height: 44px;
  border: 4px solid var(--gray-200);
  border-top-color: var(--forest-mid);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(.95) translateY(20px);
  transition: transform var(--transition);
}
.modal-backdrop.open .modal { transform: scale(1) translateY(0); }
.modal-header {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-header h3 { margin: 0; font-size: 1.15rem; }
.modal-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--gray-400);
  padding: .25rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.modal-close:hover { background: var(--gray-100); color: var(--gray-700); }
.modal-body { padding: 1.75rem; }
.modal-footer {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: flex-end;
  gap: .75rem;
}

/* ---------- OTP Input ---------- */
.otp-input-group {
  display: flex;
  gap: .75rem;
  justify-content: center;
  direction: ltr;
}
.otp-input-group input {
  width: 52px; height: 58px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--transition);
  outline: none;
}
.otp-input-group input:focus {
  border-color: var(--forest-mid);
  box-shadow: 0 0 0 3px rgba(61,122,53,.15);
}

/* ---------- Tabs ---------- */
.tabs {
  display: flex;
  gap: .25rem;
  background: var(--gray-100);
  padding: .3rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.tab-btn {
  flex: 1;
  padding: .6rem 1rem;
  border: none;
  background: none;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--gray-500);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.tab-btn.active {
  background: var(--white);
  color: var(--forest-mid);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

/* ---------- Detail Page ---------- */
.detail-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin-bottom: 2rem;
}
.detail-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.detail-hero-info { color: var(--white); }
.detail-hero-title { font-size: 2rem; color: var(--white); margin-bottom: .5rem; }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}
.detail-main {}
.detail-sidebar {
  position: sticky;
  top: 90px;
}
.booking-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.booking-price {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--forest);
  margin-bottom: 1.25rem;
}
.booking-price small {
  font-size: .85rem;
  font-weight: 400;
  color: var(--gray-500);
}
.info-list { margin-bottom: 1.5rem; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .92rem;
}
.info-item:last-child { border-bottom: none; }
.info-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
.info-label { color: var(--gray-500); font-size: .82rem; display: block; margin-bottom: .15rem; }
.info-value { color: var(--gray-700); font-weight: 600; }

/* ---------- Footer ---------- */
footer {
  background: var(--forest-dark);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer-brand .logo-text { color: var(--white); font-size: 1.15rem; font-weight: 800; }
.footer-col h4 {
  color: var(--white);
  font-size: .95rem;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--forest-mid);
  display: inline-block;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--forest-light); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  margin-bottom: .75rem;
}
.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--forest-mid);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--forest-light); }

/* ---------- Auth Page ---------- */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--sea-dark) 60%, var(--sky-dark) 100%);
  padding: 2rem 1rem;
}
.auth-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-xl);
}
.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}
.auth-logo {
  width: 64px; height: 64px;
  background: var(--forest-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}
.otp-timer {
  text-align: center;
  font-size: .88rem;
  color: var(--gray-400);
  margin-top: 1rem;
}
.otp-timer span { color: var(--forest-mid); font-weight: 700; }

/* ---------- Profile ---------- */
.profile-header {
  background: linear-gradient(135deg, var(--forest) 0%, var(--sea) 100%);
  padding: 4rem 0 6rem;
  color: var(--white);
  text-align: center;
}
.profile-avatar-wrap {
  position: relative;
  width: 110px;
  margin: 0 auto 1rem;
}
.profile-avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,.3);
}
.profile-body {
  margin-top: -4rem;
  position: relative;
  z-index: 2;
}
.profile-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.5rem;
}
.verify-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .75rem;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
}
.verify-badge.verified   { background: var(--forest-pale); color: var(--forest); }
.verify-badge.unverified { background: #fde8e8; color: var(--accent-red); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .detail-grid { grid-template-columns: 1fr 340px; }
}
@media (max-width: 900px) {
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .navbar-nav { display: none; }
  .navbar-toggle { display: flex; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2rem; }
}
@media (max-width: 600px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .search-bar { flex-direction: column; }
  .hero-stats-inner { gap: 1.5rem; }
  .modal { max-width: 100%; border-radius: var(--radius-lg); }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-left   { text-align: left; }
.text-muted  { color: var(--gray-500); }
.text-success{ color: var(--forest-mid); }
.text-danger { color: var(--accent-red); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.fw-bold { font-weight: 700; }
.w-full { width: 100%; }
.hidden { display: none !important; }
.visible { display: block !important; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ---------- Navbar Mobile Menu ---------- */
.navbar-mobile {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--forest-dark);
  z-index: 999;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: .25rem;
}
.navbar-mobile.open { display: flex; }
.navbar-mobile a {
  color: rgba(255,255,255,.85);
  padding: .75rem 1rem;
  border-radius: var(--radius);
  font-size: .95rem;
  transition: all var(--transition);
}
.navbar-mobile a:hover { background: rgba(255,255,255,.1); color: var(--white); }

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px; height: 44px;
  background: var(--forest-mid);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: all var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 500;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover { background: var(--forest); transform: translateY(-3px); }

/* ---------- Empty State ---------- */
.empty-state {
  text-align: center;
  padding: 5rem 1rem;
  color: var(--gray-400);
}
.empty-state-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: .5;
}
.empty-state h3 { color: var(--gray-600); margin-bottom: .5rem; }

/* ---------- Rating Stars ---------- */
.stars { display: flex; gap: .15rem; }
.star { font-size: 1rem; color: var(--gray-300); }
.star.filled { color: var(--accent-yellow); }
.star.half { color: var(--accent-yellow); }
