
/* PetsInCarWrecks.com - simple responsive site, Texas-focused */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #0f172a;
  background: #f3f4f6;
}

a {
  text-decoration: none;
}

header {
  background: #0f172a;
  color: #e5e7eb;
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  z-index: 20;
}

.navbar {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.logo span {
  color: #fb923c;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: #e5e7eb;
}

.nav-links a:hover {
  color: #facc15;
}

.hero {
  background: radial-gradient(circle at top left, #fed7aa, #0f172a);
  color: #f9fafb;
  padding: 3.5rem 1rem 3rem;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.5rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #f97316;
  background: #0b1220aa;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.badge span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.hero p {
  max-width: 32rem;
  color: #e5e7eb;
  margin-bottom: 1rem;
}

.hero-highlight {
  font-weight: 500;
  color: #fed7aa;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.btn-primary,
.btn-outline {
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-primary {
  background: #fb923c;
  border-color: #fb923c;
  color: #0f172a;
  font-weight: 600;
}

.btn-primary:hover {
  background: #fdba74;
}

.btn-outline {
  border-color: #e5e7eb;
  color: #e5e7eb;
  background: transparent;
}

.btn-outline:hover {
  background: #0b1120;
}

.hero-card {
  background: #0b1120cc;
  border-radius: 1rem;
  border: 1px solid #1f2937;
  padding: 1.5rem;
}

.hero-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.hero-card p {
  font-size: 0.9rem;
  color: #d1d5db;
}

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

.hero-card li {
  font-size: 0.85rem;
  color: #e5e7eb;
  margin-bottom: 0.35rem;
  padding-left: 1rem;
  position: relative;
}

.hero-card li::before {
  content: "•";
  position: absolute;
  left: 0.2rem;
  color: #fb923c;
}

.hero-card small {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1rem 3.5rem;
}

.section {
  margin-bottom: 2.75rem;
}

.section-header {
  margin-bottom: 1.25rem;
}

.section-header h1,
.section-header h2 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #4b5563;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 18px -14px rgba(15, 23, 42, 0.45);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.card p {
  font-size: 0.92rem;
  color: #4b5563;
}

.card small {
  font-size: 0.78rem;
  color: #6b7280;
}

.badge-soft {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  background: #fffbeb;
  color: #92400e;
  margin-bottom: 0.4rem;
}

.list {
  list-style: none;
}

.list li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.list li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: #fb923c;
}

.callout {
  border-radius: 0.85rem;
  padding: 1rem 1.1rem;
  background: #fffbeb;
  border: 1px solid #facc15;
  font-size: 0.9rem;
  color: #713f12;
}

.faq-item {
  margin-bottom: 1.25rem;
}

.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.faq-item p {
  font-size: 0.9rem;
  color: #4b5563;
}

form {
  display: grid;
  gap: 0.85rem;
}

label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #374151;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 0.55rem;
  border: 1px solid #d1d5db;
  font: inherit;
  background: #ffffff;
}

textarea {
  min-height: 120px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #fb923c;
  box-shadow: 0 0 0 1px #fb923c33;
}

footer {
  background: #0b1120;
  color: #9ca3af;
  padding: 1.4rem 1rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-inner a {
  color: #e5e7eb;
}

.footer-inner a:hover {
  color: #facc15;
}

@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  header {
    position: static;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    font-size: 0.85rem;
  }
  .grid-3,
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero {
    padding-top: 2.5rem;
  }
}
