/* MEXX CARS - Service Page Specific Styles */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  padding-top: 2.5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.2rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--muted);
  font-size: 0.75rem;
  margin-bottom: 0.9rem;
}

.hero-eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.3);
}

.hero-h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 0.6rem;
}

.hero-h1 span {
  background: linear-gradient(90deg, var(--accent), #ffffff);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subline {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 1rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.hero-badge {
  font-size: 0.75rem;
  padding: 0.18rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--muted);
  background: rgba(0, 0, 0, 0.5);
}

.hero-right {
  position: relative;
}

.hero-card {
  background: radial-gradient(circle at top left, rgba(17,229,254,0.3) 0, #05070b 45%, #000 100%);
  border-radius: var(--radius-xl);
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-card img {
  border-radius: 16px;
  margin-bottom: 1.2rem;
  object-fit: cover;
  width: 100%;
  max-height: 220px;
}

.hero-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.hero-card-text {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.hero-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero-card-tag {
  padding: 0.16rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin-top: 1.6rem;
}

.card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(17,229,254,0.18) 0, #05070b 40%, #000 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.card p,
.card ul {
  font-size: 0.9rem;
  color: var(--muted);
}

.card ul {
  list-style: none;
  margin-top: 0.35rem;
}

.card ul li::before {
  content: "•";
  margin-right: 0.4rem;
  color: var(--accent);
}

.faq-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.3rem;
}

.faq-item {
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.55);
  font-size: 0.9rem;
  color: var(--muted);
}

.faq-item h3 {
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.contact-box {
  margin-top: 1.8rem;
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.4rem 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-box strong {
  color: var(--text);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 2rem;
  }
  .hero-right {
    order: -1;
  }
}

@media (max-width: 600px) {
  .hero-card {
    padding: 1.1rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
}
