/* =============================================
   Travel Hotels Guide - Main Stylesheet
   Modern design system, no framework dependency
   ============================================= */

/* --- CSS Variables (Design Tokens) --- */
:root {
  --gold-50: #fffbeb;  --gold-100: #fef3c7; --gold-200: #fde68a;
  --gold-300: #fcd34d; --gold-400: #fbbf24; --gold-500: #f59e0b;
  --gold-600: #d97706; --gold-700: #b45309; --gold-800: #92400e;
  --teal-500: #14b8a6; --teal-600: #0d9488;
  --stone-50: #fafaf9;  --stone-100: #f5f5f4; --stone-200: #e7e5e4;
  --stone-300: #d6d3d1; --stone-400: #a8a29e; --stone-500: #78716c;
  --stone-600: #57534e; --stone-700: #44403c; --stone-800: #292524;
  --stone-900: #1c1917; --stone-950: #0c0a09;
  --red-500: #ef4444; --green-500: #22c55e;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --transition: 200ms ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--stone-50);
  color: var(--stone-800);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { line-height: 1.25; color: var(--stone-900); font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }

/* --- Utility Classes --- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 640px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.hidden { display: none !important; }

.grid { display: grid; gap: 1.5rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-display { font-family: var(--font-display); }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.w-full { width: 100%; }
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.shadow { box-shadow: var(--shadow); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.transition { transition: all var(--transition); }
.object-cover { object-fit: cover; }

/* --- Spacing --- */
.mt-2 { margin-top: 0.5rem; } .mt-4 { margin-top: 1rem; } .mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; } .mt-12 { margin-top: 3rem; } .mt-16 { margin-top: 4rem; }
.mb-2 { margin-bottom: 0.5rem; } .mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; } .mb-12 { margin-bottom: 3rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.p-2 { padding: 0.5rem; } .p-4 { padding: 1rem; } .p-6 { padding: 1.5rem; }

/* --- Colors --- */
.bg-white { background: #fff; }
.bg-stone-50 { background: var(--stone-50); }
.bg-stone-100 { background: var(--stone-100); }
.bg-stone-900 { background: var(--stone-900); }
.bg-gradient-gold { background: linear-gradient(135deg, #f59e0b, #d97706); }
.bg-gradient-dark { background: linear-gradient(135deg, #1c1917, #292524); }
.text-white { color: #fff; }
.text-stone-400 { color: var(--stone-400); }
.text-stone-500 { color: var(--stone-500); }
.text-stone-600 { color: var(--stone-600); }
.text-stone-700 { color: var(--stone-700); }
.text-stone-800 { color: var(--stone-800); }
.text-stone-900 { color: var(--stone-900); }
.text-gold-500 { color: var(--gold-500); }
.text-gold-600 { color: var(--gold-600); }
.text-teal-500 { color: var(--teal-500); }

/* ============ HEADER ============ */
.site-header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone-200);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px) { .header-inner { padding: 0 2rem; } }
@media (min-width: 1024px) { .header-inner { padding: 0 2.5rem; } }

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
}
.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--stone-900);
  letter-spacing: -0.02em;
}
.logo-text span { color: var(--gold-600); }

/* Desktop Nav */
.desktop-nav { display: none; }
@media (min-width: 768px) {
  .desktop-nav { display: flex; align-items: center; gap: 2rem; }
}
.nav-link {
  color: var(--stone-600);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--gold-600); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width var(--transition);
  border-radius: 1px;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #fff;
}
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-600), var(--gold-700)); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-outline {
  border: 2px solid var(--stone-300);
  color: var(--stone-700);
  background: transparent;
}
.btn-outline:hover { border-color: var(--gold-500); color: var(--gold-600); }
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  color: var(--stone-700);
}
@media (min-width: 768px) { .mobile-menu-btn { display: none; } }
.mobile-menu-btn:hover { background: var(--stone-100); }

.hamburger { width: 22px; height: 18px; position: relative; }
.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--stone-700);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { bottom: 0; }
.hamburger.open span:nth-child(1) { top: 8px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { bottom: 8px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 4.5rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 2rem;
  z-index: 40;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .nav-link { display: block; padding: 0.75rem 0; font-size: 1.125rem; border-bottom: 1px solid var(--stone-100); }

/* --- Hero Section --- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1c1917 0%, #292524 50%, #44403c 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}
@media (min-width: 768px) { .hero-content { padding: 6rem 2rem; } }
@media (min-width: 1024px) { .hero-content { padding: 7rem 2.5rem; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold-300);
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-title span { color: var(--gold-400); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--stone-300);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* Hero Search */
.hero-search { max-width: 42rem; margin: 0 auto; }
.hero-search-form { display: flex; background: #fff; border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); }
.hero-search-input { flex: 1; padding: 1rem 1.5rem; border: none; font-size: 1.0625rem; color: var(--stone-800); outline: none; }
.hero-search-input::placeholder { color: var(--stone-400); }
.hero-search-btn { padding: 1rem 2rem; background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); color: #fff; border: none; font-weight: 600; font-size: 1rem; cursor: pointer; transition: all var(--transition); white-space: nowrap; }
.hero-search-btn:hover { background: linear-gradient(135deg, var(--gold-600), var(--gold-700)); }

/* Stats Bar */
.hero-stats { display: flex; justify-content: center; gap: 2rem; margin-top: 3rem; flex-wrap: wrap; }
@media (min-width: 768px) { .hero-stats { gap: 3rem; } }
.stat-item { text-align: center; }
.stat-number { font-size: 2rem; font-weight: 700; color: var(--gold-400); font-family: var(--font-display); }
@media (min-width: 768px) { .stat-number { font-size: 2.5rem; } }
.stat-label { font-size: 0.875rem; color: var(--stone-400); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.25rem; }

/* --- Section Headers --- */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  display: inline-block;
  color: var(--gold-600);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--stone-900);
  margin-bottom: 0.75rem;
}
.section-desc { color: var(--stone-500); max-width: 36rem; margin: 0 auto; font-size: 1.0625rem; }

/* --- Destination Cards Grid --- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
/* Country city grid */
.dest-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:1.25rem}
@media(max-width:640px){.dest-grid{grid-template-columns:repeat(2,1fr);gap:0.75rem}}

@media (min-width: 640px) { .destinations-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .destinations-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .destinations-grid { grid-template-columns: repeat(6, 1fr); } }

.dest-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.dest-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
}
.dest-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  color: #fff;
}
.dest-card-flag { font-size: 1.5rem; margin-bottom: 0.25rem; }
.dest-card-name { font-weight: 700; font-size: 1.0625rem; line-height: 1.2; }
.dest-card-count { font-size: 0.8125rem; color: var(--stone-300); margin-top: 0.25rem; }

/* --- City Cards --- */
.city-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) { .city-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .city-grid { grid-template-columns: repeat(4, 1fr); } }

.city-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  border: 1px solid var(--stone-200);
  transition: all var(--transition);
}
.city-card:hover { border-color: var(--gold-300); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.city-card-name { font-weight: 600; color: var(--stone-800); margin-bottom: 0.25rem; font-size: 0.9375rem; }
.city-card-country { font-size: 0.8125rem; color: var(--stone-400); }
.city-card-count { margin-top: 0.5rem; font-size: 0.8125rem; color: var(--gold-600); font-weight: 500; }

/* --- Hotel Cards --- */
.hotel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .hotel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .hotel-grid { grid-template-columns: repeat(3, 1fr); } }

.hotel-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--stone-200);
  transition: all var(--transition);
}
.hotel-card:hover { border-color: var(--gold-300); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.hotel-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--stone-200), var(--stone-300));
  position: relative;
  overflow: hidden;
}
.hotel-card-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--stone-400);
}
.hotel-card-rating {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 0.25rem 0.625rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-700);
}
.hotel-card-body { padding: 1.25rem; }
.hotel-card-name { font-weight: 600; font-size: 1rem; color: var(--stone-900); margin-bottom: 0.375rem; line-height: 1.3; }
.hotel-card-location { font-size: 0.8125rem; color: var(--stone-400); display: flex; align-items: center; gap: 0.25rem; }
.hotel-card-desc { font-size: 0.8125rem; color: var(--stone-500); margin-top: 0.5rem; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* --- Intro Content Block --- */
.intro-block {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--stone-200);
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .intro-block { padding: 2.5rem; } }
.intro-block h2 { font-family: var(--font-display); font-size: 1.75rem; margin-bottom: 1rem; color: var(--stone-900); }
.intro-block p { color: var(--stone-600); margin-bottom: 1rem; font-size: 1.0625rem; line-height: 1.8; }
.intro-block p:last-child { margin-bottom: 0; }

/* --- FAQ Block --- */
.faq-section { margin-top: 2rem; }
.faq-section h2 { font-family: var(--font-display); margin-bottom: 1.5rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  padding: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--stone-800);
  transition: all var(--transition);
}
.faq-question:hover { color: var(--gold-600); }
.faq-question::after { content: '+'; font-size: 1.25rem; color: var(--stone-400); transition: transform 0.3s; }
.faq-item.open .faq-question::after { content: '−'; color: var(--gold-600); }
.faq-answer {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--stone-600);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 20rem; padding-bottom: 1.25rem; }

/* --- Breadcrumbs --- */
.breadcrumbs { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; padding: 1rem 0; font-size: 0.875rem; color: var(--stone-400); }
.breadcrumbs a { color: var(--stone-500); transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--gold-600); }
.breadcrumbs .sep { color: var(--stone-300); }
.breadcrumbs .current { color: var(--stone-700); font-weight: 500; }

/* --- Page Header (Country/City) --- */
.page-hero {
  background: linear-gradient(135deg, #1c1917, #292524);
  color: #fff;
  padding: 3rem 1.5rem;
  text-align: center;
}
@media (min-width: 768px) { .page-hero { padding: 4rem 2rem; } }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.page-hero-subtitle { color: var(--stone-300); font-size: 1.0625rem; max-width: 40rem; margin: 0 auto; }
.page-hero-stats { display: flex; justify-content: center; gap: 2rem; margin-top: 1.5rem; flex-wrap: wrap; }
.page-hero-stats .stat { text-align: center; }
.page-hero-stats .stat-val { font-size: 1.5rem; font-weight: 700; color: var(--gold-400); }
.page-hero-stats .stat-lbl { font-size: 0.8125rem; color: var(--stone-400); }

/* --- Hotel Detail --- */
.hotel-hero { display: grid; gap: 2rem; }
@media (min-width: 768px) { .hotel-hero { grid-template-columns: 1fr 1fr; } }
.hotel-gallery { 
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--stone-200), var(--stone-300));
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--stone-400);
}
.hotel-info h1 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 0.5rem; }
.hotel-address { color: var(--stone-500); font-size: 0.9375rem; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.hotel-stars { color: var(--gold-500); font-size: 1.25rem; margin-bottom: 1rem; }
.hotel-description { color: var(--stone-600); line-height: 1.8; font-size: 1.0625rem; margin-bottom: 1.5rem; }
.hotel-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; padding: 1.5rem; background: var(--stone-50); border-radius: var(--radius-lg); }
.hotel-meta-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9375rem; color: var(--stone-600); }
.hotel-meta-item svg { color: var(--gold-500); flex-shrink: 0; }

.related-section { margin-top: 3rem; }
.related-section h2 { font-family: var(--font-display); margin-bottom: 1.5rem; }

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--stone-200);
  transition: all var(--transition);
}
.blog-card:hover { border-color: var(--gold-300); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-300));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-700);
  font-size: 2rem;
}
.blog-card-body { padding: 1.5rem; }
.blog-card-category { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-600); font-weight: 600; margin-bottom: 0.5rem; }
.blog-card-title { font-size: 1.125rem; font-weight: 700; color: var(--stone-900); margin-bottom: 0.5rem; line-height: 1.3; transition: color var(--transition); }
.blog-card:hover .blog-card-title { color: var(--gold-600); }
.blog-card-excerpt { font-size: 0.875rem; color: var(--stone-500); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-footer { margin-top: 1rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.8125rem; color: var(--stone-400); }

/* --- Blog Post --- */
.blog-post { max-width: 48rem; margin: 0 auto; }
.blog-post h2 { font-family: var(--font-display); font-size: 1.75rem; margin: 2rem 0 1rem; color: var(--stone-900); }
.blog-post h3 { font-size: 1.35rem; margin: 1.75rem 0 0.75rem; color: var(--stone-800); }
.blog-post p { color: var(--stone-600); margin-bottom: 1.25rem; font-size: 1.0625rem; line-height: 1.85; }
.blog-post ul { margin: 0.75rem 0 1.25rem 1.5rem; list-style: disc; }
.blog-post ul li { margin-bottom: 0.5rem; color: var(--stone-600); }
.blog-post a { color: var(--gold-600); text-decoration: underline; text-underline-offset: 2px; }
.blog-post a:hover { color: var(--gold-700); }
.blog-post strong { color: var(--stone-800); }

/* --- Pagination --- */
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--stone-200);
  background: #fff;
  color: var(--stone-600);
  font-weight: 500;
  font-size: 0.875rem;
  transition: all var(--transition);
}
.page-link:hover { border-color: var(--gold-300); color: var(--gold-600); }
.page-link.active { background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); color: #fff; border-color: transparent; }

/* --- Search Page --- */
.search-page { max-width: 40rem; margin: 3rem auto; text-align: center; }
.search-results { max-width: 900px; margin: 2rem auto; }
.search-result-item {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 0.75rem;
  transition: all var(--transition);
}
.search-result-item:hover { border-color: var(--gold-300); box-shadow: var(--shadow-md); }
.search-result-name { font-weight: 600; color: var(--stone-900); margin-bottom: 0.25rem; }
.search-result-location { font-size: 0.875rem; color: var(--stone-400); }

/* --- CTA Section --- */
.cta {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  text-align: center;
  padding: 3rem 1.5rem;
  color: #fff;
}
@media (min-width: 768px) { .cta { padding: 4rem 2rem; } }
.cta h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 0.75rem; color: #fff; }
.cta p { font-size: 1.0625rem; opacity: 0.9; margin-bottom: 1.5rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
.cta .btn { background: #fff; color: var(--gold-700); font-size: 1.0625rem; }
.cta .btn:hover { background: var(--stone-100); }

/* --- Footer --- */
.site-footer {
  background: var(--stone-900);
  color: var(--stone-400);
  padding: 3rem 1.5rem 2rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p { margin-top: 1rem; line-height: 1.7; font-size: 0.9375rem; }
.footer-col h4 { color: #fff; font-weight: 600; margin-bottom: 1rem; font-size: 0.9375rem; }
.footer-col a { display: block; padding: 0.375rem 0; font-size: 0.875rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold-400); }
.footer-bottom {
  max-width: 1280px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.8125rem;
}

/* --- Misc --- */
.map-container { border-radius: var(--radius-xl); overflow: hidden; height: 300px; background: var(--stone-200); }
@media (min-width: 768px) { .map-container { height: 400px; } }
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-gold { background: var(--gold-100); color: var(--gold-700); }

/* About / Static Pages */
.static-page { max-width: 48rem; margin: 3rem auto; }
.static-page h2 { font-family: var(--font-display); margin: 2rem 0 1rem; }
.static-page p { color: var(--stone-600); line-height: 1.8; margin-bottom: 1.25rem; }
.static-page ul { list-style: disc; margin-left: 1.5rem; color: var(--stone-600); }
.static-page ul li { margin-bottom: 0.5rem; }

/* Mobile adjustments */
@media (max-width: 640px) {
  .hero-search-form { flex-direction: column; }
  .hero-search-btn { width: 100%; padding: 0.875rem; }
  .hotel-hero { grid-template-columns: 1fr; }
  .hotel-meta { flex-direction: column; gap: 0.75rem; }
}

.dest-card-body{position:relative;z-index:2;padding:0.75rem}
.dest-card-body .dest-card-name{font-weight:700;font-size:0.95rem;color:var(--color-text)}
.dest-card-body .dest-card-rating{font-size:0.8rem;color:var(--color-gold)}

.dest-card-placeholder{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:2.5rem;z-index:0;pointer-events:none}
