/* ==================================================
   LSCI — pages.css
   Styles shared across all inner pages
   ================================================== */

/* ── PAGE HERO ─────────────────────────────────────── */
.page-hero {
  background: #0f0f14;
  padding: 100px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: var(--nav-h);
}

[data-theme="dark"] .page-hero {
  background: #000000;
}

.page-hero::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.page-hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(242, 101, 34, 0.14);
  border: 1px solid rgba(242, 101, 34, 0.3);
  padding: 5px 16px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.page-hero-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 820px;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}

.page-hero-subtitle {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.page-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── INNER PAGE LAYOUT ─────────────────────────────── */
.inner-page {
  padding-top: var(--nav-h);
}

.page-section {
  padding: 80px 40px;
}

.page-section-alt {
  background: var(--bg-alt);
}

.page-section-dark {
  background: #0f0f14;
}

.page-section-orange {
  background: var(--orange);
}

.page-max {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── SHARED CARD ───────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.12);
}

/* ── NAV ACTIVE STATE ──────────────────────────────── */
.nav-link.active {
  color: var(--orange);
}

/* ============================================================
   AUTH PAGE
   ============================================================ */
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: var(--nav-h);
}

.auth-brand {
  background: #0f0f14;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}

.auth-brand::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242, 101, 34, 0.18) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
  pointer-events: none;
}

.auth-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.auth-brand-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.auth-brand-logo-icon svg {
  width: 26px;
  height: 26px;
}

.auth-brand-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.auth-brand-logo-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.auth-brand-logo-sub {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.auth-brand-heading {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.auth-brand-quote {
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 360px;
}

.auth-brand-quote cite {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  font-style: normal;
  margin-top: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.auth-form-panel {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
  overflow-y: auto;
}

.auth-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 36px;
}

.auth-tab {
  flex: 1;
  padding: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color var(--ease), border-color var(--ease);
}

.auth-tab.active {
  color: var(--orange);
  border-color: var(--orange);
}

.auth-form {
  display: none;
  flex-direction: column;
  gap: 18px;
  max-width: 420px;
}

.auth-form.active {
  display: flex;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-h);
}

.form-input {
  height: 46px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0 16px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text-h);
  background: var(--bg-alt);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.form-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.auth-submit {
  height: 50px;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  border-radius: var(--r-sm);
  transition: background var(--ease), transform var(--ease);
  margin-top: 4px;
}

.auth-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.auth-divider {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  position: relative;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: var(--border);
}

.auth-divider::before {
  left: 0;
}

.auth-divider::after {
  right: 0;
}

.google-btn {
  height: 50px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
  color: var(--text-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background var(--ease), box-shadow var(--ease);
}

.google-btn:hover {
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.google-btn svg {
  flex-shrink: 0;
}

.auth-footer-note {
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
}

.auth-footer-note a {
  color: var(--orange);
  font-weight: 600;
}

.auth-error {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: 13.5px;
  color: #dc2626;
  display: none;
}

.auth-error.visible {
  display: block;
}

.auth-success {
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.3);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: 13.5px;
  color: #16a34a;
  display: none;
}

.auth-success.visible {
  display: block;
}

/* ============================================================
   GIVE PAGE
   ============================================================ */
.give-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.give-method-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 44px 32px;
  text-align: center;
  cursor: pointer;
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color var(--ease);
}

.give-method-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.give-method-icon {
  width: 72px;
  height: 72px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
}

.give-method-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-h);
  margin-bottom: 12px;
}

.give-method-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 24px;
}

.give-method-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
}

.give-impact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.give-impact-num {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--orange);
  display: block;
  margin-bottom: 6px;
}

.give-impact-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.give-faq {
  max-width: 720px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.faq-q {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-h);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background var(--ease);
  user-select: none;
}

.faq-q:hover {
  background: var(--bg-alt);
}

.faq-q-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-size: 18px;
  color: var(--text-muted);
}

.faq-item.open .faq-q-icon {
  transform: rotate(45deg);
  color: var(--orange);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.72;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

/* ============================================================
   CELL GROUPS PAGE
   ============================================================ */
.cg-search-bar {
  max-width: 680px;
  margin: 0 auto 28px;
  position: relative;
}

.cg-search-bar input {
  width: 100%;
  height: 54px;
  border: 2px solid var(--border);
  border-radius: 999px;
  padding: 0 20px 0 56px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--text-h);
  background: var(--bg-card);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.cg-search-bar input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-glow);
}

.cg-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 20px;
  height: 20px;
}

.cg-search-clear {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--text-muted);
  font-size: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--ease);
}

.cg-search-clear:hover {
  background: var(--surface-2);
}

.cg-search-clear.visible {
  display: flex;
}

.cg-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-chip {
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  color: var(--text-muted);
  background: var(--bg-card);
  cursor: pointer;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}

.filter-chip:hover,
.filter-chip.active {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(242, 101, 34, 0.06);
}

.cg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 26px;
  text-align: left;
  cursor: pointer;
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cg-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.cg-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cg-card-type {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(242, 101, 34, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
}

.cg-card-day {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--surface);
  padding: 4px 10px;
  border-radius: 999px;
}

.cg-card-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-h);
  margin-bottom: 8px;
}

.cg-card-leader-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.cg-card-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.cg-card-leader {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
}

.cg-card-location {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 18px;
}

.cg-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.cg-card-meta-item {
  font-size: 12.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.cg-join-btn {
  width: 100%;
  height: 42px;
  background: var(--text-h);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--r-sm);
  transition: background var(--ease);
}

.cg-join-btn:hover {
  background: var(--orange);
}

.cg-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  display: none;
}

.cg-no-results.visible {
  display: block;
}

.cg-no-results p {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ============================================================
   SERVE PAGE
   ============================================================ */
.serve-teams {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.serve-team-card {
  background: var(--bg-card);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.serve-team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.serve-team-top {
  padding: 32px 28px 24px;
  background: var(--bg-alt);
  font-size: 36px;
  line-height: 1;
  border-bottom: 1px solid var(--border);
}

.serve-team-body {
  padding: 24px 28px 28px;
}

.serve-team-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-h);
  margin-bottom: 10px;
}

.serve-team-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.serve-team-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--orange);
}

.serve-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
}

.serve-step {
  text-align: center;
}

.serve-step-num {
  width: 56px;
  height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 20px;
}

.serve-step-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-h);
  margin-bottom: 10px;
}

.serve-step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.serve-signup-form {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.serve-signup-form .full-col {
  grid-column: 1 / -1;
}

.serve-select {
  height: 46px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0 16px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text-h);
  background: var(--bg-alt);
  outline: none;
  transition: border-color var(--ease);
  width: 100%;
  cursor: pointer;
}

.serve-select:focus {
  border-color: var(--orange);
}

/* ============================================================
   EVENTS PAGE
   ============================================================ */
.events-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}

.event-tab {
  padding: 9px 22px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--font);
  color: var(--text-muted);
  background: var(--bg-card);
  cursor: pointer;
  transition: all var(--ease);
}

.event-tab.active,
.event-tab:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(242, 101, 34, 0.06);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.event-card.hidden {
  display: none;
}

.event-card-top {
  padding: 24px 26px 20px;
  background: linear-gradient(135deg, #0f0f14, #1a1a24);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.event-date-badge {
  background: var(--orange);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  text-align: center;
  flex-shrink: 0;
  min-width: 52px;
}

.event-date-day {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: block;
}

.event-date-month {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

.event-card-type {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.event-card-title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}

.event-card-body {
  padding: 22px 26px 24px;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.event-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.event-meta-row svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--orange);
}

.event-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.event-card-actions {
  display: flex;
  gap: 10px;
}

.event-register-btn {
  flex: 1;
  height: 40px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 700;
  border-radius: var(--r-sm);
  transition: background var(--ease);
}

.event-register-btn:hover {
  background: var(--orange-dark);
}

.event-cal-btn {
  height: 40px;
  padding: 0 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: border-color var(--ease), color var(--ease);
}

.event-cal-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-mission-quote {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  font-style: italic;
  color: var(--text-h);
  line-height: 1.5;
  border-left: 4px solid var(--orange);
  padding-left: 28px;
  margin-bottom: 24px;
}

.about-mission-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

.about-mission-visual {
  background: linear-gradient(135deg, #0f0f14 0%, #1a1a24 100%);
  border-radius: var(--r-lg);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-mission-visual::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(242, 101, 34, 0.2) 0%, transparent 70%);
  top: -80px;
  right: -80px;
}

.about-mission-visual-icon {
  font-size: 72px;
  margin-bottom: 24px;
}

.about-mission-visual-title {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.about-mission-visual-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 260px;
}

.about-pastor {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.about-pastor-img {
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, #1a3a6b 0%, #0a1e40 100%);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  overflow: hidden;
}

.about-pastor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
}

.about-pastor-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.about-pastor-name {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--text-h);
  margin-bottom: 8px;
  line-height: 1.1;
}

.about-pastor-title {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 500;
}

.about-pastor-bio p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: var(--max-w);
  margin: 52px auto 0;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px 24px;
  text-align: center;
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.value-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-h);
  margin-bottom: 8px;
}

.value-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.timeline {
  max-width: 680px;
  margin: 52px auto 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 36px;
}

.timeline-year {
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  text-align: right;
  padding-top: 4px;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  margin: 4px auto 0;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--orange);
}

.timeline-text h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-h);
  margin-bottom: 4px;
}

.timeline-text p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   e-LSCI STREAMING PAGE
   ============================================================ */
.elive-hero {
  background: #000;
  padding: 24px 0 0;
  margin-top: var(--nav-h);
}

.elive-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.elive-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e62323;
  padding: 5px 14px 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: livePulse 1.4s ease-in-out infinite;
}


@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.55;
    transform: scale(0.75)
  }
}

.elive-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
  height: calc(100vh - var(--nav-h) - 48px);
  min-height: 480px;
}

.elive-player {
  background: #000;
  position: relative;
}

.elive-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.elive-sidebar {
  background: #111;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #222;
}

.elive-sidebar-head {
  padding: 16px 20px;
  border-bottom: 1px solid #222;
}

.elive-sidebar-head h3 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.elive-sidebar-head p {
  font-size: 12px;
  color: #888;
  margin-top: 3px;
}

.elive-chat-frame {
  flex: 1;
  border: 0;
  background: #000;
}

.elive-sidebar-cta {
  padding: 16px 20px;
  border-top: 1px solid #222;
}

.elive-sidebar-cta a {
  display: block;
  text-align: center;
  padding: 11px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 700;
  transition: background var(--ease);
}

.elive-sidebar-cta a:hover {
  background: var(--orange-dark);
}

.elive-info {
  background: #0a0a0a;
  padding: 28px 24px;
  border-top: 1px solid #1a1a1a;
}

.elive-info-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.elive-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.elive-meta {
  font-size: 13px;
  color: #666;
}

.elive-actions {
  display: flex;
  gap: 10px;
}

.elive-action-btn {
  padding: 10px 22px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 700;
  font-family: var(--font);
  transition: all var(--ease);
}

.elive-action-btn.primary {
  background: var(--orange);
  color: #fff;
}

.elive-action-btn.primary:hover {
  background: var(--orange-dark);
}

.elive-action-btn.outline {
  border: 1.5px solid #333;
  color: #ccc;
}

.elive-action-btn.outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.elive-schedule {
  background: #080808;
  padding: 60px 24px;
}

.elive-schedule-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.elive-schedule-title {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.elive-schedule-sub {
  font-size: 14px;
  color: #666;
  margin-bottom: 36px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.schedule-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: var(--r-md);
  padding: 24px;
}

.schedule-card-day {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.schedule-card-name {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.schedule-card-time {
  font-size: 13px;
  color: #888;
}

.sermons-section {
  background: var(--bg);
  padding: 72px 24px;
}

.sermons-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sermons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.sermon-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sermon-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.sermon-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #111;
  overflow: hidden;
}

.sermon-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sermon-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  transition: background var(--ease);
}

.sermon-card:hover .sermon-play {
  background: rgba(0, 0, 0, 0.55);
}

.sermon-play-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sermon-play-icon svg {
  width: 18px;
  height: 18px;
  color: #fff;
  margin-left: 3px;
}

.sermon-body {
  padding: 18px 18px 20px;
}

.sermon-date {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.sermon-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-h);
  line-height: 1.35;
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS — INNER PAGES
   ============================================================ */
@media(max-width:1100px) {
  .give-methods {
    grid-template-columns: 1fr 1fr;
  }

  .give-impact {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sermons-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-pastor {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .about-pastor-img {
    aspect-ratio: 16/7;
  }

  .elive-layout {
    grid-template-columns: 1fr;
    height: auto;
  }

  .elive-sidebar {
    height: 360px;
    border-left: none;
    border-top: 1px solid #222;
  }
}

@media(max-width:900px) {
  .auth-page {
    grid-template-columns: 1fr;
  }

  .auth-brand {
    display: none;
  }

  .cg-grid {
    grid-template-columns: 1fr 1fr;
  }

  .serve-teams {
    grid-template-columns: 1fr 1fr;
  }

  .serve-steps {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-mission {
    grid-template-columns: 1fr;
  }

  .schedule-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sermons-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:640px) {
  .page-hero {
    padding: 80px 20px 60px;
  }

  .page-section {
    padding: 56px 20px;
  }

  .cg-grid {
    grid-template-columns: 1fr;
  }

  .serve-teams {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .give-methods {
    grid-template-columns: 1fr;
  }

  .give-impact {
    grid-template-columns: 1fr 1fr;
  }

  .serve-signup-form {
    grid-template-columns: 1fr;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .sermons-grid {
    grid-template-columns: 1fr 1fr;
  }

  .auth-form-panel {
    padding: 40px 24px;
  }

  .elive-info-inner {
    grid-template-columns: 1fr;
  }

  .elive-actions {
    flex-wrap: wrap;
  }
}


/* ============================================================
   MEMBER DASHBOARD
   ============================================================ */
.dashboard-page {
  min-height: 100vh;
  background: var(--bg-alt);
  padding-top: var(--nav-h);
}

.dashboard-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 24px 60px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: start;
}

.db-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.db-profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-align: center;
}

.db-profile-banner {
  height: 80px;
  background: linear-gradient(135deg, #0f0f14, #1a3a6b);
  position: relative;
}

.db-profile-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(242, 101, 34, 0.3) 0%, transparent 60%);
}

.db-avatar-wrap {
  display: flex;
  justify-content: center;
  margin-top: -36px;
  position: relative;
  z-index: 1;
}

.db-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
}

.db-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.db-avatar-edit {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 50%;
}

.db-avatar:hover .db-avatar-edit {
  display: flex;
}

.db-profile-info {
  padding: 14px 20px 28px;
}

.db-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-h);
  margin-bottom: 4px;
}

.db-email {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.db-member-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(242, 101, 34, 0.1);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.db-lifting center {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.db-nav {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.db-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  border-left: 3px solid transparent;
  border-bottom: 1px solid var(--border);
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  user-select: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: var(--font);
}

.db-nav-item:last-child {
  border-bottom: none;
}

.db-nav-item.active {
  border-left-color: var(--orange);
  color: var(--orange);
  background: rgba(242, 101, 34, 0.05);
}

.db-nav-item:hover:not(.active) {
  background: var(--bg-alt);
  color: var(--text-h);
}

.db-nav-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.db-nav-badge {
  margin-left: auto;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 999px;
}

.db-tab-panel {
  display: none;
}

.db-tab-panel.active {
  display: block;
}

.db-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.db-section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-h);
}

.db-section-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 2px;
}

.db-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.db-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 20px;
  text-align: center;
}

.db-stat-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.db-stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--orange);
  display: block;
  margin-bottom: 4px;
}

.db-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.db-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 20px;
}

.db-card-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.db-card-head h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-h);
}

.db-card-body {
  padding: 24px;
}

.profile-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.profile-form .full {
  grid-column: 1/-1;
}

.profile-form textarea {
  width: 100%;
  min-height: 90px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text-h);
  background: var(--bg-alt);
  outline: none;
  resize: vertical;
  transition: border-color var(--ease);
}

.profile-form textarea:focus {
  border-color: var(--orange);
}

.profile-save-btn {
  padding: 12px 28px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--r-sm);
  transition: background var(--ease), transform var(--ease);
}

.profile-save-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.my-cg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 26px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  margin-bottom: 16px;
  will-change: transform;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s;
}

.my-cg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.my-cg-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1a3a6b, #0a1e40);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.my-cg-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-h);
  margin-bottom: 4px;
}

.my-cg-meta {
  font-size: 13px;
  color: var(--text-muted);
}

.my-cg-status {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  white-space: nowrap;
}

.status-pending {
  background: rgba(234, 179, 8, .12);
  color: #ca8a04;
}

.status-approved {
  background: rgba(22, 163, 74, .12);
  color: #16a34a;
}

.status-rejected {
  background: rgba(220, 38, 38, .12);
  color: #dc2626;
}

.my-event-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.my-event-row:last-child {
  border-bottom: none;
}

.my-event-date-badge {
  background: var(--orange);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  text-align: center;
  flex-shrink: 0;
  min-width: 50px;
}

.my-event-day {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: block;
}

.my-event-mon {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, .8);
  text-transform: uppercase;
  letter-spacing: .1em;
  display: block;
}

.my-event-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 4px;
}

.my-event-meta {
  font-size: 12.5px;
  color: var(--text-muted);
}

.my-event-cancel {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--font);
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color var(--ease), color var(--ease);
}

.my-event-cancel:hover {
  border-color: #dc2626;
  color: #dc2626;
}

.db-empty {
  text-align: center;
  padding: 48px 20px;
  color: var(--text-muted);
}

.db-empty-icon {
  font-size: 48px;
  margin-bottom: 14px;
}

.db-empty p {
  font-size: 15px;
  margin-bottom: 18px;
}

.danger-zone {
  border: 1px solid rgba(220, 38, 38, .3);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.danger-zone p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 480px;
}

.danger-zone strong {
  color: var(--text-h);
}

.danger-btn {
  padding: 10px 22px;
  background: rgba(220, 38, 38, .1);
  border: 1.5px solid rgba(220, 38, 38, .4);
  color: #dc2626;
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 700;
  transition: background var(--ease);
  flex-shrink: 0;
}

.danger-btn:hover {
  background: rgba(220, 38, 38, .18);
}

@media(max-width:900px) {
  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .db-sidebar {
    position: static;
  }

  .profile-form {
    grid-template-columns: 1fr;
  }

  .profile-form .full {
    grid-column: 1;
  }
}

@media(max-width:640px) {
  .db-stat-row {
    grid-template-columns: 1fr 1fr;
  }

  .my-cg-card {
    grid-template-columns: 1fr;
  }

  .my-event-cancel {
    margin-left: 0;
  }
}

/* ============================================================
   ROLE SELECTION CARDS (Dashboard)
   ============================================================ */
.role-card {
  background: var(--bg-alt);
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 14px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease), transform 0.2s ease;
}

.role-card:hover {
  border-color: var(--orange);
  background: rgba(242, 101, 34, 0.04);
  transform: translateY(-2px);
}

.role-card.active {
  border-color: var(--orange);
  background: rgba(242, 101, 34, 0.08);
}

.role-card-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

.role-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 4px;
}

.role-card-desc {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   LIFTING CENTERS PAGE
   ============================================================ */
.lc-search-wrap {
  max-width: 720px;
  margin: 0 auto 36px;
}

.lc-search-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 10px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: 12px 16px;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.lc-search-row:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-glow);
}

.lc-search-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.lc-search-field label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lc-search-field input {
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-h);
  outline: none;
  padding: 0;
}

.lc-search-field input::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.lc-search-btn {
  background: var(--orange);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--r-sm);
  padding: 10px 20px;
  transition: background var(--ease), transform var(--ease);
  white-space: nowrap;
  align-self: center;
}

.lc-search-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.lc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lc-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.lc-card-image {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #1a1a22 0%, #2a1810 50%, #1a0f08 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.lc-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(242, 101, 34, 0.25) 0%, transparent 65%);
}

.lc-card-image-icon {
  font-size: 52px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.lc-card-flag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
}

.lc-card-body {
  padding: 22px 22px 24px;
}

.lc-card-country {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(242, 101, 34, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 10px;
}

.lc-card-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-h);
  margin-bottom: 6px;
  line-height: 1.3;
}

.lc-card-city {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.lc-card-service {
  font-size: 12.5px;
  color: var(--text-muted);
  background: var(--surface);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  margin-top: 12px;
  line-height: 1.5;
}

.lc-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  display: none;
}

.lc-no-results.visible {
  display: block;
}

@media (max-width: 900px) {
  .lc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lc-search-row {
    grid-template-columns: 1fr 1fr;
  }

  .lc-search-btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .lc-grid {
    grid-template-columns: 1fr;
  }

  .lc-search-row {
    grid-template-columns: 1fr;
  }
}