/* Voyagr — Experience Catalog Styles */

.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-link { font-size: 0.9rem; font-weight: 500; color: var(--ink); text-decoration: none; padding: 6px 0; }
.nav-link:hover { color: var(--accent); }
.nav-link.active { color: var(--accent); font-weight: 600; }

/* Catalog Hero */
.cat-hero {
  max-width: 1200px; margin: 0 auto;
  padding: 72px 40px 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.cat-hero-content { }
.cat-hero h1 {
  font-size: 2.75rem; font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.1; margin-bottom: 16px;
}
.cat-hero-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.7; margin-bottom: 28px; max-width: 480px; }
.cat-stats { display: flex; gap: 32px; }
.cat-stat { display: flex; flex-direction: column; }
.cat-stat .val { font-size: 1.5rem; font-weight: 800; color: var(--ink); }
.cat-stat .lbl { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }
.cat-hero-img { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.cat-hero-img img { width: 100%; height: 320px; object-fit: cover; display: block; }

/* Category Filter Bar */
.cat-filter-bar {
  position: sticky; top: 65px; z-index: 90;
  background: rgba(250,249,246,0.95); backdrop-filter: blur(8px);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 16px 40px;
  display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none;
}
.cat-filter-bar::-webkit-scrollbar { display: none; }
.cat-filter {
  background: transparent; border: 1.5px solid var(--border);
  border-radius: 40px; padding: 7px 18px;
  font-size: 0.875rem; font-weight: 500; font-family: inherit;
  color: var(--muted); cursor: pointer; white-space: nowrap;
  transition: border-color .15s, color .15s, background .15s;
}
.cat-filter:hover { border-color: var(--accent); color: var(--accent); }
.cat-filter.active { background: var(--accent); border-color: var(--accent); color: #fff; }

.cat-filter-sep {
  width: 1px; height: 28px;
  background: var(--border); flex-shrink: 0; margin: auto 4px;
}

.cat-filter-select {
  background: transparent; border: 1.5px solid var(--border);
  border-radius: 40px; padding: 7px 18px;
  font-size: 0.875rem; font-weight: 500; font-family: inherit;
  color: var(--muted); cursor: pointer; white-space: nowrap;
  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 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 32px;
  transition: border-color .15s, color .15s;
  flex-shrink: 0;
}
.cat-filter-select:hover { border-color: var(--accent); color: var(--ink); }
.cat-filter-select:focus { outline: none; border-color: var(--accent); }
.cat-filter-select option { background: var(--surface); color: var(--ink); }

/* Catalog Grid */
.cat-grid-section { max-width: 1200px; margin: 0 auto; padding: 48px 40px 80px; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* Experience Card */
.exp-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.exp-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.1); }

.exp-card-img { position: relative; height: 200px; overflow: hidden; background: #eee; }
.exp-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.exp-card:hover .exp-card-img img { transform: scale(1.03); }

.exp-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 20px; text-transform: uppercase;
}
.exp-category {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
  color: #fff; font-size: 0.72rem; font-weight: 500;
  padding: 4px 10px; border-radius: 20px;
}

.exp-card-body { padding: 20px; }
.exp-name { font-size: 1rem; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.exp-short-desc { font-size: 0.825rem; color: var(--muted); margin-bottom: 14px; line-height: 1.55; }

.exp-meta { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.exp-meta-row { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; color: var(--muted); }
.exp-meta-icon { font-size: 0.85rem; }

.exp-highlights { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.exp-highlight-chip {
  background: var(--accent-lt); border: 1px solid #b8d9c9;
  color: var(--accent); font-size: 0.72rem; font-weight: 500;
  padding: 3px 9px; border-radius: 20px;
}

.exp-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.exp-price { display: flex; align-items: baseline; gap: 4px; }
.exp-price-val { font-size: 1.25rem; font-weight: 800; color: var(--ink); }
.exp-price-label { font-size: 0.75rem; color: var(--muted); }

.exp-book-btn {
  background: var(--accent); color: #fff;
  padding: 9px 20px; border-radius: 40px;
  font-size: 0.875rem; font-weight: 600;
  border: none; cursor: pointer; font-family: inherit;
  transition: opacity .15s;
}
.exp-book-btn:hover { opacity: 0.85; }

/* Inquiry Modal */
.inquiry-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.inquiry-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(4px);
}
.inquiry-modal-content {
  position: relative; z-index: 1;
  background: var(--surface); border-radius: 20px;
  padding: 36px; max-width: 540px; width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
  max-height: 90vh; overflow-y: auto;
}
.inquiry-modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; font-size: 1.2rem;
  cursor: pointer; color: var(--muted); padding: 4px;
  border-radius: 8px; transition: background .15s;
}
.inquiry-modal-close:hover { background: var(--bg); color: var(--ink); }

.inquiry-header { margin-bottom: 24px; }
.inquiry-exp-name { font-size: 1.35rem; font-weight: 800; margin-bottom: 6px; }
.inquiry-sub { font-size: 0.875rem; color: var(--muted); }

.inquiry-form { display: flex; flex-direction: column; gap: 14px; }
.inq-row { display: flex; gap: 12px; }
.inq-field { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.inq-field label { font-size: 0.8rem; font-weight: 600; color: var(--ink); }
.inq-field input, .inq-field select, .inq-field textarea {
  padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 0.9rem; font-family: inherit;
  background: var(--surface); color: var(--ink); outline: none;
  transition: border-color .15s; resize: vertical;
}
.inq-field input:focus, .inq-field select:focus, .inq-field textarea:focus { border-color: var(--accent); }
.inq-field input::placeholder, .inq-field textarea::placeholder { color: #aaa; }
.inq-field textarea { min-height: 80px; }

.inq-submit {
  background: var(--accent); color: #fff;
  padding: 14px 28px; border-radius: 10px;
  font-size: 1rem; font-weight: 700; border: none;
  cursor: pointer; font-family: inherit; width: 100%;
  transition: opacity .15s; margin-top: 4px;
}
.inq-submit:hover { opacity: 0.88; }
.inq-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Responsive */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .cat-hero { grid-template-columns: 1fr; padding: 40px 20px 32px; gap: 24px; }
  .cat-hero h1 { font-size: 2rem; }
  .cat-hero-img { order: -1; }
  .cat-hero-img img { height: 220px; }
  .cat-filter-bar { padding: 12px 20px; }
  .cat-grid-section { padding: 32px 20px 60px; }
  .cat-grid { grid-template-columns: 1fr; }
  .inq-row { flex-direction: column; }
  .inquiry-modal-content { padding: 24px; }
}