/* ============================================================
   HoteliersClub v2 — Components
   ============================================================ */

/* ── Card ──────────────────────────────────────────────── */
.card {
  background: var(--hc-surface);
  border: 1px solid var(--hc-border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.card:hover { box-shadow: var(--hc-shadow-md); }
.card-sm   { padding: 16px; border-radius: var(--radius-md); }
.card-flat { box-shadow: none; }
.card-featured { border-left: 4px solid var(--hc-primary); }
.card-accent   { border-left: 4px solid var(--hc-accent); }
.card-dark { background: var(--hc-dark-card); border-color: var(--hc-dark-border); color: #fff; }
.card-hover { cursor: pointer; }
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--hc-shadow-lg); }

/* ── Job Card ──────────────────────────────────────────── */
.job-card {
  background: var(--hc-surface);
  border: 1px solid var(--hc-border-light);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  display: block; text-decoration: none; color: inherit;
}
.job-card:hover {
  border-color: var(--hc-primary);
  box-shadow: var(--hc-shadow-md);
  transform: translateY(-2px);
}
.job-card-header  { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 12px; }
.job-card-logo    {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--hc-primary-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: var(--hc-primary);
  flex-shrink: 0; border: 1px solid var(--hc-border-light);
  font-family: 'Playfair Display', serif;
  overflow: hidden;
}
.job-card-logo img { width: 100%; height: 100%; object-fit: cover; }
.job-card-info { flex: 1; min-width: 0; }
.job-card-title   { font-size: 16px; font-weight: 700; color: var(--hc-text); line-height: 1.3; margin-bottom: 3px; }
.job-card-company { font-size: 13px; font-weight: 600; color: var(--hc-primary); }
.job-card-meta    { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }
.job-card-meta-item { display: flex; align-items: center; gap: 4px; font-size: 13px; color: var(--hc-text-muted); }
.job-card-tags    { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.job-card-footer  {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border-top: 1px solid var(--hc-border-light); padding-top: 14px; margin-top: 4px;
}
.job-card-salary  { font-size: 15px; font-weight: 700; color: var(--hc-primary); font-family: 'DM Mono', monospace; }
.job-card-actions { display: flex; gap: 8px; }
.save-btn {
  width: 32px; height: 32px; border-radius: var(--radius-md);
  border: 1.5px solid var(--hc-border); background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px; transition: all var(--dur) var(--ease);
  color: var(--hc-text-muted);
}
.save-btn:hover, .save-btn.saved { color: var(--hc-accent); border-color: var(--hc-accent); background: var(--hc-accent-pale); }

/* ── Company / Hotel Card ──────────────────────────────── */
.hotel-card {
  background: var(--hc-surface);
  border: 1px solid var(--hc-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
  cursor: pointer; display: block; text-decoration: none; color: inherit;
}
.hotel-card:hover { transform: translateY(-4px); box-shadow: var(--hc-shadow-lg); border-color: var(--hc-primary); }
.hotel-card-banner {
  height: 80px;
  background: linear-gradient(135deg, var(--hc-primary) 0%, var(--hc-primary-light) 100%);
  position: relative; display: flex; align-items: flex-end; padding: 12px 16px;
}
.hotel-card-logo {
  width: 56px; height: 56px; border-radius: 10px;
  background: var(--hc-surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; color: var(--hc-primary);
  border: 2px solid white; box-shadow: var(--hc-shadow-sm);
  position: absolute; bottom: -24px; left: 16px;
  font-family: 'Playfair Display', serif;
}
.hotel-card-body { padding: 36px 16px 20px; }
.hotel-card-name  { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.hotel-card-chain { font-size: 13px; color: var(--hc-text-muted); margin-bottom: 10px; }
.hotel-card-meta  { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; align-items: center; }
.hotel-card-desc  { font-size: 13px; color: var(--hc-text-secondary); line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hotel-card-footer { padding: 12px 16px; border-top: 1px solid var(--hc-border-light);
  display: flex; align-items: center; justify-content: space-between; }
.hotel-jobs-count  { font-size: 13px; font-weight: 600; color: var(--hc-accent); }

/* ── Institute Card ────────────────────────────────────── */
.institute-card {
  background: var(--hc-surface);
  border: 1px solid var(--hc-border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--dur) var(--ease);
  cursor: pointer; display: block; text-decoration: none; color: inherit;
}
.institute-card:hover { transform: translateY(-3px); box-shadow: var(--hc-shadow-md); border-color: var(--hc-primary); }
.institute-card-header { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
.institute-initials {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--hc-accent-pale) 0%, var(--hc-accent-pale) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--hc-accent-dark);
  border: 1.5px solid rgba(232,144,10,0.2); flex-shrink: 0; text-align: center; line-height: 1.2;
}

/* ── Avatar ────────────────────────────────────────────── */
.avatar {
  border-radius: 50%; overflow: hidden; display: inline-flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif;
}
.avatar-xs  { width: 28px; height: 28px; font-size: 11px; }
.avatar-sm  { width: 36px; height: 36px; font-size: 13px; }
.avatar-md  { width: 48px; height: 48px; font-size: 16px; }
.avatar-lg  { width: 64px; height: 64px; font-size: 20px; }
.avatar-xl  { width: 96px; height: 96px; font-size: 28px; }
.avatar-emerald { background: var(--hc-primary-pale); color: var(--hc-primary); }
.avatar-saffron { background: var(--hc-accent-pale); color: var(--hc-accent-dark); }
.avatar-dark    { background: var(--hc-dark); color: #fff; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ── Trust Ring (candidate score) ──────────────────────── */
.trust-ring-wrap { position: relative; display: inline-flex; align-items: center; justify-content: center; }
.trust-ring {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: conic-gradient(var(--hc-primary) var(--pct, 0%), var(--hc-bg-alt) 0%);
  display: flex; align-items: center; justify-content: center;
}
.trust-ring-inner {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--hc-surface);
  display: flex; align-items: center; justify-content: center;
}
.trust-score {
  font-family: 'DM Mono', monospace;
  font-size: 14px; font-weight: 500; color: var(--hc-primary);
}

/* ── Stat Card ─────────────────────────────────────────── */
.stat-card {
  background: var(--hc-surface);
  border: 1px solid var(--hc-border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px; text-align: center;
}
.stat-value {
  font-family: 'DM Mono', monospace;
  font-size: 42px; font-weight: 500;
  color: var(--hc-primary); line-height: 1;
  margin-bottom: 8px;
}
.stat-value.accent { color: var(--hc-accent); }
.stat-label { font-size: 14px; color: var(--hc-text-muted); font-weight: 500; }

/* Hero stat (on dark bg) */
.hero-stat { text-align: center; }
.hero-stat-value {
  font-family: 'DM Mono', monospace;
  font-size: 44px; font-weight: 500;
  color: #fff; line-height: 1; display: block; margin-bottom: 6px;
}
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500; }

/* ── Trust Strip Items ─────────────────────────────────── */
.trust-item { text-align: center; padding: 28px 20px; }
.trust-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--hc-primary-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 16px;
  transition: transform var(--dur) var(--ease);
}
.trust-item:hover .trust-icon { transform: scale(1.1); }
.trust-item-title  { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--hc-text); }
.trust-item-desc   { font-size: 14px; color: var(--hc-text-muted); line-height: 1.6; }

/* ── Search Bar ────────────────────────────────────────── */
.search-bar {
  display: flex; align-items: center;
  background: var(--hc-surface);
  border: 1.5px solid var(--hc-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--hc-shadow-md);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.search-bar:focus-within { border-color: var(--hc-primary); box-shadow: 0 0 0 4px rgba(26,107,74,0.1); }
.search-input-wrap { flex: 1; display: flex; align-items: center; gap: 10px; padding: 0 20px; }
.search-input {
  flex: 1; border: none; background: transparent;
  font-size: 15px; font-family: inherit; color: var(--hc-text);
  padding: 16px 0; outline: none;
}
.search-input::placeholder { color: var(--hc-text-faint); }
.search-divider { width: 1px; height: 28px; background: var(--hc-border); flex-shrink: 0; }
.search-select { flex: 1; border: none; background: transparent; font-size: 15px; font-family: inherit; color: var(--hc-text); padding: 16px 12px; outline: none; cursor: pointer; max-width: 180px; }
.search-btn {
  margin: 6px; padding: 12px 28px; flex-shrink: 0;
  border-radius: calc(var(--radius-xl) - 4px);
  background: var(--hc-primary); color: #fff;
  border: none; font-size: 15px; font-weight: 600; cursor: pointer;
  transition: background var(--dur) var(--ease);
  font-family: inherit;
}
.search-btn:hover { background: var(--hc-primary-dark); }
@media (max-width: 640px) {
  .search-bar { flex-direction: column; border-radius: var(--radius-lg); align-items: stretch; }
  .search-divider { width: 100%; height: 1px; }
  .search-select { max-width: 100%; }
  .search-btn { margin: 0; border-radius: 0 0 var(--radius-lg) var(--radius-lg); padding: 14px; }
}

/* ── Tabs ───────────────────────────────────────────────── */
.tabs { display: flex; border-bottom: 2px solid var(--hc-border-light); gap: 0; }
.tab-btn {
  padding: 12px 24px; font-size: 15px; font-weight: 600;
  color: var(--hc-text-muted); border: none; background: none;
  cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: all var(--dur) var(--ease); font-family: inherit; white-space: nowrap;
}
.tab-btn:hover { color: var(--hc-text); }
.tab-btn.active { color: var(--hc-primary); border-bottom-color: var(--hc-primary); }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── Marquee ───────────────────────────────────────────── */
.marquee-wrap { overflow: hidden; width: 100%; }
.marquee-track {
  display: flex; gap: 40px; align-items: center;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  font-size: 15px; font-weight: 600; color: var(--hc-text-secondary);
  padding: 10px 20px; border-radius: var(--radius-full);
  background: var(--hc-bg-alt); border: 1px solid var(--hc-border-light);
  transition: all var(--dur) var(--ease); cursor: default;
}
.marquee-item:hover { color: var(--hc-primary); border-color: var(--hc-primary); background: var(--hc-primary-pale); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Modal ─────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(11,48,40,0.55);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  animation: fadeIn var(--dur-fast) var(--ease);
}
.modal {
  background: var(--hc-surface);
  border-radius: var(--radius-xl);
  width: 100%; max-width: 480px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--hc-shadow-xl);
  animation: modalIn 0.25s var(--ease-out);
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--hc-border-light);
}
.modal-title   { font-size: 20px; font-weight: 700; }
.modal-close   {
  width: 32px; height: 32px; border-radius: var(--radius-md);
  border: none; background: var(--hc-bg-alt);
  cursor: pointer; font-size: 18px; color: var(--hc-text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur) var(--ease);
}
.modal-close:hover { background: var(--hc-error-pale); color: var(--hc-error); }
.modal-body   { padding: 24px; }
.modal-footer { padding: 16px 24px; border-top: 1px solid var(--hc-border-light);
  display: flex; gap: 10px; justify-content: flex-end; }
@keyframes modalIn { from { opacity: 0; transform: scale(0.95) translateY(8px); } to { opacity: 1; transform: none; } }

/* ── Notification Bell / Dropdown ──────────────────────── */
.notif-bell-wrap { position: relative; }
.notif-bell {
  width: 38px; height: 38px; border-radius: var(--radius-md);
  border: 1.5px solid var(--hc-border); background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px; color: var(--hc-text-secondary);
  position: relative; transition: all var(--dur) var(--ease);
}
.notif-bell:hover { color: var(--hc-primary); border-color: var(--hc-primary); background: var(--hc-primary-pale); }
.notif-dot {
  position: absolute; top: -3px; right: -3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--hc-accent); color: #fff;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}
.notif-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  width: 360px; background: var(--hc-surface);
  border: 1px solid var(--hc-border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--hc-shadow-xl); z-index: 300;
  overflow: hidden;
  animation: fadeInDown 0.2s var(--ease);
}
.notif-dropdown-header { padding: 14px 16px; border-bottom: 1px solid var(--hc-border-light); display: flex; align-items: center; justify-content: space-between; }
.notif-dropdown-title { font-size: 15px; font-weight: 700; }
.notif-item { display: flex; gap: 12px; padding: 14px 16px; transition: background var(--dur) var(--ease); cursor: pointer; }
.notif-item:hover { background: var(--hc-primary-pale); }
.notif-item.unread { border-left: 3px solid var(--hc-accent); }
.notif-item-content { flex: 1; min-width: 0; }
.notif-item-title { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.notif-item-body  { font-size: 13px; color: var(--hc-text-muted); }
.notif-item-time  { font-size: 12px; color: var(--hc-text-faint); margin-top: 4px; }
.notif-empty { padding: 32px 16px; text-align: center; color: var(--hc-text-muted); font-size: 14px; }

/* ── Pagination ───────────────────────────────────────── */
.pagination { display: flex; gap: 6px; align-items: center; justify-content: center; margin-top: 40px; }
.page-btn {
  min-width: 36px; height: 36px; padding: 0 10px;
  border: 1.5px solid var(--hc-border);
  border-radius: var(--radius-md); background: var(--hc-surface);
  font-size: 14px; font-weight: 500; color: var(--hc-text-secondary);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all var(--dur) var(--ease); font-family: inherit;
}
.page-btn:hover { border-color: var(--hc-primary); color: var(--hc-primary); background: var(--hc-primary-pale); }
.page-btn.active { background: var(--hc-primary); border-color: var(--hc-primary); color: #fff; }

/* ── Alert / Message ──────────────────────────────────── */
.alert { display: flex; gap: 12px; padding: 14px 16px; border-radius: var(--radius-md); font-size: 14px; border-left: 4px solid; }
.alert-success { background: var(--hc-success-pale); border-color: var(--hc-success); color: var(--hc-primary-dark); }
.alert-error   { background: var(--hc-error-pale); border-color: var(--hc-error); color: #9B1C1C; }
.alert-warning { background: var(--hc-warning-pale); border-color: var(--hc-warning); color: var(--hc-accent-dark); }
.alert-info    { background: var(--hc-info-pale); border-color: var(--hc-info); color: #1E3A5F; }

/* ── Empty State ──────────────────────────────────────── */
.empty-state { text-align: center; padding: 64px 24px; }
.empty-icon  { font-size: 48px; margin-bottom: 16px; }
.empty-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.empty-desc  { font-size: 14px; color: var(--hc-text-muted); max-width: 320px; margin: 0 auto 24px; }

/* ── Profile Completion Meter ─────────────────────────── */
.profile-meter { margin-bottom: 24px; }
.profile-meter-bar-wrap { height: 8px; background: var(--hc-bg-alt); border-radius: var(--radius-full); overflow: hidden; }
.profile-meter-bar { height: 100%; background: linear-gradient(90deg, var(--hc-primary) 0%, var(--hc-accent) 100%); border-radius: var(--radius-full); transition: width 0.5s var(--ease); }
.profile-meter-label { display: flex; justify-content: space-between; margin-bottom: 8px; }
.profile-meter-pct { font-family: 'DM Mono', monospace; font-size: 13px; font-weight: 500; color: var(--hc-primary); }

/* ── Salary Table ─────────────────────────────────────── */
.salary-table { width: 100%; border-collapse: collapse; }
.salary-table th { background: var(--hc-primary); color: #fff; padding: 12px 16px; text-align: left; font-size: 13px; font-weight: 600; }
.salary-table th:first-child { border-radius: 10px 0 0 0; }
.salary-table th:last-child  { border-radius: 0 10px 0 0; }
.salary-table td { padding: 12px 16px; font-size: 14px; border-bottom: 1px solid var(--hc-border-light); }
.salary-table tr:last-child td { border-bottom: none; }
.salary-table tr:nth-child(even) td { background: var(--hc-bg-alt); }
.salary-inr { font-family: 'DM Mono', monospace; font-weight: 500; }

/* ── Section Label ─────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--hc-accent);
  margin-bottom: 12px;
}
.section-eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--hc-accent); border-radius: 2px; }

/* ── Step Card (how it works) ─────────────────────────── */
.step-card { display: flex; gap: 20px; align-items: flex-start; }
.step-number {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--hc-primary); color: #fff;
  font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-family: 'DM Mono', monospace;
}
.step-content { flex: 1; }
.step-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step-desc { font-size: 14px; color: var(--hc-text-muted); line-height: 1.6; }

/* ── Resource Card ────────────────────────────────────── */
.resource-card {
  background: var(--hc-surface);
  border: 1px solid var(--hc-border-light);
  border-radius: var(--radius-lg);
  padding: 24px; display: flex; flex-direction: column;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
}
.resource-card:hover { transform: translateY(-3px); box-shadow: var(--hc-shadow-md); border-color: var(--hc-primary); }
.resource-card-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; flex: 1; }
.resource-card-desc { font-size: 14px; color: var(--hc-text-muted); line-height: 1.6; margin-bottom: 16px; }
.resource-card-meta { display: flex; gap: 8px; align-items: center; margin-top: auto; }
.read-time { font-size: 12px; color: var(--hc-text-faint); font-weight: 500; }

/* ── Event Card ───────────────────────────────────────── */
.event-card { display: flex; gap: 16px; padding: 20px; border-radius: var(--radius-lg); border: 1px solid var(--hc-border-light); background: var(--hc-surface); }
.event-date { background: var(--hc-primary); color: #fff; border-radius: var(--radius-md); padding: 10px 14px; text-align: center; flex-shrink: 0; min-width: 60px; }
.event-date-month { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.event-date-day   { font-size: 28px; font-weight: 700; line-height: 1; font-family: 'DM Mono', monospace; }
.event-content { flex: 1; }
.event-title  { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.event-org    { font-size: 13px; color: var(--hc-text-muted); margin-bottom: 6px; }
.event-loc    { display: flex; gap: 6px; align-items: center; font-size: 13px; color: var(--hc-text-muted); }

/* ── Progress bar ─────────────────────────────────────── */
.progress { height: 6px; background: var(--hc-bg-alt); border-radius: var(--radius-full); overflow: hidden; }
.progress-bar { height: 100%; border-radius: var(--radius-full); background: var(--hc-primary); transition: width 0.4s var(--ease); }
.progress-bar.accent { background: var(--hc-accent); }

/* ── News Card ────────────────────────────────────────── */
.news-card {
  background: var(--hc-surface);
  border: 1px solid var(--hc-border-light);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--dur) var(--ease); cursor: pointer;
  display: block; text-decoration: none; color: inherit;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--hc-shadow-md); }
.news-card-img { height: 160px; background: linear-gradient(135deg, var(--hc-primary-pale) 0%, var(--hc-bg-alt) 100%); position: relative; display: flex; align-items: center; justify-content: center; font-size: 40px; }
.news-card-body { padding: 20px; }
.news-card-source { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--hc-accent); margin-bottom: 8px; }
.news-card-title { font-size: 16px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
.news-card-summary { font-size: 14px; color: var(--hc-text-muted); line-height: 1.55; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-card-date { font-size: 12px; color: var(--hc-text-faint); }

/* ── Testimonial ──────────────────────────────────────── */
.testimonial-card {
  background: var(--hc-surface);
  border: 1px solid var(--hc-border-light);
  border-radius: var(--radius-xl); padding: 32px;
}
.testimonial-quote { font-size: 40px; color: var(--hc-accent); line-height: 1; margin-bottom: 12px; font-family: 'Playfair Display', serif; }
.testimonial-text  { font-size: 16px; line-height: 1.7; color: var(--hc-text-secondary); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; gap: 12px; align-items: center; }
.testimonial-author-info { flex: 1; }
.testimonial-name { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.testimonial-role { font-size: 13px; color: var(--hc-text-muted); }

/* ── Alerts ─────────────────────────────────────────────────────────── */
.alert {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 14px 18px; border-radius: var(--radius-md);
  font-size: 14px; line-height: 1.6; border: 1px solid transparent;
}
.alert > span:first-child { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.alert-info    { background: rgba(26,107,74,0.08); border-color: rgba(26,107,74,0.25); color: var(--hc-text); }
.alert-success { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.3); color: #065f46; }
.alert-warning { background: rgba(232,144,10,0.1); border-color: rgba(232,144,10,0.35); color: #92400e; }
.alert-error   { background: rgba(220,38,38,0.07); border-color: rgba(220,38,38,0.25); color: #991b1b; }

/* ── Legal page prose ───────────────────────────────────────────────── */
.container-sm { max-width: 780px; }
.legal-body p { margin-bottom: 12px; }
.legal-body ul { margin: 8px 0 16px 20px; }
.legal-body li { margin-bottom: 6px; }
.divider { border: none; border-top: 1px solid var(--hc-border-light); margin: 16px 0; }

/* ── Resource card ──────────────────────────────────────────────────── */
.resource-card {
  background: var(--hc-surface); border: 1px solid var(--hc-border-light);
  border-radius: var(--radius-xl); padding: 24px;
  display: flex; flex-direction: column; transition: box-shadow 0.2s;
}
.resource-card:hover { box-shadow: var(--hc-shadow-lg); }
.resource-card-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--hc-text); }
.resource-card-desc  { font-size: 14px; color: var(--hc-text-secondary); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.resource-card-meta  { display: flex; align-items: center; gap: 8px; border-top: 1px solid var(--hc-border-light); padding-top: 12px; }
.read-time { font-size: 12px; color: var(--hc-text-muted); }

/* ── Event card ─────────────────────────────────────────────────────── */
.event-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--hc-surface); border: 1px solid var(--hc-border-light);
  border-radius: var(--radius-xl); padding: 20px;
  transition: box-shadow 0.2s;
}
.event-card:hover { box-shadow: var(--hc-shadow-md); }
.event-date {
  background: var(--hc-primary); color: #fff;
  border-radius: var(--radius-md); padding: 12px 14px;
  text-align: center; flex-shrink: 0; min-width: 64px;
}
.event-date-month { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; }
.event-date-day   { font-size: 26px; font-weight: 800; font-family: 'DM Mono', monospace; line-height: 1.1; }
.event-content { flex: 1; }
.event-title  { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--hc-text); }
.event-org    { font-size: 13px; color: var(--hc-primary); font-weight: 600; margin-bottom: 4px; }
.event-loc    { font-size: 13px; color: var(--hc-text-muted); }

/* ── Salary table ───────────────────────────────────────────────────── */
.salary-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.salary-table th {
  background: var(--hc-primary); color: #fff; padding: 12px 16px;
  text-align: left; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
}
.salary-table td { padding: 12px 16px; border-bottom: 1px solid var(--hc-border-light); }
.salary-table tr:hover td { background: rgba(26,107,74,0.04); }
.salary-inr { font-family: 'DM Mono', monospace; font-size: 13px; color: var(--hc-primary); font-weight: 600; }

/* ── Tab content ────────────────────────────────────────────────────── */
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── Step cards ─────────────────────────────────────────────────────── */
.step-card { display: flex; gap: 16px; align-items: flex-start; }
.step-number {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--hc-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; flex-shrink: 0;
  font-family: 'DM Mono', monospace;
}
.step-content { flex: 1; }
.step-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step-desc  { font-size: 14px; color: var(--hc-text-secondary); line-height: 1.6; }

/* ── Pagination ─────────────────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; align-items: center; gap: 4px; margin-top: 40px; }
.page-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  border: 1px solid var(--hc-border); background: var(--hc-surface);
  font-size: 13px; cursor: pointer; transition: all 0.15s; color: var(--hc-text);
}
.page-btn.active { background: var(--hc-primary); color: #fff; border-color: var(--hc-primary); }
.page-btn:hover:not(.active) { background: var(--hc-bg-hover); border-color: var(--hc-primary); }

/* ── Institute card ─────────────────────────────────────────────────── */
.institute-card {
  background: var(--hc-surface); border: 1px solid var(--hc-border-light);
  border-radius: var(--radius-xl); padding: 24px;
  display: flex; flex-direction: column; gap: 0;
  text-decoration: none; color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
.institute-card:hover { box-shadow: var(--hc-shadow-lg); transform: translateY(-2px); }
.institute-card-header { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
.institute-initials {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: rgba(232,144,10,0.12); color: var(--hc-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; text-align: center; line-height: 1.2;
  flex-shrink: 0; font-family: 'DM Mono', monospace;
}
.tag {
  display: inline-flex; align-items: center;
  background: rgba(26,107,74,0.08); color: var(--hc-primary);
  border-radius: var(--radius-sm); padding: 3px 9px;
  font-size: 12px; font-weight: 500;
}

/* ── Hotel card ─────────────────────────────────────────────────────── */
.hotel-card {
  background: var(--hc-surface); border: 1px solid var(--hc-border-light);
  border-radius: var(--radius-xl); overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
.hotel-card:hover { box-shadow: var(--hc-shadow-lg); transform: translateY(-3px); }
.hotel-card-banner {
  height: 80px; background: linear-gradient(135deg, var(--hc-dark) 0%, var(--hc-primary) 100%);
  display: flex; align-items: flex-end; padding: 12px 16px; position: relative;
}
.hotel-card-logo {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--hc-accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; position: absolute;
  bottom: -20px; left: 16px; border: 3px solid #fff; box-shadow: var(--hc-shadow-md);
}
.hotel-card-body { padding: 28px 16px 16px; flex: 1; }
.hotel-card-name  { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.hotel-card-chain { font-size: 13px; color: var(--hc-primary); margin-bottom: 10px; font-weight: 500; }
.hotel-card-meta  { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-bottom: 10px; }
.hotel-card-desc  { font-size: 13px; color: var(--hc-text-secondary); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.hotel-card-footer { padding: 12px 16px; border-top: 1px solid var(--hc-border-light); display: flex; justify-content: space-between; align-items: center; }
.hotel-jobs-count { font-size: 13px; color: var(--hc-text-muted); font-weight: 500; }

/* ── Filter sidebar ─────────────────────────────────────────────────── */
.jobs-layout { display: flex; gap: 24px; align-items: flex-start; }
.filter-sidebar { width: 260px; flex-shrink: 0; position: sticky; top: 80px; }
.jobs-main { flex: 1; min-width: 0; }
.filter-group { margin-bottom: 20px; border-bottom: 1px solid var(--hc-border-light); padding-bottom: 20px; }
.filter-group:last-child { border-bottom: none; }
.filter-group-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--hc-text-muted); margin-bottom: 10px; }
.filter-options { display: flex; flex-direction: column; gap: 6px; max-height: 220px; overflow-y: auto; }
.filter-option { display: flex; gap: 8px; align-items: center; font-size: 13px; cursor: pointer; }
.filter-option input { accent-color: var(--hc-primary); }
@media (max-width: 768px) {
  .jobs-layout { flex-direction: column; }
  .filter-sidebar { width: 100%; position: static; }
}

/* ── Marquee ────────────────────────────────────────────────────────── */
.marquee-wrap { overflow: hidden; }
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  padding: 10px 28px; font-size: 14px; font-weight: 600;
  color: var(--hc-text-secondary); white-space: nowrap;
  border-right: 1px solid var(--hc-border-light);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Nav ────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,243,236,0.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hc-border-light);
  transition: box-shadow 0.2s;
}
.nav.scrolled { box-shadow: var(--hc-shadow-md); }
.nav-inner { display: flex; align-items: center; gap: 32px; padding: 14px 0; }
.nav-logo {
  font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700;
  color: var(--hc-primary); text-decoration: none; flex-shrink: 0;
  letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-link {
  padding: 7px 12px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; color: var(--hc-text-secondary);
  text-decoration: none; transition: all 0.15s;
}
.nav-link:hover { color: var(--hc-primary); background: rgba(26,107,74,0.07); }
.nav-link.active { color: var(--hc-primary); font-weight: 600; }
.nav-actions { margin-left: auto; display: flex; gap: 8px; align-items: center; }
.nav-user {
  display: flex; gap: 8px; align-items: center; text-decoration: none;
  padding: 6px 10px; border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.nav-user:hover { background: rgba(26,107,74,0.07); }
.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-mobile-toggle span { width: 22px; height: 2px; background: var(--hc-text); border-radius: 2px; display: block; transition: 0.2s; }
.mobile-nav { display: flex; flex-direction: column; gap: 4px; padding: 12px 0 16px; border-top: 1px solid var(--hc-border-light); }
.mobile-nav[hidden] { display: none; }
.mobile-nav-link { padding: 10px 0; font-size: 15px; font-weight: 500; color: var(--hc-text-secondary); text-decoration: none; }
.mobile-nav-actions { display: flex; gap: 8px; margin-top: 12px; }
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-mobile-toggle { display: flex; margin-left: auto; }
}

/* ── Footer ─────────────────────────────────────────────────────────── */
.footer { background: var(--hc-dark); color: rgba(255,255,255,0.65); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #fff; text-decoration: none; display: block; margin-bottom: 12px; }
.footer-tagline { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 280px; }
.footer-col-title { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; color: var(--hc-accent-light); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.15s; }
.footer-link:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.15s; }
.footer-legal a:hover { color: rgba(255,255,255,0.8); }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
