/* =============================================
   ElichAuto LLC – Main Stylesheet
   Mobile-first, no frameworks
   ============================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:    #f26522;
  --orange-dk: #c4500e;
  --black:     #0d0d0d;
  --dark:      #1a1a1a;
  --dark2:     #242424;
  --mid:       #3a3a3a;
  --light:     #f5f5f5;
  --white:     #ffffff;
  --text:      #e0e0e0;
  --text-muted:#aaaaaa;
  --radius:    8px;
  --shadow:    0 4px 24px rgba(0,0,0,.45);
  --transition:0.25s ease;
  --max-w:     1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dk); }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1em; color: var(--text); }

.accent { color: var(--orange); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 5rem 0; }
.section--dark  { background: var(--dark); }
.section--dark2 { background: var(--dark2); }
.section--black { background: var(--black); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .5rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3rem;
}
.center { text-align: center; }
.center .section-subtitle { margin-left: auto; margin-right: auto; }

.grid-2 { display: grid; gap: 2rem; }
.grid-3 { display: grid; gap: 2rem; }
.grid-4 { display: grid; gap: 1.5rem; }
@media(min-width:640px)  { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media(min-width:768px)  { .grid-3 { grid-template-columns: repeat(3,1fr); } }
@media(min-width:900px)  { .grid-4 { grid-template-columns: repeat(4,1fr); } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform .15s;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover { background: var(--orange); color: var(--white); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-sm { padding: .55rem 1.2rem; font-size: .9rem; }

/* ---------- Header / Nav ---------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,13,13,.96);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--orange);
  box-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.25rem;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 1rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  object-fit: cover;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .03em;
}
.logo-name span { color: var(--orange); }
.logo-tagline {
  font-size: .65rem;
  color: var(--text-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Nav links */
.main-nav { display: none; }
.main-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: .95rem;
  padding: .4rem .6rem;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--orange); }

/* Header CTA group */
.header-cta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.header-phone {
  font-weight: 700;
  color: var(--orange);
  font-size: .9rem;
  white-space: nowrap;
}
.header-phone:hover { color: var(--orange-dk); }

/* Hamburger */
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark);
  border-top: 1px solid var(--mid);
  padding: 1rem 1.25rem 1.5rem;
  gap: .25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 1.05rem;
  padding: .65rem .5rem;
  border-bottom: 1px solid var(--mid);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav .btn { margin-top: .75rem; text-align: center; }

/* Mobile call button — orange circle with phone icon, only on mobile */
.mobile-call-btn {
  display: none;
  width: 42px;
  height: 42px;
  background: var(--orange);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  transition: background var(--transition);
}
.mobile-call-btn:hover { background: var(--orange-dk); color: var(--white); }

@media(max-width:899px) {
  /* Header */
  .header-cta { display: none; }
  .logo-tagline { display: none; }
  .mobile-call-btn { display: flex; }

  /* Hero spacing */
  .hero { min-height: auto; }
  .hero-content { padding: 2.5rem 0 2rem; }
  .hero h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); margin-bottom: 1rem; }
  .hero-sub { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero-actions { flex-direction: column; gap: .75rem; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-trust { margin-top: 1.5rem; gap: .85rem 1.25rem; }

  /* Section spacing */
  .section { padding: 3rem 0; }
  .cta-banner { padding: 2.5rem 0; }
  .service-detail { padding: 2rem 0; }
  .section-subtitle { margin-bottom: 1.75rem; }
}

@media(min-width:900px) {
  .nav-toggle { display: none; }
  .main-nav { display: flex; align-items: center; gap: .25rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.70) 0%,
    rgba(0,0,0,.50) 45%,
    rgba(0,0,0,.75) 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 75% 55%, rgba(242,101,34,.15) 0%, transparent 65%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.hero-eyebrow .badge {
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 20px;
}
.hero-eyebrow p {
  color: var(--text-muted);
  font-size: .9rem;
  margin: 0;
}
.hero h1 { max-width: 760px; margin-bottom: 1.25rem; }
.hero-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-trust {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-muted);
  font-size: .88rem;
  font-weight: 600;
}
.trust-badge svg { color: var(--orange); flex-shrink: 0; }

/* ---------- Services cards ---------- */
.service-card {
  background: var(--dark2);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(242,101,34,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--orange);
}
.service-card h3 { margin-bottom: .5rem; }
.service-card p  { color: var(--text-muted); flex: 1; }
.service-card a.more-link {
  margin-top: 1rem;
  font-weight: 700;
  font-size: .9rem;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: .3rem;
}
.service-card a.more-link:hover { color: var(--orange-dk); }

/* ---------- Trust / Why Us section ---------- */
.why-card {
  background: var(--dark);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.why-card .icon {
  width: 60px;
  height: 60px;
  background: rgba(242,101,34,.15);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.6rem;
}
.why-card h4 { margin-bottom: .4rem; color: var(--white); }
.why-card p  { color: var(--text-muted); font-size: .9rem; margin: 0; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--orange-dk) 0%, var(--orange) 100%);
  padding: 4rem 0;
}
.cta-banner h2, .cta-banner p { color: var(--white); }
.cta-banner p { opacity: .9; margin-bottom: 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.btn-white {
  background: var(--white);
  color: var(--orange-dk);
  border-color: var(--white);
  font-weight: 800;
}
.btn-white:hover { background: var(--light); border-color: var(--light); color: var(--orange-dk); }

/* ---------- Services page detail ---------- */
.service-detail {
  padding: 4rem 0;
  border-bottom: 1px solid var(--mid);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media(min-width:768px) {
  .service-detail-inner { grid-template-columns: 1fr 1fr; }
  .service-detail-inner.reverse .service-detail-img { order: 2; }
  .service-detail-inner.reverse .service-detail-text { order: 1; }
}
.service-detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark2);
  border: 1px solid var(--mid);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: var(--text-muted);
  font-size: .9rem;
}
.service-placeholder svg { color: var(--orange); opacity: .5; }
.service-detail-text .feature-list { margin: 1.25rem 0; }
.service-detail-text .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  color: var(--text-muted);
  margin-bottom: .5rem;
  font-size: .95rem;
}
.feature-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: .05em;
}

/* ---------- About page ---------- */
.about-hero {
  background: var(--dark);
  padding: 5rem 0 4rem;
  border-bottom: 2px solid var(--orange);
}
.about-hero h1 { margin-bottom: 1rem; }
.about-hero p   { color: var(--text-muted); max-width: 620px; }

.credential-card {
  background: var(--dark2);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 3px solid var(--orange);
}
.credential-card .icon {
  font-size: 2.5rem;
  margin-bottom: .75rem;
}
.credential-card h4 { color: var(--white); margin-bottom: .5rem; }
.credential-card p  { color: var(--text-muted); font-size: .9rem; margin: 0; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark2);
  border: 1px solid var(--mid);
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--text-muted);
  font-size: .85rem;
  text-align: center;
  padding: 1rem;
}
.gallery-placeholder svg { color: var(--orange); opacity: .4; }
.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.8));
  padding: 1.5rem .75rem .75rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: .75rem;
}
.faq-question {
  width: 100%;
  background: var(--dark2);
  border: none;
  text-align: left;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--mid); }
.faq-question[aria-expanded="true"] { background: var(--mid); }
.faq-chevron {
  width: 20px; height: 20px;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  background: var(--dark);
  display: none;
  padding: 1.25rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-answer.open { display: block; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  gap: 3rem;
}
@media(min-width:768px) { .contact-grid { grid-template-columns: 1fr 1.6fr; } }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
  background: var(--dark2);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-card .icon {
  width: 44px; height: 44px;
  background: rgba(242,101,34,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-card h4 { color: var(--white); margin-bottom: .2rem; }
.contact-card a, .contact-card p { color: var(--text-muted); font-size: .95rem; margin: 0; }
.contact-card a:hover { color: var(--orange); }

/* Contact form */
.contact-form-wrap {
  background: var(--dark2);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
}
.contact-form-wrap h2 { margin-bottom: .5rem; }
.contact-form-wrap > p { color: var(--text-muted); margin-bottom: 2rem; }

.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
@media(min-width:560px) { .form-row.two-col { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  padding: .75rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242,101,34,.2);
}
.form-group select option { background: var(--dark); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 1.5rem; }
.form-submit .btn { width: 100%; padding: 1rem; }
.form-note {
  margin-top: .75rem;
  font-size: .8rem;
  color: var(--text-muted);
  text-align: center;
}

/* Success message */
.form-success {
  display: none;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.4);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  margin-top: 1.5rem;
  color: #4ade80;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--dark);
  border-bottom: 2px solid var(--orange);
  padding: 4rem 0 3rem;
}
.page-hero .breadcrumb {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: .75rem;
}
.page-hero .breadcrumb a { color: var(--orange); }
.page-hero .breadcrumb a:hover { color: var(--orange-dk); }
.page-hero h1 { margin-bottom: .75rem; }
.page-hero p { color: var(--text-muted); max-width: 600px; margin: 0; }

/* ---------- Stats bar ---------- */
.stats-bar {
  background: var(--orange);
  padding: 2rem 0;
}
.stats-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-item span {
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  font-weight: 600;
}

/* ---------- Footer ---------- */
#site-footer {
  background: var(--dark);
  border-top: 2px solid var(--orange);
  padding: 3.5rem 0 1.5rem;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media(min-width:640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:900px)  { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }

.footer-brand p {
  color: var(--text-muted);
  font-size: .9rem;
  margin: 1rem 0;
}
.footer-brand .site-logo { margin-bottom: .25rem; }
.footer-license {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(242,101,34,.12);
  border: 1px solid rgba(242,101,34,.3);
  color: var(--orange);
  font-size: .78rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: 20px;
}

.footer-nav h4,
.footer-contact-col h4 {
  color: var(--white);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a { color: var(--text-muted); font-size: .9rem; }
.footer-nav a:hover { color: 