/* ============================================================
   GolfCartVIN.com — Stylesheet
   Dark theme aligned with Unleashed EV brand DNA
   ============================================================ */

:root {
  --accent: #00FF66;
  --accent-glow: rgba(0, 255, 102, 0.15);
  --accent-dim: #00cc52;
  --bg: #0A0A0B;
  --bg-panel: #141418;
  --border: #23232A;
  --border-hover: #333340;
  --text: #F5F5F7;
  --text-muted: #8A8A94;
  --text-dim: #6A6A74;
  --white: #ffffff;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --max-width: 1100px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--white); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.center { text-align: center; }

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--accent);
  color: #000;
  padding: 0.5rem 1rem;
  z-index: 200;
  font-weight: 700;
  font-size: 0.9rem;
}
.skip-link:focus {
  top: 0;
  color: #000;
}

/* ============================================================
   Header / Nav
   ============================================================ */
header {
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.logo span { color: var(--accent); }
.logo:hover { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--accent); }

.btn-nav {
  background: var(--accent);
  color: #000 !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: box-shadow 0.2s, transform 0.1s;
}
.btn-nav:hover {
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateY(-1px);
  color: #000 !important;
}
.btn-nav.active { color: #000 !important; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.btn-primary {
  background: var(--accent);
  color: #000;
}
.btn-primary:hover {
  box-shadow: 0 0 24px var(--accent-glow);
  transform: translateY(-1px);
  color: #000;
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: var(--bg);
  color: var(--text);
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,255,102,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,102,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0,255,102,0.08), transparent 70%);
}
.hero-content { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(0,255,102,0.3), 0 0 30px rgba(0,255,102,0.15);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Page Hero (inner pages) */
.page-hero {
  background: var(--bg);
  color: var(--text);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 100%, rgba(0,255,102,0.06), transparent 70%);
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  position: relative;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  position: relative;
}

/* ============================================================
   Trust Signals
   ============================================================ */
.trust {
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.trust-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.trust-item h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.trust-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   How It Works — Steps
   ============================================================ */
.how-preview { padding: 5rem 0; }
.how-preview h2,
.included h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--white);
  text-transform: uppercase;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.step { text-align: center; }
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--white);
  text-transform: uppercase;
}
.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Steps Detail (How It Works page) */
.steps-detail { padding: 4rem 0; }
.step-detail {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.step-detail:last-child { border-bottom: none; }
.step-detail-num {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 4px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-detail-content h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
  text-transform: uppercase;
}
.step-detail-content p { margin-bottom: 0.75rem; color: var(--text-muted); }
.step-detail-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0.75rem;
}
.step-detail-content li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}
.step-detail-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 1px;
}

/* ============================================================
   What's Included
   ============================================================ */
.included {
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.included-item {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.included-item:hover { border-color: var(--accent); }
.included-item h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.included-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================================
   CTA Section
   ============================================================ */
.cta {
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  color: var(--text);
  text-align: center;
  padding: 4rem 1.5rem;
  position: relative;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 0%, rgba(0,255,102,0.06), transparent 70%);
}
.cta h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  position: relative;
}
.cta p { color: var(--text-muted); margin-bottom: 1.5rem; position: relative; }
.cta .btn-primary { position: relative; }
.cta-phone { margin-top: 1rem; font-size: 0.9rem; position: relative; }
.cta-phone a { color: var(--accent); }

/* ============================================================
   Pricing
   ============================================================ */
.pricing-section { padding: 4rem 0; }
.pricing-card {
  max-width: 600px;
  margin: 0 auto 3rem;
  border: 1px solid var(--accent);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0,255,102,0.08);
}
.pricing-header {
  background: var(--bg-panel);
  border-bottom: 1px solid var(--accent);
  padding: 2rem;
  text-align: center;
}
.pricing-header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: var(--white);
}
.pricing-note { color: var(--text-muted); font-size: 0.95rem; }
.pricing-includes {
  padding: 2rem;
  background: var(--bg);
}
.pricing-includes h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
  text-transform: uppercase;
}
.pricing-includes ul { list-style: none; }
.pricing-includes li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
}
.pricing-includes li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.pricing-cta {
  padding: 0 2rem 2rem;
  text-align: center;
  background: var(--bg);
}
.pricing-details { max-width: 800px; margin: 0 auto; }
.pricing-details h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  color: var(--white);
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.detail-item {
  background: var(--bg-panel);
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.detail-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--accent);
  text-transform: uppercase;
}
.detail-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 4rem 0; }
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  color: var(--white);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: color 0.2s;
}
.faq-item[open] summary::after {
  content: "\2212";
  color: var(--accent);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p, .faq-item ul {
  padding-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item ul {
  list-style: none;
  padding-left: 0;
}
.faq-item li {
  margin-bottom: 0.3rem;
  padding-left: 1.2rem;
  position: relative;
}
.faq-item li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 1px;
}

/* ============================================================
   About
   ============================================================ */
.about-content { padding: 4rem 0; }
.about-block {
  max-width: 750px;
  margin: 0 auto 3rem;
}
.about-block h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
  text-transform: uppercase;
}
.about-block p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}
.about-address {
  background: var(--bg-panel);
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.about-address strong { color: var(--white); }
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.credential {
  background: var(--bg-panel);
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.credential:hover { border-color: var(--accent); }
.credential h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.credential p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================================================
   Contact
   ============================================================ */
.contact-section { padding: 4rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info h2,
.contact-form-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-transform: uppercase;
}
.contact-method { margin-bottom: 1.5rem; }
.contact-method h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}
.contact-method p { color: var(--text-muted); font-size: 0.95rem; }
.contact-method a { color: var(--accent); }
.contact-method ul { list-style: none; padding-left: 0; margin-top: 0.5rem; }
.contact-method li {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  padding-left: 1.2rem;
  position: relative;
}
.contact-method li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 1px;
}
.contact-phone {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
}

/* Order Form CTA (Contact page) */
.order-form-cta {
  background: var(--bg-panel);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  box-shadow: 0 0 30px rgba(0,255,102,0.06);
}
.order-form-cta h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--white);
  text-transform: uppercase;
}
.order-form-cta p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  background: var(--bg);
  color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 255, 102, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: var(--bg);
  color: var(--text-muted);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.footer-brand p { font-size: 0.85rem; margin-bottom: 0.25rem; }
.footer-brand a { color: var(--accent); }
.footer-brand strong { color: var(--white); }
.footer-links h4 {
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a {
  color: var(--text-dim);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); }

/* ============================================================
   Mobile Responsive
   ============================================================ */
@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }
  .btn-nav { text-align: center; margin-top: 0.5rem; }

  .hero { padding: 4rem 1.5rem; }
  .hero h1 { font-size: 2.5rem; }
  .hero-sub { font-size: 1rem; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 2rem; }
  .included-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }

  .step-detail { flex-direction: column; align-items: flex-start; }
  .page-hero h1 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
}
