/* Sell My Gas Stations — shared stylesheet */
/* Upload to: css/shared.css */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
:root {
  --dark: #0f172a;
  --dark2: #1e293b;
  --dark3: #334155;
  --orange: #f97316;
  --orange-light: #fb923c;
  --text-light: #94a3b8;
  --border: #334155;
  --white: #ffffff;
  --green: #22c55e;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}
.card:hover { border-color: var(--orange); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; font-size: 0.9375rem; font-weight: 600;
  border: none; border-radius: 8px; cursor: pointer;
  text-decoration: none; font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(249,115,22,0.35);
}
.btn-secondary {
  background: transparent; color: var(--text-light);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--dark3); color: #fff; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
textarea, select {
  width: 100%; background: var(--dark); border: 2px solid var(--border);
  color: var(--white); border-radius: 8px; padding: 12px 14px; font-size: 0.9375rem;
  outline: none; font-family: inherit;
}
input:focus, textarea:focus, select:focus { border-color: var(--orange); }
label { display: block; font-size: 0.875rem; color: var(--text-light); margin-bottom: 6px; }
h1 { font-size: 2.25rem; font-weight: 800; line-height: 1.2; margin: 0 0 16px; }
h2 { font-size: 1.75rem; font-weight: 700; line-height: 1.3; margin: 0 0 16px; }
h3 { font-size: 1.25rem; font-weight: 700; margin: 0 0 12px; }
h4 { font-size: 1.0625rem; font-weight: 600; margin: 0 0 8px; color: #fff; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-light); }

.site-nav {
  background: #0f172a;
  border-bottom: 1px solid #334155;
  padding: 14px 20px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.nav-brand { font-weight: 700; color: #f97316 !important; font-size: 1.05rem; }
.nav-links { display: flex; flex-wrap: wrap; gap: 14px 18px; align-items: center; }
.nav-links a { color: #e2e8f0; font-size: 0.9rem; }
.nav-links a:hover { color: #fb923c; }
.nav-cta-phone { font-weight: 600; color: #f97316 !important; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid #334155;
  color: #e2e8f0;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.85rem;
  cursor: pointer;
}

.hero { padding: 72px 20px 48px; text-align: center; }
.hero-inner { max-width: 800px; margin: 0 auto; }
.hero-sub { margin-left: auto; margin-right: auto; color: var(--text-light); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 24px 0 16px; }
.hero-trust { text-align: center; }
.quick-answer-box {
  max-width: 800px; margin: 0 auto;
  background: #1e293b; border: 1px solid rgba(249,115,22,.35);
  border-radius: 12px; padding: 28px;
}
.quick-answer-box h3 { text-align: center; color: #fb923c; padding-bottom: 12px; }
.section { padding: 56px 20px; }
.section-alt { background: #0b1220; }
.section h2, .section-title {
  text-align: center; padding: 8px 16px 28px;
  margin-left: auto; margin-right: auto;
}
.site-footer {
  background: #020617; border-top: 1px solid #334155;
  padding: 40px 20px 24px; color: #94a3b8; font-size: 0.9rem;
}
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; margin-bottom: 24px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-copy { border-top: 1px solid #334155; padding-top: 16px; font-size: 0.8rem; }

@media (max-width: 1100px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.375rem; }
  .container { padding: 0 16px; }
  .footer-inner { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0 4px;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 10px 4px;
    border-bottom: 1px solid #334155;
  }
  .nav-cta-phone { margin-left: auto; }
  .hero-ctas .btn, .hero-ctas a { width: 100%; }
}