/* =========================================
   HINOJOSA'S LOCKSMITH — Full Stylesheet
   Dark / Gold Design System
   ========================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #0a0a0a;
  --bg-section:   #111111;
  --bg-alt:       #ffffff;
  --yellow:       #FFD700;
  --yellow-dark:  #E6C200;
  --text:         #ffffff;
  --text-dark:    #111111;
  --text-muted:   #aaaaaa;
  --card-bg:      #1a1a1a;
  --border:       #2a2a2a;
  --radius:       10px;
  --radius-lg:    16px;
  /* legacy aliases kept for subpages */
  --white:        #ffffff;
  --gray:         #aaaaaa;
  --gray2:        #888888;
  --cyan:         #FFD700;
  --cyan-dim:     rgba(255,215,0,0.10);
  --cyan-border:  rgba(255,215,0,0.30);
  --orange:       #FFD700;
  --card:         #1a1a1a;
  --card2:        #222222;
  --bg2:          #111111;
  --bg3:          #161616;
}

/* ============ LIGHT MODE ============ */
body.light {
  --bg:           #f2f2f2;
  --bg-section:   #e8e8e8;
  --bg-alt:       #ffffff;
  --text:         #0a0a0a;
  --text-muted:   #2e2e2e;
  --card-bg:      #ffffff;
  --border:       #cccccc;
  --white:        #0a0a0a;
  --gray:         #222222;
  --gray2:        #444444;
  --cyan:         #B8860B;
  --cyan-dim:     rgba(184,134,11,0.12);
  --cyan-border:  rgba(184,134,11,0.40);
  --card:         #ffffff;
  --card2:        #f5f5f5;
  --bg2:          #e8e8e8;
}

/* Nav in light mode — white bar, dark text */
body.light .nav {
  background: #ffffff !important;
  border-bottom: 2px solid #FFD700;
}
body.light .nav.scrolled {
  background: rgba(255,255,255,0.97) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}
body.light .nav__logo-name { color: #0a0a0a; }
body.light .nav__logo-sub  { color: #444444; }
body.light .nav__links a   { color: #111111; }
body.light .nav__links a:hover,
body.light .nav__links a.active { color: #B8860B; }
body.light .nav__theme-btn,
body.light .nav__lang-btn  { color: #111111; border-color: #cccccc; }
body.light .nav__hamburger span { background: #111111; }
body.light .nav__links.open {
  background: #ffffff;
  border-top: 1px solid #dddddd;
}

/* Hero in light mode — stronger overlay so text pops */
body.light .hero__bg {
  filter: brightness(0.35) saturate(0.4);
}
body.light .hero__overlay {
  background: linear-gradient(to right, rgba(20,20,20,0.82) 40%, rgba(20,20,20,0.30) 100%);
}

/* Cards get visible shadow to lift off background */
body.light .svc-card {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  border: 1px solid #e0e0e0;
}
body.light .svc-card__body h3 { color: #0a0a0a; }
body.light .svc-card__body p  { color: #333333; }

/* Service split white section — already has white bg, just boost text */
body.light .service-split__text p  { color: #2e2e2e; }
body.light .service-split__text h2 { color: #0a0a0a; }
body.light .service-split__list li { color: #333333; border-bottom-color: #cccccc; }

/* Feature cards + review cards */
body.light .feature-card,
body.light .review-card,
body.light .why-us__stat-card {
  background: #ffffff;
  border: 1px solid #dddddd;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
body.light .feature-card p,
body.light .review-card p { color: #333333; }

/* Cities section stays dark — intentional */
/* Trust section stays yellow — intentional */
/* Emergency CTA stays dark */
body.light .emergency-cta { background: #111111; }

/* Footer stays dark — strong contrast anchor */
body.light .footer { background: #111111; }
body.light .footer__bottom { background: #FFD700; color: #000; }

/* Process steps */
body.light .process-step { color: #0a0a0a; }
body.light .process-step p { color: #333333; }

/* FAQ */
body.light .faq-question { color: #0a0a0a; }
body.light .faq-answer   { color: #333333; }

/* Feature bar (trust strip) */
body.light .feature-card strong { color: #0a0a0a; }
body.light .feature-card span   { color: #444444; }

/* Service cards */
body.light .service-card h3 { color: #0a0a0a; }
body.light .service-card p  { color: #444444; }

/* Why Us list + stat cards */
body.light .why-us__list li    { color: #333333; }
body.light .stat-big-label     { color: #0a0a0a; }
body.light .why-us__stat-card p { color: #555555; }

/* Process steps (h3 was white) */
body.light .process-step h3 { color: #0a0a0a; }

/* Reviews */
body.light .review-card p      { color: #444444; }
body.light .review-card strong { color: #0a0a0a; }
body.light .review-card .review-loc { color: #777777; }

/* Social feed in light mode */
body.light .social-feed__col { background: #ffffff; border-color: rgba(0,0,0,0.1); }
body.light .social-feed__header {
  border-bottom-color: rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.03);
}
body.light .social-feed__header span { color: #0a0a0a; }

/* SVC cards section subtitle */
body.light .svc-cards-section .section-sub { color: #444444; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.orbitron { font-family: 'Orbitron', sans-serif; }
.cyan-text { color: var(--yellow); }
.yellow-text { color: var(--yellow); }

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-sub { color: var(--text-muted); max-width: 520px; margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
}
.btn--yellow {
  background: var(--yellow);
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255,215,0,0.25);
}
.btn--yellow:hover {
  background: var(--yellow-dark);
  box-shadow: 0 4px 28px rgba(255,215,0,0.45);
  transform: translateY(-1px);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn--outline-white:hover {
  background: #fff;
  color: #000;
}
.btn--black {
  background: #111;
  color: #fff;
  border: 1px solid #333;
}
.btn--black:hover {
  background: #222;
  transform: translateY(-1px);
}
/* legacy aliases */
.btn--orange { background: var(--yellow); color: #000; font-weight: 700; box-shadow: 0 4px 20px rgba(255,215,0,0.25); }
.btn--orange:hover { background: var(--yellow-dark); transform: translateY(-1px); }
.btn--blue { background: var(--yellow); color: #000; font-weight: 700; box-shadow: 0 4px 20px rgba(255,215,0,0.25); }
.btn--blue:hover { background: var(--yellow-dark); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--yellow); border: 1px solid var(--cyan-border); }
.btn--ghost:hover { background: var(--cyan-dim); transform: translateY(-1px); }
.btn--lg { padding: 14px 28px; font-size: 15px; }
.btn--xl { padding: 18px 40px; font-size: 16px; }

/* =============
   NAV
   ============= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s;
  background: #000;
}
.nav.scrolled {
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  height: 80px;
  gap: 20px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
/* ---- Nav logo image (replaces SVG icon) ---- */
.nav__logo-img-wrap {
  width: 48px;
  height: 48px;
  background: #FFD700;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(255,215,0,0.35);
  transition: box-shadow 0.2s;
}
.nav__logo:hover .nav__logo-img-wrap {
  box-shadow: 0 4px 18px rgba(255,215,0,0.55);
}
.nav__logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}
/* Light mode: white nav bg → logo white bg blends, keep yellow tint subtle */
body.light .nav__logo-img-wrap {
  background: #FFD700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* ---- Footer logo ---- */
.footer__logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  text-decoration: none;
}
.footer__logo-img-wrap {
  width: 80px;
  height: 80px;
  background: #FFD700;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(255,215,0,0.30);
}
.footer__logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

/* ---- Hero logo stamp ---- */
.hero__logo-stamp {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.hero__logo-ring {
  width: 140px;
  height: 140px;
  background: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-shadow: 0 0 0 6px rgba(255,215,0,0.20), 0 8px 32px rgba(255,215,0,0.40);
  animation: hero-logo-pulse 3s ease-in-out infinite;
}
.hero__logo-ring img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}
@keyframes hero-logo-pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(255,215,0,0.20), 0 8px 32px rgba(255,215,0,0.40); }
  50%       { box-shadow: 0 0 0 12px rgba(255,215,0,0.10), 0 8px 40px rgba(255,215,0,0.55); }
}

/* Legacy icon class kept for any subpage that still uses it */
.nav__logo-icon {
  width: 44px; height: 44px;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav__logo-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.06em;
}
.nav__logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: #ccc;
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--yellow); }

.nav__controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav__theme-btn,
.nav__lang-btn {
  background: transparent;
  border: 1px solid #333;
  border-radius: 8px;
  color: #aaa;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  transition: all 0.2s;
  height: 36px;
  gap: 4px;
  white-space: nowrap;
  min-width: 80px;
}
.nav__theme-btn:hover,
.nav__lang-btn:hover {
  border-color: rgba(255,215,0,0.4);
  color: var(--yellow);
}

.nav__cta { flex-shrink: 0; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============
   HERO
   ============= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  filter: brightness(0.22) saturate(0.6);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.92) 40%, rgba(0,0,0,0.25) 100%);
}
.hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}
.hero__content { max-width: 580px; flex: 1; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 24px;
}
.hero__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero__title .accent { color: var(--yellow); }
.hero__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #bbb;
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero__trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #aaa;
}
.hero__image-col {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  padding: 100px 0 0;
  background: var(--bg);
}
.breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
  padding: 20px 0;
}
.breadcrumb__inner a { color: var(--yellow); transition: opacity 0.2s; }
.breadcrumb__inner a:hover { opacity: 0.8; }
.breadcrumb__inner span { color: #666; }
.breadcrumb__sep { color: #666; opacity: 0.5; }

/* ---- SERVICE PAGE HERO ---- */
.page-hero {
  padding: 60px 0 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #050505 0%, #111 100%);
}
.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,215,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,215,0,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero__inner { position: relative; }
.page-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.page-hero__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero__sub {
  font-size: 1.05rem;
  color: #aaa;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.page-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =============
   FEATURE STRIP
   ============= */
.features {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}
.feature-card:last-child { border-right: none; }
.feature-card__icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.feature-card strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}
.feature-card span {
  font-size: 12px;
  color: #888;
}

/* === SERVICE SPLIT SECTION === */
.service-split {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 80px 0;
}
.service-split.reverse { flex-direction: row-reverse; }
.service-split__text { flex: 1; }
.service-split__text h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text);
  line-height: 1.1;
}
.service-split__text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.service-split__text strong { color: var(--text); }
.service-split__text .accent { color: var(--yellow); }
.service-split__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 24px;
  margin: 24px 0;
  padding: 0;
}
.service-split__list li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  list-style: none;
}

/* === TRUST SECTION (yellow card) === */
.trust-section {
  background: var(--yellow);
  border-radius: 24px;
  padding: 60px;
  margin: 60px 0;
}
.trust-section h2 {
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.trust-card { text-align: center; }
.trust-card__dot {
  width: 16px; height: 16px;
  background: #111;
  border-radius: 50%;
  margin: 0 auto 16px;
}
.trust-card h3 {
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.trust-card p { color: #333; font-size: 0.95rem; line-height: 1.7; }

/* === CITIES CHECKLIST === */
.cities-section { background: #2a2a2a; padding: 60px 0; }
.cities-section h2 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 36px;
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px 0;
  padding: 0;
}
.cities-grid li {
  color: #ccc;
  font-size: 0.95rem;
  list-style: none;
  padding: 4px 0;
}
.cities-grid li::before { content: '✓ '; color: var(--yellow); font-weight: 700; }

/* === SERVICE CARDS WITH BADGE === */
.svc-cards-section { background: #fff; padding: 80px 0; }
.svc-cards-section .section-title { color: var(--text-dark); }
.svc-cards-section .section-sub { color: #555; }
.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.svc-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--card-bg);
  position: relative;
  transition: transform 0.3s;
}
.svc-card:hover { transform: translateY(-4px); }
.svc-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.svc-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.svc-card:hover .svc-card__img img { transform: scale(1.05); }
.svc-card__badge {
  position: absolute;
  bottom: 16px; left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: #000;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 14px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.svc-card__badge.red { background: #e53e3e; color: #fff; }
.svc-card__body { padding: 20px; }
.svc-card__body h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.svc-card__body p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* Below cards call-to-action strip */
.cards-cta { text-align: center; padding: 0 0 40px; }
.cards-cta h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
}
.cards-cta p { color: #555; margin-bottom: 24px; font-size: 1rem; }
.cards-cta .features-pills {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cards-cta .pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f5f5f5;
  color: #222;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
}
.cards-cta .pill svg { color: var(--yellow); }

/* === CIRCLE IMAGE === */
.circle-img-wrap {
  position: relative;
  width: 400px;
  height: 400px;
  flex-shrink: 0;
}
.circle-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 50% 15%;
  background: #FFD700;
  transform: rotate(-15deg);
}
.circle-img-wrap img {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  object-fit: cover;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  z-index: 1;
}

/* =============
   SERVICES (generic card grid for subpages)
   ============= */
.services { padding: 96px 0; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: rgba(255,215,0,0.3);
  background: var(--card2);
  transform: translateY(-3px);
}
.service-card--featured {
  border-color: rgba(255,215,0,0.3);
  background: var(--card2);
}
.service-card__icon {
  width: 56px; height: 56px;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.service-card p { font-size: 13px; color: #888; line-height: 1.6; flex: 1; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
  transition: gap 0.2s;
}
.service-card__link:hover { gap: 10px; }

/* =============
   WHY US
   ============= */
.why-us {
  padding: 96px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-us__content .section-tag { display: block; margin-bottom: 12px; }
.why-us__content .section-title { text-align: left; margin-bottom: 32px; }
.why-us__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-us__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: #aaa;
}
.cy-check {
  width: 26px; height: 26px;
  flex-shrink: 0;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.why-us__stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
}
.stat-big {
  font-family: 'Orbitron', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-big-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}
.why-us__stat-card p {
  font-size: 13px;
  color: #888;
  max-width: 300px;
  margin: 0 auto;
}

/* =============
   PROCESS
   ============= */
.process { padding: 96px 0; }
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.process-step { display: flex; flex-direction: column; align-items: center; }
.process-step__circle {
  position: relative;
  width: 100px; height: 100px;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.step-num {
  position: absolute;
  top: -6px; right: -6px;
  width: 28px; height: 28px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #000;
  border: 2px solid var(--bg);
}
.process-step h3 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.process-step p { font-size: 13px; color: #888; max-width: 220px; }

/* =============
   EMERGENCY CTA
   ============= */
.emergency-cta {
  background: #0a0a0a;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 80px 0;
  text-align: center;
}
.emergency-cta__inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.emergency-icon { margin-bottom: 4px; }
.emergency-cta h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
}
.emergency-cta p { font-size: 15px; color: #aaa; }
.emergency-cta .btn-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* =============
   REVIEWS
   ============= */
.reviews {
  padding: 96px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.review-card:hover { border-color: rgba(255,215,0,0.3); transform: translateY(-2px); }
.review-stars {
  color: var(--yellow);
  font-size: 17px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.review-card p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
  flex: 1;
}
.review-card strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.review-card .review-loc {
  font-size: 12px;
  color: #666;
  font-style: normal;
  margin-top: 2px;
}

/* =============
   SERVICE AREA
   ============= */
.service-area { padding: 96px 0; }
.area-grid-wrap {
  display: flex;
  justify-content: center;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 48px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 56px;
  min-width: 500px;
}
.area-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #aaa;
  padding: 6px 0;
  transition: color 0.2s;
}
.area-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #aaa;
  transition: color 0.2s;
  width: 100%;
}
.area-item a:hover { color: var(--yellow); }

/* =============
   VEHICLE MAKES
   ============= */
.vehicles {
  padding: 96px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
}
.vehicles__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.brand-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #aaa;
  transition: all 0.25s;
  cursor: default;
}
.brand-card:hover {
  border-color: rgba(255,215,0,0.35);
  color: var(--yellow);
  background: var(--card2);
  transform: translateY(-2px);
}
.brand-card span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: #666;
  margin-top: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =============
   FAQ ACCORDION
   ============= */
.faq { padding: 80px 0; }
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(255,215,0,0.3); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  gap: 16px;
  user-select: none;
}
.faq-question:hover { color: var(--yellow); }
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--yellow);
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  font-size: 14px;
  color: #aaa;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

/* =============
   CONTENT SECTIONS
   ============= */
.content-section { padding: 80px 0; }
.content-section--alt {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.content-grid__text .section-title { text-align: left; margin-bottom: 20px; }
.content-grid__text .section-tag { display: block; margin-bottom: 10px; }
.content-grid__text p { margin-bottom: 16px; font-size: 15px; line-height: 1.75; }
.content-grid__card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
}
.feature-list li .cy-check { flex-shrink: 0; margin-top: 1px; }

/* =============
   MODAL
   ============= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 640px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: #aaa;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1;
}
.modal-close:hover { color: #fff; border-color: rgba(255,215,0,0.4); }
.modal h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.modal > p {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.form-input {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 11px 14px;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-input:focus { border-color: rgba(255,215,0,0.4); }
.form-input.error { border-color: #ef4444; }
.form-input option { background: #111; }
textarea.form-input { resize: vertical; min-height: 90px; }
.form-error {
  font-size: 12px;
  color: #ef4444;
  min-height: 16px;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 16px;
  font-size: 14px;
  color: #22c55e;
  font-weight: 500;
}

/* =============
   FOOTER
   ============= */
.footer {
  background: #000;
  border-top: 1px solid #1a1a1a;
  padding-top: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 0.8fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__brand p {
  font-size: 13px;
  color: #666;
  max-width: 280px;
  line-height: 1.65;
  margin-top: 12px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer__col a, .footer__col span {
  font-size: 13px;
  color: #666;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--yellow); }
.footer__contact a, .footer__contact span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer__contact svg { flex-shrink: 0; margin-top: 2px; }
.footer__bottom {
  background: var(--yellow);
  padding: 16px 0;
  font-size: 13px;
  color: #000;
  text-align: center;
  font-weight: 600;
}

/* =============
   SCROLL REVEAL
   ============= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* =============
   RESPONSIVE
   ============= */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:nth-child(2) { border-right: none; }
  .feature-card:nth-child(4) { border-right: none; }
  .feature-card:nth-child(3),
  .feature-card:nth-child(4) { border-top: 1px solid var(--border); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__inner { grid-template-columns: 1fr; gap: 48px; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .vehicles__grid { grid-template-columns: repeat(3, 1fr); }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .svc-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
  .service-split { gap: 48px; }
  .circle-img-wrap { width: 320px; height: 320px; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: rgba(0,0,0,0.98);
    backdrop-filter: blur(20px);
    padding: 28px;
    gap: 20px;
    border-bottom: 1px solid #222;
    z-index: 99;
  }
  .nav__controls { gap: 6px; }
  .nav__theme-btn span { display: none; }
  .nav__hamburger { display: flex; }
  .nav__inner { gap: 8px; }

  .hero { padding: 100px 0 60px; }
  .hero__inner { flex-direction: column; gap: 40px; }
  .hero__content { max-width: 100%; text-align: left; }
  .hero__title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .hero__sub { max-width: 100%; }
  .hero__overlay { background: rgba(0,0,0,0.8); }
  .hero__image-col { display: none; }

  .service-split { flex-direction: column !important; gap: 40px; padding: 48px 0; }
  .circle-img-wrap { width: 260px; height: 260px; margin: 0 auto; }
  .service-split__list { grid-template-columns: repeat(2, 1fr); }
  .trust-section { padding: 40px 24px; }
  .trust-grid { grid-template-columns: 1fr; gap: 24px; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-cards-grid { grid-template-columns: 1fr; }
  .cards-cta .features-pills { flex-direction: column; align-items: center; }

  .features__grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-card:last-child { border-bottom: none; }
  .services__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; gap: 32px; }
  .reviews__grid { grid-template-columns: 1fr; }
  .vehicles__grid { grid-template-columns: repeat(3, 1fr); }
  .area-grid { grid-template-columns: repeat(2,1fr); min-width: unset; padding: 28px 24px; gap: 12px 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .modal { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero { padding: 90px 0 48px; }
  .hero__title { font-size: 1.65rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .area-grid { grid-template-columns: 1fr; }
  .vehicles__grid { grid-template-columns: repeat(2, 1fr); }
  .emergency-cta { padding: 60px 0; }
  .emergency-cta .btn-row { flex-direction: column; align-items: center; }
  .btn--xl { padding: 16px 28px; font-size: 14px; }
  .page-hero__actions { flex-direction: column; }
  .page-hero__actions .btn { width: 100%; justify-content: center; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .service-split__list { grid-template-columns: 1fr; }
}

/* reCAPTCHA v3 badge */
.grecaptcha-badge {
  bottom: 72px !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4) !important;
  border-radius: 8px !important;
}

/* =============
   PAYMENT PAGE
   ============= */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.payment-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.payment-card:hover { transform: translateY(-4px); }
.payment-card--zelle  { border-color: rgba(111,47,239,0.25); }
.payment-card--cashapp{ border-color: rgba(0,214,80,0.25); }
.payment-card--zelle:hover  { border-color: rgba(111,47,239,0.5); }
.payment-card--cashapp:hover{ border-color: rgba(0,214,80,0.5); }
.payment-card__logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 16px 0 8px;
}
.payment-card__logo--zelle  { color: #6f2fef; }
.payment-card__logo--cashapp{ color: #00d650; }
.payment-card__logo--cash   { color: var(--yellow); }
.payment-qr {
  width: 180px; height: 180px;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin: 0 auto;
  display: block;
}
.payment-card strong { display: block; font-size: 15px; color: #fff; margin-bottom: 6px; }
.payment-card p { font-size: 13px; color: #888; }

/* =============
   SOCIAL PAGE
   ============= */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.social-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.social-card:hover { transform: translateY(-4px); }
.social-card__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.social-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.social-card p  { font-size: 13px; color: #888; margin-bottom: 16px; }
.social-card .payment-qr { width: 160px; height: 160px; }

/* =============
   THANK YOU
   ============= */
.thank-you {
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
}
.thank-you__icon {
  width: 80px; height: 80px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: #22c55e;
}

@media (max-width: 768px) {
  .payment-grid { grid-template-columns: 1fr; }
  .social-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .payment-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .payment-grid { grid-template-columns: 1fr; }
  .social-grid  { grid-template-columns: 1fr; }
}

/* ==============================
   PRINT STYLES
   ============================== */
@media print {
  .nav, .modal-overlay, .emergency-cta, .hero__actions { display: none; }
  body { background: #fff; color: #000; }
}

/* ==============================
   SOCIAL FEED SECTION
   ============================== */
.social-feed {
  background: var(--bg);
  padding: 80px 0;
  border-top: 1px solid rgba(255,215,0,0.08);
}

.social-feed__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  align-items: stretch;
}

.social-feed__col {
  background: var(--card-bg, #111);
  border: 1px solid rgba(255,215,0,0.12);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.social-feed__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
}

.social-feed__header span {
  font-size: 14px;
  font-weight: 700;
  color: var(--text, #f0f0f0);
  flex: 1;
}

.social-feed__handle {
  font-size: 12px;
  color: #FFD700;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity .2s;
}
.social-feed__handle:hover { opacity: 1; }

/* Facebook plugin wrapper — block so SDK reads correct width; fills column height */
.social-feed__fb-wrap {
  flex: 1;
  overflow: hidden;
  display: block;
  width: 100%;
}

/* Stretch the generated FB widget elements to fill the wrapper */
.social-feed__fb-wrap .fb-page,
.social-feed__fb-wrap .fb_iframe_widget,
.social-feed__fb-wrap .fb_iframe_widget span {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}
.social-feed__fb-wrap .fb_iframe_widget iframe {
  width: 100% !important;
  height: 100% !important;
}

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

/* ── CONNECT + PAY PANEL ── */
.scp-body {
  padding: 16px 16px 20px;
}
.scp-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #555;
  margin: 0 0 10px 2px;
}
.scp-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 11px 14px;
  margin-bottom: 8px;
  text-decoration: none;
  color: inherit;
  transition: border-color .18s, background .18s;
}
.scp-card:hover {
  border-color: rgba(255,215,0,0.35);
  background: rgba(255,215,0,0.04);
}
.scp-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.scp-card-text { flex: 1; min-width: 0; }
.scp-card-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text, #f0f0f0);
}
.scp-card-text em {
  display: block;
  font-size: 11px;
  color: #666;
  font-style: normal;
  margin-top: 1px;
}
.scp-arrow { color: #444; flex-shrink: 0; transition: color .18s; }
.scp-card:hover .scp-arrow,
.scp-alllinks:hover .scp-arrow { color: #FFD700; }

.scp-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 14px 0;
}

.scp-alllinks {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,215,0,0.07);
  border: 1px solid rgba(255,215,0,0.22);
  border-radius: 12px;
  padding: 13px 16px;
  text-decoration: none;
  color: #FFD700;
  font-size: 14px;
  font-weight: 700;
  transition: background .18s, border-color .18s;
}
.scp-alllinks:hover {
  background: rgba(255,215,0,0.14);
  border-color: rgba(255,215,0,0.45);
}
.scp-alllinks-text { flex: 1; }

/* Light mode overrides */
body.light .scp-card {
  background: #f5f5f5;
  border-color: #e0e0e0;
}
body.light .scp-card:hover {
  border-color: rgba(184,134,11,0.35);
  background: rgba(184,134,11,0.05);
}
body.light .scp-card-text strong { color: #0a0a0a; }
body.light .scp-card-text em { color: #888; }
body.light .scp-arrow { color: #bbb; }
body.light .scp-divider { background: rgba(0,0,0,0.08); }
body.light .scp-label { color: #999; }
body.light .scp-alllinks {
  background: rgba(184,134,11,0.07);
  border-color: rgba(184,134,11,0.3);
  color: #B8860B;
}
body.light .scp-alllinks:hover {
  background: rgba(184,134,11,0.14);
  border-color: rgba(184,134,11,0.5);
}
