/*
Theme Name: Rush Passport & Visa
Version: 6.0 — Full Rewrite
*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:     #BC1F40;
  --navy:    #1F2D61;
  --navy2:   #002D62;
  --white:   #ffffff;
  --offwhite:#f4f4f4;
  --border:  #e5e5e5;
  --text:    #313131;
  --gray:    #555;
  --gray-lt: #888;
  --green:   #00b679;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.red { color: var(--red); }

/* ────────────────────────────────────
   SHARED WRAPPER
──────────────────────────────────── */
.wrap-mid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ────────────────────────────────────
   HEADER
──────────────────────────────────── */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 300;
  box-shadow: 0 1px 5px rgba(0,0,0,0.07);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 20px;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-logo img { height: 50px; width: auto; }
.header-bbb img  { height: 44px; width: auto; }

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.header-nav a {
  font-size: 13.5px;
  font-weight: 600;
  color: #333;
  padding: 8px 13px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: color 0.15s;
  position: relative;
}
.header-nav a:hover { color: var(--red); }
.header-nav a.nav-active { color: var(--red); }
.header-nav a.nav-active::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}
.nav-caret { font-size: 9px; opacity: 0.5; }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.15s;
}
.btn-header-phone:hover { background: #9a1933; }
.btn-header-login {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  border: 1px solid #ccc;
  padding: 9px 14px;
  border-radius: 4px;
  background: #fff;
  white-space: nowrap;
  transition: border-color 0.15s;
}
.btn-header-login:hover { border-color: #888; }
.btn-header-cart {
  color: var(--red);
  display: flex;
  align-items: center;
  padding: 6px;
}

/* ────────────────────────────────────
   HERO
──────────────────────────────────── */
.hero {
  background: var(--red);
  min-height: 600px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 560px 1fr;
  min-height: 600px;
  align-items: center;
}
.hero-left { padding: 60px 0; }

.hero-pretitle {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  margin-bottom: 14px;
}
.hero-pretitle strong { color: white; }

.hero-h1 {
  font-size: 72px;
  font-weight: 800;
  color: white;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

/* Buttons */
.hero-btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  max-width: 560px;
  margin-bottom: 26px;
}
.hero-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy2);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 14px;
  border-radius: 4px;
  min-height: 50px;
  transition: background 0.15s;
  gap: 6px;
}
.hero-btn:hover { background: #00204f; }
.btn-chev { font-size: 18px; font-weight: 300; opacity: 0.55; flex-shrink: 0; }

/* Trust line */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}
.hero-tp { margin-top: 4px; }
.trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  flex-shrink: 0;
  display: inline-block;
}
.trust-pipe { color: rgba(255,255,255,0.3); margin: 0 2px; }
.hero-trust strong { color: white; font-weight: 700; }

/* Hero right — girl photo */
.hero-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-girl {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  object-fit: contain;
  align-self: flex-end;
}
.hero-cloud {
  position: absolute;
  top: 30px;
  left: 10px;
  width: 120px;
  z-index: 3;
  opacity: 0.85;
}

/* ────────────────────────────────────
   COURIER STRIP
──────────────────────────────────── */
.courier-strip {
  background: var(--navy);
  padding: 11px 28px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

/* ────────────────────────────────────
   REVIEWS
──────────────────────────────────── */
.sec-reviews {
  background: white;
  padding: 36px 28px;
  border-bottom: 1px solid var(--border);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.review-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 18px 16px;
  background: white;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.review-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.review-name { font-size: 13px; font-weight: 700; color: var(--text); }
.review-date { font-size: 11px; color: var(--gray-lt); margin-top: 2px; }
.review-quote {
  font-size: 38px;
  line-height: 1;
  color: #ddd;
  font-family: Georgia, serif;
  flex-shrink: 0;
}
.review-title { font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.review-body { font-size: 12px; color: var(--gray); line-height: 1.65; flex: 1; }
.review-stars { color: var(--green); font-size: 14px; letter-spacing: 1px; margin-top: 12px; }

/* ────────────────────────────────────
   PRESS / TRUSTED SERVICES
──────────────────────────────────── */
.sec-press {
  background: var(--offwhite);
  padding: 40px 28px;
}
.press-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.press-heading {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}
.press-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 4px;
}
.press-more:hover { text-decoration: underline; }
.press-more-icon {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.press-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.press-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 18px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s;
}
.press-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.09); }
.press-logo { margin-bottom: 10px; min-height: 36px; display: flex; align-items: center; }
.press-card p { font-size: 12.5px; color: var(--gray); line-height: 1.65; flex: 1; }
.press-link { font-size: 12px; font-weight: 700; color: var(--red); }
.press-link:hover { text-decoration: underline; }

/* ────────────────────────────────────
   3 STEPS
──────────────────────────────────── */
.sec-steps {
  background: var(--offwhite);
  padding: 44px 28px;
  border-top: 1px solid var(--border);
}
.steps-heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.steps-heading strong { font-weight: 900; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step-card {
  background: white;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step-h {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}
.step-h strong { color: var(--text); }
.step-img { border-radius: 12px; overflow: hidden; }
.step-img img { width: 100%; height: auto; display: block; border-radius: 12px; }
.step-p { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* ────────────────────────────────────
   NATIONWIDE MAP
──────────────────────────────────── */
.sec-map {
  position: relative;
  padding: 60px 28px;
  overflow: hidden;
  background: white;
  border-top: 1px solid var(--border);
}
.map-bg {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.18;
  pointer-events: none;
}
.map-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.map-heading {
  font-size: 32px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.map-heading strong { font-weight: 800; }
.map-list {
  list-style: none;
  columns: 2;
  column-gap: 24px;
}
.map-list li {
  margin-bottom: 10px;
  break-inside: avoid;
  display: flex;
  align-items: center;
  gap: 6px;
}
.map-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  display: block;
}
.map-list a {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  transition: color 0.15s;
}
.map-list a:hover { color: var(--red); }
.map-etc {
  font-size: 13px;
  color: var(--gray-lt);
  margin-top: 12px;
  font-style: italic;
}

/* ────────────────────────────────────
   INFO SECTION
──────────────────────────────────── */
.sec-info {
  background: white;
  padding: 36px 28px;
  border-top: 1px solid var(--border);
}
.info-banner {
  background: var(--navy);
  border-radius: 12px;
  padding: 26px 30px;
  margin-bottom: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.info-banner strong { color: white; }
.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.info-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.info-card p  { font-size: 13px; color: var(--gray); line-height: 1.75; }
.info-card strong { color: var(--text); }

/* ────────────────────────────────────
   FOOTER
──────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 48px 28px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

/* Brand col */
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.foot-call-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.foot-phone {
  font-size: 24px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  display: block;
  line-height: 1;
}
.foot-phone:hover { color: rgba(255,255,255,0.8); }

/* Social */
.foot-social { display: flex; gap: 9px; margin-top: 4px; }
.soc-btn {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}
.soc-btn:hover { background: #9a1933; }

/* Footer lists */
.foot-list {
  list-style: decimal;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-list a {
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  transition: color 0.15s;
}
.foot-list a:hover { color: white; }

/* Info col */
.footer-info { display: flex; flex-direction: column; gap: 14px; }
.foot-hours-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.foot-hours {
  font-size: 12.5px;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
}
.foot-accept-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.foot-payments { display: flex; gap: 6px; flex-wrap: wrap; }
.pay-chip {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  font-size: 9.5px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.15);
  letter-spacing: 0.05em;
}

/* ────────────────────────────────────
   LEGAL BAR
──────────────────────────────────── */
.legal-bar {
  background: white;
  border-top: 1px solid #ddd;
  padding: 11px 28px;
}
.legal-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.legal-copy { font-size: 12px; color: #666; }
.legal-badges { display: flex; gap: 8px; }
.legal-badge {
  font-size: 11px;
  color: #666;
  border: 1px solid #ccc;
  padding: 3px 8px;
  border-radius: 3px;
}
.legal-links { display: flex; gap: 14px; flex-wrap: wrap; }
.legal-links a { font-size: 12px; color: #666; }
.legal-links a:hover { color: #333; text-decoration: underline; }

/* ────────────────────────────────────
   MOBILE STICKY
──────────────────────────────────── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: #111;
  border-top: 3px solid var(--red);
  padding: 10px 16px;
}
.mobile-bar-inner { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.mob-call { flex: 2; background: var(--red); color: white; font-weight: 700; font-size: 13px; padding: 14px; border-radius: 6px; text-align: center; }
.mob-chat { flex: 1; background: rgba(255,255,255,0.1); color: white; font-weight: 600; font-size: 13px; padding: 14px; border-radius: 6px; text-align: center; border: 1px solid rgba(255,255,255,0.2); }

/* ────────────────────────────────────
   RESPONSIVE
──────────────────────────────────── */
@media (max-width: 1100px) {
  .header-nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .press-cards, .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .mobile-bar { display: block; }
  body { padding-bottom: 70px; }
  .map-inner { grid-template-columns: 1fr; gap: 32px; }
  .map-list { columns: 2; }
}
@media (max-width: 768px) {
  .header-inner { padding: 0 16px; min-height: 60px; }
  .header-bbb { display: none; }
  .btn-header-login { display: none; }
  .btn-header-phone { font-size: 12px; padding: 9px 12px; }
  .hero-inner { padding: 0 16px; }
  .hero-left { padding: 36px 0; }
  .hero-h1 { font-size: 46px; }
  .hero-btns { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .press-cards { grid-template-columns: 1fr 1fr; }
  .steps-grid, .info-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .legal-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .sec-reviews, .sec-press, .sec-steps, .sec-info { padding: 32px 16px; }
}
@media (max-width: 480px) {
  .hero-h1 { font-size: 38px; }
  .hero-btns { grid-template-columns: 1fr; max-width: 100%; }
  .press-cards { grid-template-columns: 1fr; }
}
