/* ═══════════════════════════════════════════════════════════════
   GUIDE ADVANCED SEARCH — Yankolanka Travels 2026
   Inherits design tokens from index.css
   ═══════════════════════════════════════════════════════════════ */

.gs-page {
  min-height: 100vh;
  padding-top: 92px;
  background: var(--bg-primary);
}

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.gs-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  padding: clamp(48px, 7vw, 88px) 0 clamp(60px, 9vw, 110px);
}

.gs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 85% 40%, rgba(212,168,83,.18) 0%, transparent 65%),
    radial-gradient(ellipse 55% 70% at 10% 70%, rgba(15,160,144,.18) 0%, transparent 60%);
  pointer-events: none;
}

.gs-hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.gs-hero-inner { position: relative; z-index: 1; }

.gs-hero-crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
  opacity: 0;
  animation: gsSlideUp 0.5s var(--ease-out) 0.1s forwards;
}
.gs-hero-crumb a { color: var(--text-inverse-muted); transition: color 0.2s; }
.gs-hero-crumb a:hover { color: var(--gold-light); }
.gs-hero-crumb i { width: 13px; height: 13px; }

.gs-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 68px);
  font-weight: 500;
  color: var(--text-inverse);
  line-height: 1.06;
  margin-bottom: 14px;
  opacity: 0;
  animation: gsSlideUp 0.55s var(--ease-out) 0.2s forwards;
}
.gs-hero h1 em { font-style: italic; color: var(--gold-light); }

.gs-hero-sub {
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--text-inverse-muted);
  max-width: 560px;
  line-height: 1.7;
  opacity: 0;
  animation: gsSlideUp 0.55s var(--ease-out) 0.32s forwards;
}

.gs-hero-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
  opacity: 0;
  animation: gsSlideUp 0.55s var(--ease-out) 0.42s forwards;
}
.gs-stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  font-size: 12px;
  color: var(--text-inverse-muted);
  font-weight: 500;
}
.gs-stat-chip i { width: 13px; height: 13px; color: var(--gold-light); }

/* Guide count orbit decorations */
.gs-hero-orb {
  position: absolute;
  right: clamp(20px, 8vw, 120px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: gsSlideUp 0.6s var(--ease-out) 0.5s forwards;
}
@media (max-width: 768px) { .gs-hero-orb { display: none; } }

.gs-orb-ring {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1.5px dashed rgba(212,168,83,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: rotate 18s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }

.gs-orb-center {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(212,168,83,.12);
  border: 1px solid rgba(212,168,83,.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: rotate 18s linear infinite reverse;
}
.gs-orb-center strong {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.gs-orb-center span {
  font-size: 10px;
  color: var(--text-inverse-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gs-orb-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}
.gs-orb-dot:nth-child(1) { top: -5px; left: 50%; transform: translateX(-50%); }
.gs-orb-dot:nth-child(2) { right: -5px; top: 50%; transform: translateY(-50%); }
.gs-orb-dot:nth-child(3) { bottom: -5px; left: 50%; transform: translateX(-50%); }

/* ════════════════════════════════════════
   QUICK FILTER BAR
   ════════════════════════════════════════ */
.gs-quick-bar {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 28px;
  animation: gsSlideUp 0.5s var(--ease-out) 0.5s both;
}
@media (max-width: 860px) {
  .gs-quick-bar { grid-template-columns: 1fr 1fr; }
  .gs-quick-search-btn { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gs-quick-bar { grid-template-columns: 1fr; }
  .gs-quick-search-btn { grid-column: span 1; }
}

.gs-quick-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-tertiary);
  margin-bottom: 7px;
  font-family: var(--font-mono);
}
.gs-quick-input-wrap { position: relative; }
.gs-quick-input-wrap i.q-ico {
  position: absolute;
  left: 11px; top: 50%;
  transform: translateY(-50%);
  width: 15px; height: 15px;
  color: var(--text-tertiary);
  pointer-events: none;
}
.gs-quick-input-wrap input,
.gs-quick-input-wrap select {
  width: 100%;
  padding: 11px 12px 11px 34px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  background: var(--bg-secondary);
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
  transition: border-color 0.22s, box-shadow 0.22s;
  appearance: none;
  -webkit-appearance: none;
}
.gs-quick-input-wrap select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230fa090' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}
.gs-quick-input-wrap input:focus,
.gs-quick-input-wrap select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-subtle);
  background: var(--bg-card);
}
.gs-quick-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.28s var(--ease-out);
  box-shadow: 0 6px 22px rgba(15,160,144,.3);
  white-space: nowrap;
}
.gs-quick-search-btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(15,160,144,.4);
}
.gs-quick-search-btn i { width: 16px; height: 16px; }

/* ════════════════════════════════════════
   MAIN LAYOUT
   ════════════════════════════════════════ */
.gs-body {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 28px;
  align-items: start;
  padding: 0 0 80px;
}
@media (max-width: 1024px) { .gs-body { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════
   FILTER SIDEBAR
   ════════════════════════════════════════ */
.gs-sidebar {
  position: sticky;
  top: 96px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  animation: gsSidebarIn 0.6s var(--ease-out) 0.15s both;
}
@keyframes gsSidebarIn {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}

.gs-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 16px;
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
}
.gs-sidebar-head h3 {
  font-size: 14.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
}
.gs-sidebar-head h3 i { width: 16px; height: 16px; color: var(--accent); }
.gs-clear-all {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-hover);
  background: var(--accent-subtle);
  transition: all 0.22s ease;
}
.gs-clear-all:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* accordion */
.gs-filter-section { border-bottom: 1px solid var(--border-color); }
.gs-filter-section:last-child { border-bottom: none; }
.gs-filter-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  transition: background 0.2s ease;
}
.gs-filter-toggle:hover { background: var(--bg-secondary); }
.gs-filter-toggle i { width: 15px; height: 15px; color: var(--text-tertiary); transition: transform 0.3s ease; }
.gs-filter-toggle.open .chevron { transform: rotate(180deg); }
.gs-filter-toggle .filter-label { display: flex; align-items: center; gap: 9px; }
.gs-filter-toggle .filter-label .icon { color: var(--accent); }
.gs-filter-body {
  padding: 0 22px 18px;
  overflow: hidden;
  transition: max-height 0.38s var(--ease-out), opacity 0.3s ease;
  max-height: 700px;
  opacity: 1;
}
.gs-filter-body.collapsed { max-height: 0; opacity: 0; padding-bottom: 0; }

/* Language pills */
.gs-lang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.gs-lang-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  background: var(--bg-card);
  cursor: pointer;
  transition: all 0.22s ease;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}
.gs-lang-btn .lang-flag {
  font-size: 16px;
  line-height: 1;
}
.gs-lang-btn:hover,
.gs-lang-btn.active {
  border-color: var(--accent);
  background: var(--accent-subtle);
  color: var(--accent-dark);
  font-weight: 600;
}

/* Specialty filter */
.gs-specialty-list { display: flex; flex-direction: column; gap: 6px; }
.gs-specialty-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  background: var(--bg-card);
  cursor: pointer;
  transition: all 0.22s ease;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: left;
}
.gs-specialty-btn i { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.gs-specialty-btn:hover,
.gs-specialty-btn.active {
  border-color: var(--accent);
  background: var(--accent-subtle);
  color: var(--accent-dark);
  font-weight: 600;
}

/* Experience range */
.gs-exp-row {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.gs-exp-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-color);
  background: var(--bg-card);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.22s ease;
}
.gs-exp-btn:hover, .gs-exp-btn.active {
  border-color: var(--accent);
  background: var(--accent-subtle);
  color: var(--accent-dark);
}

/* Rating filter */
.gs-rating-opts { display: flex; flex-direction: column; gap: 6px; }
.gs-rating-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 13px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  background: var(--bg-card);
  cursor: pointer;
  transition: all 0.22s ease;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}
.gs-rating-btn:hover, .gs-rating-btn.active {
  border-color: var(--gold);
  background: rgba(212,168,83,.08);
  color: #9a6f0e;
}
.gs-rating-score {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: #9a6f0e;
  background: rgba(212,168,83,.15);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* Vehicle compatibility */
.gs-vehicle-pills { display: flex; flex-direction: column; gap: 6px; }
.gs-vehicle-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  background: var(--bg-card);
  cursor: pointer;
  transition: all 0.22s ease;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}
.gs-vehicle-pill i { width: 14px; height: 14px; color: var(--accent); }
.gs-vehicle-pill:hover, .gs-vehicle-pill.active {
  border-color: var(--accent);
  background: var(--accent-subtle);
  color: var(--accent-dark);
  font-weight: 600;
}

/* Daily rate range */
.gs-rate-display { display: flex; justify-content: space-between; margin-bottom: 11px; }
.gs-rate-display span {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-dark);
  background: var(--accent-subtle);
  padding: 3px 9px;
  border-radius: var(--radius-full);
}
.gs-range-track { position: relative; height: 28px; display: flex; align-items: center; }
.gs-range-bg { position: absolute; width: 100%; height: 4px; background: var(--border-color); border-radius: 99px; }
.gs-range-fill {
  position: absolute; height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 100%);
  border-radius: 99px; pointer-events: none;
}
.gs-range-track input[type="range"] {
  position: absolute; width: 100%; height: 4px;
  -webkit-appearance: none; appearance: none;
  background: transparent; pointer-events: none; outline: none;
}
.gs-range-track input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--bg-card);
  box-shadow: 0 2px 8px rgba(15,160,144,.4);
  cursor: pointer; pointer-events: all;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.gs-range-track input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(15,160,144,.55);
}

/* Apply button */
.gs-apply-btn {
  width: 100%; padding: 13px;
  border-radius: var(--radius-md);
  background: var(--accent); color: var(--text-primary);
  font-size: 14px; font-weight: 700; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 6px; transition: all 0.28s var(--ease-out);
  box-shadow: 0 6px 22px rgba(15,160,144,.25);
}
.gs-apply-btn:hover {
  background: var(--accent-light); transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(15,160,144,.35);
}
.gs-apply-btn i { width: 16px; height: 16px; }

/* Mobile sidebar */
.gs-mobile-filter-bar {
  display: none; align-items: center; justify-content: space-between;
  gap: 10px; margin-bottom: 18px; flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .gs-mobile-filter-bar { display: flex; }
  .gs-sidebar {
    position: fixed; top: 0; left: 0; height: 100%;
    width: min(340px, 92vw); z-index: 1100;
    border-radius: 0; transform: translateX(-100%);
    transition: transform 0.38s var(--ease-out);
    overflow-y: auto;
  }
  .gs-sidebar.open { transform: translateX(0); box-shadow: var(--shadow-lg); }
}
.gs-sidebar-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(10,15,13,.5); z-index: 1099;
  backdrop-filter: blur(4px);
}
.gs-sidebar-backdrop.show { display: block; }
.gs-mobile-filter-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: var(--radius-full);
  border: 1.5px solid var(--border-hover); background: var(--accent-subtle);
  font-size: 13px; font-weight: 600; color: var(--accent-dark); cursor: pointer;
  transition: all 0.22s ease;
}
.gs-mobile-filter-btn i { width: 15px; height: 15px; }
.gs-mobile-filter-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.gs-mobile-close-filter {
  width: calc(100% - 44px); margin: 16px 22px;
  padding: 13px; background: var(--accent); color: var(--text-primary);
  font-size: 14px; font-weight: 700; border: none; cursor: pointer;
  border-radius: var(--radius-md); align-items: center;
  justify-content: center; gap: 8px; display: none;
}
@media (max-width: 1024px) { .gs-mobile-close-filter { display: flex; } }

/* ════════════════════════════════════════
   RESULTS AREA
   ════════════════════════════════════════ */
.gs-results { display: flex; flex-direction: column; gap: 18px; }

/* toolbar */
.gs-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-md); padding: 14px 20px;
  box-shadow: var(--shadow-xs);
  animation: gsSlideUp 0.45s var(--ease-out) 0.25s both;
}
.gs-result-count { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.gs-result-count span {
  font-family: var(--font-mono); color: var(--accent); font-size: 20px;
  font-weight: 700; margin-right: 4px;
}
.gs-toolbar-right { display: flex; align-items: center; gap: 10px; }
.gs-sort-select {
  padding: 9px 32px 9px 12px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color); background: var(--bg-secondary);
  font-size: 13px; color: var(--text-primary); font-weight: 500;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230fa090' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
  cursor: pointer; transition: border-color 0.22s, box-shadow 0.22s;
}
.gs-sort-select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-subtle); }
.gs-view-toggle { display: flex; gap: 5px; }
.gs-view-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color); background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.22s ease; color: var(--text-tertiary);
}
.gs-view-btn i { width: 16px; height: 16px; }
.gs-view-btn.active, .gs-view-btn:hover {
  background: var(--accent-subtle); border-color: var(--accent); color: var(--accent);
}

/* active tags */
.gs-active-filters {
  display: flex; align-items: center; gap: 7px; flex-wrap: wrap;
  animation: gsSlideUp 0.45s var(--ease-out) 0.3s both; min-height: 32px;
}
.gs-active-filters-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-tertiary); font-family: var(--font-mono);
}
.gs-active-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 11px; border-radius: var(--radius-full);
  background: var(--accent-subtle); border: 1px solid var(--border-hover);
  font-size: 12px; font-weight: 600; color: var(--accent-dark);
}
.gs-active-tag button {
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark); opacity: 0.65; cursor: pointer;
  transition: opacity 0.2s; line-height: 1;
}
.gs-active-tag button:hover { opacity: 1; }

/* ════════════════════════════════════════
   GUIDE CARD GRID
   ════════════════════════════════════════ */
.gs-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
.gs-guide-grid.list-view { grid-template-columns: 1fr; }

/* ── Guide Card ── */
.gs-guide-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out), border-color 0.22s ease;
  position: relative;
  animation: gsCardIn 0.5s var(--ease-out) both;
}
@keyframes gsCardIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.gs-guide-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}
.gs-guide-card:nth-child(1)  { animation-delay: 0.04s; }
.gs-guide-card:nth-child(2)  { animation-delay: 0.08s; }
.gs-guide-card:nth-child(3)  { animation-delay: 0.12s; }
.gs-guide-card:nth-child(4)  { animation-delay: 0.16s; }
.gs-guide-card:nth-child(5)  { animation-delay: 0.20s; }
.gs-guide-card:nth-child(6)  { animation-delay: 0.24s; }
.gs-guide-card:nth-child(7)  { animation-delay: 0.28s; }
.gs-guide-card:nth-child(8)  { animation-delay: 0.32s; }
.gs-guide-card:nth-child(9)  { animation-delay: 0.36s; }
.gs-guide-card:nth-child(10) { animation-delay: 0.40s; }
.gs-guide-card:nth-child(11) { animation-delay: 0.44s; }
.gs-guide-card:nth-child(12) { animation-delay: 0.48s; }

/* List view */
.gs-guide-grid.list-view .gs-guide-card { display: flex; }
.gs-guide-grid.list-view .gs-card-header { width: 200px; flex-shrink: 0; min-height: 200px; }
.gs-guide-grid.list-view .gs-card-body { flex: 1; }

/* ── Card Header (avatar area) ── */
.gs-card-header {
  position: relative;
  padding: 28px 20px 20px;
  background: linear-gradient(145deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.gs-card-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gs-guide-card:hover .gs-card-header::before { opacity: 1; }

/* Avatar */
.gs-avatar-wrap {
  position: relative;
  margin-bottom: 14px;
}
.gs-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  position: relative;
  z-index: 1;
  transition: transform 0.3s var(--ease-spring);
}
.gs-guide-card:hover .gs-avatar { transform: scale(1.05); }

.gs-avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(15,160,144,.3);
  animation: gsRingSpin 12s linear infinite;
}
@keyframes gsRingSpin { to { transform: rotate(360deg); } }

.gs-avatar-badge {
  position: absolute;
  bottom: 0;
  right: -2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.gs-avatar-badge i { width: 11px; height: 11px; color: #fff; }
.gs-avatar-badge.gold-badge { background: var(--gold); }
.gs-avatar-badge.gold-badge i { color: #0a1a14; }

/* Top ribbon badges */
.gs-card-ribbon {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
}
.gs-ribbon-badge {
  padding: 3px 9px;
  border-radius: var(--radius-full);
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.gs-ribbon-badge--sltda {
  background: rgba(15,160,144,.12);
  border: 1px solid var(--border-hover);
  color: var(--accent-dark);
}
.gs-ribbon-badge--top {
  background: var(--gold);
  color: #0a1a14;
}
.gs-ribbon-badge--new {
  background: rgba(60,180,255,.15);
  border: 1px solid rgba(60,180,255,.3);
  color: #1a7fc4;
}

/* Guide name + meta */
.gs-guide-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
  transition: color 0.2s;
}
.gs-guide-card:hover .gs-guide-name { color: var(--accent-dark); }

.gs-guide-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: #9a6f0e;
  background: rgba(212,168,83,.12);
  padding: 3px 9px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}
.gs-guide-rating i { width: 12px; height: 12px; fill: var(--gold); color: var(--gold); }

/* Language pills */
.gs-guide-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}
.gs-lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 9px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}
.gs-lang-pill .flag { font-size: 13px; }
.gs-lang-pill.primary {
  border-color: var(--accent);
  background: var(--accent-subtle);
  color: var(--accent-dark);
}

/* ── Card Body ── */
.gs-card-body { padding: 18px 20px 20px; }

.gs-card-specialty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: var(--bg-secondary);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.gs-card-specialty i { width: 13px; height: 13px; color: var(--accent); }

.gs-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.gs-card-stat {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  text-align: center;
}
.gs-card-stat-val {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  display: block;
}
.gs-card-stat-label {
  font-size: 10px;
  color: var(--text-tertiary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 3px;
  display: block;
}

/* Availability dots */
.gs-availability {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}
.gs-avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: gsPulse 2s ease-in-out infinite;
}
@keyframes gsPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.gs-avail-dot.available { background: #22c55e; }
.gs-avail-dot.busy { background: var(--gold); }
.gs-avail-dot.unavailable { background: #e05555; animation: none; }

/* Reviews mini row */
.gs-mini-reviews {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.gs-mini-review {
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  font-size: 11px;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.4;
  flex: 1;
  min-width: 120px;
}

/* Card footer */
.gs-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
  flex-wrap: wrap;
}
.gs-card-rate { display: flex; flex-direction: column; }
.gs-rate-label {
  font-size: 10px; color: var(--text-tertiary); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.gs-rate-val {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.gs-rate-val span { font-size: 12px; font-weight: 500; color: var(--text-tertiary); }
.gs-rate-note { font-size: 10.5px; color: var(--text-tertiary); margin-top: 2px; }

.gs-card-actions-row {
  display: flex;
  gap: 7px;
  align-items: center;
}

.gs-card-wishlist-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border-color);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.gs-card-wishlist-btn i { width: 15px; height: 15px; }
.gs-card-wishlist-btn:hover, .gs-card-wishlist-btn.liked {
  background: rgba(220,50,50,.1);
  border-color: rgba(220,50,50,.4);
  color: #e05555;
}

.gs-card-select-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.28s var(--ease-out);
  white-space: nowrap;
  flex-shrink: 0;
}
.gs-card-select-btn i { width: 14px; height: 14px; }
.gs-card-select-btn:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15,160,144,.3);
}
.gs-card-select-btn.selected {
  background: var(--bg-dark);
  color: var(--text-inverse);
}

/* ════════════════════════════════════════
   GUIDE PROFILE MODAL (detail view)
   ════════════════════════════════════════ */
.gs-profile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(10,15,13,.7);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}
.gs-profile-overlay.open { opacity: 1; pointer-events: all; }

.gs-profile-modal {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  max-width: 680px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  transform: scale(0.92) translateY(22px);
  transition: transform 0.38s var(--ease-spring);
  box-shadow: var(--shadow-lg);
}
.gs-profile-overlay.open .gs-profile-modal {
  transform: scale(1) translateY(0);
}

.gs-profile-head {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 28px 22px;
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
  position: sticky;
  top: 0;
  z-index: 2;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.gs-profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.gs-profile-info { flex: 1; }
.gs-profile-info h2 { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-bottom: 5px; }
.gs-profile-info p { font-size: 13px; color: var(--text-secondary); }

.gs-profile-close {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--border-color); background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-secondary); transition: all 0.22s ease;
}
.gs-profile-close:hover { background: var(--bg-secondary); color: var(--text-primary); }
.gs-profile-close i { width: 16px; height: 16px; }

.gs-profile-body { padding: 24px 28px 28px; }

.gs-profile-section { margin-bottom: 22px; }
.gs-profile-section h4 {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-tertiary);
  font-family: var(--font-mono); margin-bottom: 10px;
  display: flex; align-items: center; gap: 7px;
}
.gs-profile-section h4 i { width: 13px; height: 13px; color: var(--accent); }

.gs-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
@media (max-width: 480px) { .gs-profile-grid { grid-template-columns: 1fr 1fr; } }

.gs-profile-stat {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  text-align: center;
}
.gs-profile-stat strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.gs-profile-stat span {
  display: block;
  font-size: 10px;
  color: var(--text-tertiary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.gs-profile-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.gs-profile-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.gs-profile-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}
.gs-profile-tag i { width: 12px; height: 12px; color: var(--accent); }

.gs-profile-reviews { display: flex; flex-direction: column; gap: 10px; }
.gs-review-card {
  padding: 14px;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
}
.gs-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.gs-reviewer {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.gs-reviewer-country { font-size: 11px; color: var(--text-tertiary); font-weight: 400; }
.gs-review-stars { display: flex; gap: 2px; }
.gs-review-stars i { width: 11px; height: 11px; fill: var(--gold); color: var(--gold); }
.gs-review-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
}

.gs-profile-footer {
  display: flex;
  gap: 10px;
  padding: 20px 28px;
  border-top: 1px solid var(--border-color);
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  flex-wrap: wrap;
}
.gs-profile-book-btn {
  flex: 1;
  padding: 13px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.28s var(--ease-out);
  box-shadow: 0 6px 20px rgba(15,160,144,.25);
}
.gs-profile-book-btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15,160,144,.35);
}
.gs-profile-book-btn i { width: 16px; height: 16px; }
.gs-profile-shortlist-btn {
  padding: 13px 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-hover);
  background: var(--bg-card);
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all 0.22s ease;
}
.gs-profile-shortlist-btn:hover {
  background: var(--accent-subtle);
  border-color: var(--accent);
}
.gs-profile-shortlist-btn i { width: 15px; height: 15px; }

/* ════════════════════════════════════════
   NO RESULTS
   ════════════════════════════════════════ */
.gs-no-results {
  text-align: center; padding: 60px 24px;
  background: var(--bg-card); border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  animation: gsSlideUp 0.4s var(--ease-out) both;
}
.gs-no-results-icon {
  width: 60px; height: 60px; background: var(--bg-secondary);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 18px;
}
.gs-no-results-icon i { width: 28px; height: 28px; color: var(--text-tertiary); }
.gs-no-results h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.gs-no-results p { font-size: 14px; color: var(--text-secondary); max-width: 340px; margin: 0 auto 20px; }

/* Load more */
.gs-load-more-wrap { text-align: center; padding: 10px 0 30px; animation: gsSlideUp 0.4s var(--ease-out) 0.5s both; }
.gs-load-more-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px; border-radius: var(--radius-full);
  border: 1.5px solid var(--border-hover); background: var(--bg-card);
  font-size: 14px; font-weight: 600; color: var(--accent-dark);
  cursor: pointer; transition: all 0.28s var(--ease-out);
}
.gs-load-more-btn:hover {
  background: var(--accent); border-color: var(--accent); color: #fff;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,160,144,.25);
}
.gs-load-more-btn i { width: 16px; height: 16px; }

/* ════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════ */
@keyframes gsSlideUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 768px) {
  .gs-guide-grid { grid-template-columns: 1fr; }
  .gs-guide-grid.list-view .gs-guide-card { flex-direction: column; }
  .gs-guide-grid.list-view .gs-card-header { width: 100%; min-height: unset; }
  .gs-profile-grid { grid-template-columns: 1fr 1fr; }
  .gs-profile-head { flex-direction: column; text-align: center; }
  .gs-toolbar { flex-direction: column; align-items: flex-start; }
  .gs-toolbar-right { width: 100%; justify-content: space-between; }
}
@media (max-width: 480px) {
  .gs-hero h1 { font-size: 30px; }
  .gs-card-stats { grid-template-columns: 1fr 1fr; }
  .gs-card-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
  .gs-card-actions-row { width: 100%; }
  .gs-card-select-btn { flex: 1; justify-content: center; }
  .gs-profile-footer { flex-direction: column; }
  .gs-profile-shortlist-btn { width: 100%; justify-content: center; }
}

