/* ============================================================
   RidePickup v1 — Global Stylesheet
   洛杉矶机场接送 & 旅游包车
   ============================================================ */

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

:root {
  --bg:       #06101e;
  --bg2:      #091828;
  --card:     #0e1f38;
  --border:   rgba(100,150,220,.10);
  --border2:  rgba(100,150,220,.20);
  --gold:     #c8a25c;
  --gold2:    #dbb96e;
  --gold-dim: rgba(200,162,92,.13);
  --text:     #dde8ff;
  --text2:    #bdd0f0;
  --muted:    #6a8ab8;
  --muted2:   #3d5a85;
  --r:        10px;
  --r2:       18px;
  --ease:     .22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: "PingFang SC","Hiragino Sans GB","Microsoft YaHei",
               "Noto Sans SC",-apple-system,BlinkMacSystemFont,sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; object-fit: cover; }

/* ---- Layout ---- */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

/* ---- Typography ---- */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(26px,4vw,44px);
  font-weight: 700;
  letter-spacing: -.5px;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.8;
}
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--ease);
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: #06101e; }
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,162,92,.28); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border2); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: 10px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(6,16,30,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 18px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
  flex: 0 0 auto;
}
.nav-logo-mark {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 18px; height: 18px; stroke: #06101e; fill: none; stroke-width: 2; }
.nav-logo-img {
  height: 52px;
  width: auto;
  max-height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.nav-logo-text {
  display: inline-flex;
  align-items: center;
}

@media (max-width: 860px) {
  .nav-inner {
    height: 64px;
    gap: 12px;
  }
  .nav-logo {
    gap: 10px;
    font-size: 16px;
  }
  .nav-logo-img {
    height: 52px;
    max-height: 52px;
  }
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  list-style: none;
  flex: 1 1 auto;
  min-width: 0;
}
.nav-links a {
  display: block;
  padding: 8px 13px;
  border-radius: 7px;
  font-size: 14px;
  color: var(--muted);
  transition: var(--ease);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); background: rgba(255,255,255,.05); }
.nav-right { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  padding: 6px;
  cursor: pointer;
  border-radius: 6px;
}
.nav-toggle:hover { background: rgba(255,255,255,.06); }
.nav-sp { height: 74px; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(8,20,40,.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    gap: 2px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 16px; font-size: 15px; }
  .nav-right .btn { display: none; }
  .nav-sp { height: 64px; }
}

/* ============================================================
   HERO — Homepage
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 1000px 700px at 70% 40%, rgba(60,120,255,.09), transparent 60%),
    radial-gradient(ellipse 600px 500px at 20% 75%, rgba(200,162,92,.07), transparent 60%),
    var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(100,150,220,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,150,220,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 130px 0 100px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  background: var(--gold-dim);
  border: 1px solid rgba(200,162,92,.22);
  font-size: 12px;
  color: var(--gold2);
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-badge svg { width: 14px; height: 14px; stroke: var(--gold2); fill: none; stroke-width: 2; }
h1 {
  font-size: clamp(36px,6vw,68px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.08;
  margin-bottom: 22px;
}
h1 .g { color: var(--gold); }
.hero-sub {
  font-size: clamp(15px,2vw,18px);
  color: var(--muted);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stat h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -1px;
}
.hero-stat p { font-size: 13px; color: var(--muted); margin-top: 3px; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 20px;
  margin-top: 48px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  cursor: pointer;
  display: block;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover {
  border-color: var(--border2);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.service-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--gold-dim);
  border: 1px solid rgba(200,162,92,.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.svc-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.7; }
.service-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 22px; }
.svc-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--ease);
}
.service-card:hover .svc-link { gap: 10px; }
.svc-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ============================================================
   FEATURES / WHY US
   ============================================================ */
.features { background: var(--bg2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 32px;
  margin-top: 48px;
}
.feat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feat-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--gold-dim);
  border: 1px solid rgba(200,162,92,.18);
  display: flex; align-items: center; justify-content: center;
}
.feat-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.7; }
.feat-text h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.feat-text p { font-size: 13px; color: var(--muted); line-height: 1.75; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 22px;
  margin-top: 48px;
}
.step {
  text-align: center;
  padding: 36px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  transition: border-color var(--ease);
}
.step:hover { border-color: var(--border2); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: #06101e;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 18px;
}
.step h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.step p { font-size: 13px; color: var(--muted); line-height: 1.75; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--bg2); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 22px;
  margin-top: 48px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 28px;
  transition: border-color var(--ease);
}
.review-card:hover { border-color: var(--border2); }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars svg { width: 15px; height: 15px; fill: var(--gold); stroke: none; }
.review-card blockquote {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: normal;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(200,162,92,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.reviewer-info h5 { font-size: 13px; font-weight: 600; }
.reviewer-info span { font-size: 12px; color: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  margin-top: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  gap: 16px;
  transition: color var(--ease);
  user-select: none;
}
.faq-q:hover { color: var(--gold); }
.faq-q svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  stroke: var(--muted);
  fill: none;
  stroke-width: 2;
  transition: transform .25s ease, stroke var(--ease);
}
.faq-item.open .faq-q svg { transform: rotate(180deg); stroke: var(--gold); }
.faq-item.open .faq-q { color: var(--gold); }
.faq-a {
  display: none;
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.faq-item.open .faq-a { display: block; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 68px 48px;
  text-align: center;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 50% 100%, rgba(200,162,92,.07), transparent);
  pointer-events: none;
}
.cta-box h2 {
  font-size: clamp(24px,3.5vw,42px);
  font-weight: 700;
  letter-spacing: -.5px;
  margin-bottom: 14px;
  position: relative;
}
.cta-box p {
  font-size: 15px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.8;
  position: relative;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3,1fr);
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1;
}
.footer-logo-img {
  height: 52px;
  width: auto;
  max-height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.footer-brand-text {
  display: inline-flex;
  align-items: center;
}
.footer-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 230px;
  margin-bottom: 22px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  transition: color var(--ease);
}
.footer-contact-item:hover { color: var(--gold); }
.footer-contact-item svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted2);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 13px;
  color: var(--muted);
  transition: color var(--ease);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted2);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   PAGE HERO (subpages)
   ============================================================ */
.page-hero {
  padding: 120px 0 72px;
  background:
    radial-gradient(ellipse 700px 500px at 80% 50%, rgba(64,130,255,.07), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--muted2); }
.page-hero h1 {
  font-size: clamp(28px,4.5vw,54px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero .sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ============================================================
   INFO BOXES
   ============================================================ */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 48px;
}
.info-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 28px;
}
.info-box h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.info-box h3 svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.check-list { list-style: none; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 10px;
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold-dim) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8a25c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
  border: 1px solid rgba(200,162,92,.2);
  margin-top: 2px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  margin-top: 48px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 14px;
  transition: border-color var(--ease);
}
.contact-method:hover { border-color: var(--border2); }
.cm-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cm-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.contact-method h4 { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.contact-method p { font-size: 13px; color: var(--muted); }
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 36px;
}
.contact-form h3 { font-size: 18px; font-weight: 600; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text2);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  transition: border-color var(--ease);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--bg2); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted2); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  section { padding: 60px 0; }
  .hero-inner { padding: 110px 0 80px; }
  .hero-stats { gap: 28px; }
  .footer-brand-name { gap: 9px; }
  .footer-logo-img {
    height: 52px;
    max-height: 52px;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 44px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 100px 0 56px; }
}
