/* OMH Services LLC - Custom Industrial Dark Theme Styles */
:root {
  --black: #070707;
  --panel: #111111;
  --panel-2: #181818;
  --chrome: #c5c7c9;
  --muted: #8f9499;
  --orange: #f6a51a;
  --orange-deep: #d87808;
  --orange-hover: #ffc052;
  --line: rgba(214, 218, 220, 0.18);
  --border-subtle: rgba(255, 255, 255, 0.1);
  --font-main: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Space Mono", monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background: var(--black);
  color: #ffffff;
}

body {
  width: 100%;
  min-height: 100vh;
  background: var(--black);
  color: #ffffff;
  font-family: var(--font-main);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Background Grids & FX */
.industrial-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
}

.chrome-line {
  background: linear-gradient(90deg, transparent, #f5f5f5, #73777b, #fff, transparent);
  height: 1px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Container Utility */
.container {
  width: 100%;
  max-width: 80rem; /* 1280px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Typography Helpers */
.text-orange { color: var(--orange); }
.text-muted { color: var(--muted); }
.text-chrome { color: var(--chrome); }

/* Language Switcher & Dynamic Content */
.lang-en, .lang-es, .lang-block-en, .lang-block-es, .lang-flex-en, .lang-flex-es { display: none; }

body[data-language="en"] .lang-en { display: inline; }
body[data-language="es"] .lang-es { display: inline; }
body[data-language="en"] .lang-block-en { display: block; }
body[data-language="es"] .lang-block-es { display: block; }
body[data-language="en"] .lang-flex-en { display: flex; }
body[data-language="es"] .lang-flex-es { display: flex; }

.lang-switch {
  display: flex;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2px;
  gap: 2px;
}

.lang-switch button {
  background: transparent;
  border: none;
  color: #fff;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-switch button.active {
  background: var(--orange);
  color: #0d0d0d;
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(9, 9, 9, 0.95);
  backdrop-filter: blur(8px);
}

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.logo-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--orange);
  display: grid;
  place-items: center;
  color: var(--orange);
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-name {
  display: block;
  font-weight: 700;
  letter-spacing: 0.12rem;
  font-size: 1rem;
  color: #ffffff;
}

.brand-subtitle {
  color: #aeb3b6;
  font-size: 0.7rem;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.875rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  color: #d7d9da;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-desktop a:hover {
  color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 4px;
  background: var(--orange);
  color: #0a0a0a;
  font-weight: 700;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: var(--orange-hover);
}

.btn-hero-lg {
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(197, 199, 201, 0.6);
  background: rgba(17, 17, 17, 0.6);
  color: #ffffff;
  font-weight: 700;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--orange);
  background: rgba(17, 17, 17, 0.8);
  color: var(--orange);
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-outline-orange:hover {
  background: var(--orange);
  color: #000000;
}

.menu-toggle {
  display: block;
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 0.5rem;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.nav-mobile.nav-open {
  display: flex !important;
}

.mobile-link {
  color: #d7d9da;
  text-decoration: none;
  font-size: 1rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-photo {
  position: absolute;
  inset: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 7, 7, 0.98) 0%, rgba(7, 7, 7, 0.76) 47%, rgba(7, 7, 7, 0.24) 100%);
}

.hero-content {
  position: relative;
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(246, 165, 26, 0.6);
  background: rgba(17, 17, 17, 0.85);
  padding: 0.5rem 0.75rem;
  color: var(--orange);
  border-radius: 2px;
}

.hero-h1 {
  margin-top: 1.5rem;
  line-height: 0.95;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.06rem;
}

.hero-description {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #d1d4d5;
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-metrics {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 36rem;
  gap: 1rem;
}

.metric-item {
  border-left: 2px solid var(--orange);
  padding-left: 0.75rem;
}

.metric-number {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
}

/* Metal Cards & Services */
.metal-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(34, 34, 34, 0.88), rgba(12, 12, 12, 0.94));
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.metal-card::before {
  content: "";
  position: absolute;
  height: 2px;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(246, 165, 26, 0.95), transparent);
  opacity: 0.65;
}

.services-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.services-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

@media (min-width: 768px) {
  .services-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.04rem;
  line-height: 1.1;
  margin-top: 0.75rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  min-height: 360px;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: grayscale(0.25) contrast(1.1);
}

.service-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0) contrast(1.08);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
}

.card-body {
  position: relative;
  height: 100%;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.card-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--orange);
  margin-bottom: 3rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.card-desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #d5d7d8;
}

/* Simulator Section */
.simulator-section {
  width: 100%;
  background: #0d0d0d;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.simulator-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .simulator-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3.5rem;
  }
}

.selector-btn {
  min-height: 52px;
  border: 1px solid rgba(197, 199, 201, 0.28);
  background: rgba(255, 255, 255, 0.03);
  color: #d6d8da;
  transition: all 0.2s ease;
  padding: 0.5rem 0.75rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
}

.selector-btn:hover,
.selector-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #101010;
  box-shadow: 0 0 25px rgba(246, 165, 26, 0.18);
}

.surface-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.vlt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.current-build-box {
  margin-top: 2rem;
  border-left: 2px solid var(--orange);
  background: rgba(255, 255, 255, 0.035);
  padding: 1rem;
}

.preview-shell {
  min-height: 370px;
  background:
    radial-gradient(circle at 68% 32%, rgba(246, 165, 26, 0.14), transparent 24%),
    linear-gradient(140deg, #27292b, #0b0b0b 64%);
  border: 1px solid rgba(197, 199, 201, 0.28);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border-radius: 6px;
}

.preview-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: linear-gradient(115deg, transparent 0 45%, rgba(255, 255, 255, 0.25) 46%, transparent 47% 100%);
  pointer-events: none;
}

/* Surface Graphics */
.surface {
  display: none;
  position: relative;
  width: min(86%, 560px);
  aspect-ratio: 16 / 9;
}

.surface.active {
  display: block;
  animation: rise 0.38s ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.car-body {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 90%;
  height: 40%;
  border: 3px solid #d9dddf;
  border-radius: 36% 44% 14% 12% / 45% 58% 14% 15%;
  background: linear-gradient(150deg, #777d82 0%, #22272a 45%, #090a0a 75%);
  box-shadow: inset 0 9px 14px rgba(255, 255, 255, 0.18), 0 20px 30px rgba(0, 0, 0, 0.55);
}

.car-body::after {
  content: "";
  position: absolute;
  width: 13%;
  height: 20%;
  border-radius: 50%;
  bottom: -10%;
  left: 15%;
  background: #070707;
  border: 6px solid #aaaeb0;
  box-shadow: 370% 0 0 -1px #070707, 370% 0 0 5px #aaaeb0;
}

.window-zone {
  position: absolute;
  top: -50%;
  left: 25%;
  height: 54%;
  width: 48%;
  clip-path: polygon(12% 100%, 27% 9%, 82% 4%, 100% 100%);
  background: rgba(19, 42, 52, var(--tint-opacity, 0.52));
  border: 3px solid #d9dddf;
  box-shadow: inset 0 3px 20px rgba(255, 255, 255, 0.12);
  transition: background 0.28s ease;
}

.window-zone::after {
  content: "";
  position: absolute;
  inset: 7%;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.28), transparent 32%);
  opacity: 0.5;
}

/* Vehicle Variants */
.suv .car-body { height: 46%; border-radius: 28% 32% 12% 12% / 30% 42% 12% 12%; }
.suv .window-zone { left: 19%; width: 60%; top: -48%; clip-path: polygon(8% 100%, 19% 7%, 89% 7%, 100% 100%); }

.truck .car-body { width: 88%; left: 7%; border-radius: 16% 18% 8% 10%; }
.truck .window-zone { left: 12%; width: 37%; top: -57%; clip-path: polygon(12% 100%, 26% 6%, 100% 6%, 100% 100%); }
.truck .cargo { position: absolute; right: 3%; top: -26%; width: 39%; height: 48%; border: 3px solid #d9dddf; background: #171a1b; }

.heavy .car-body { width: 65%; left: 18%; height: 47%; border-radius: 10%; background: linear-gradient(145deg, #f6a51a, #4c3507); }
.heavy .window-zone { left: 26%; width: 38%; top: -70%; height: 77%; clip-path: polygon(8% 100%, 8% 5%, 100% 5%, 92% 100%); }
.heavy .boom { position: absolute; width: 48%; height: 13%; top: 14%; right: 2%; background: #d5830a; transform: rotate(-18deg); border: 3px solid #ffc15c; }

.commercial-window {
  position: absolute;
  inset: 9%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 7px;
  padding: 7px;
  border: 10px solid #abb0b3;
  background: #1a1d1f;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.commercial-window span {
  background: rgba(19, 42, 52, var(--tint-opacity, 0.52));
  transition: background 0.28s ease;
  position: relative;
}

.commercial-window span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 36%);
}

.scanline {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: rgba(246, 165, 26, 0.6);
  animation: scan 3.5s linear infinite;
}

@keyframes scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(400%); }
}

/* Mobile Service Section */
.mobile-service-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #151515;
}

.mobile-card-inner {
  padding: 1.75rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .mobile-card-inner {
    grid-template-columns: auto 1fr auto;
    padding: 2.5rem;
  }
}

.icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--orange);
  display: grid;
  place-items: center;
  color: var(--orange);
}

/* Social Section */
.social-section {
  background: #151515;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.social-card {
  padding: 1.5rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.social-card:hover {
  transform: translateY(-4px);
}

.social-link-label {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--orange);
}

/* Quote Section */
.quote-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .quote-grid {
    grid-template-columns: 0.78fr 1.22fr;
  }
}

.contact-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d4d7d8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-list a:hover {
  color: var(--orange);
}

.quote-form-panel {
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .quote-form-panel {
    padding: 2rem;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem;
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  border-radius: 4px;
}

.form-textarea {
  resize: vertical;
}

.quote-success-msg {
  margin-top: 1rem;
  border-left: 2px solid var(--orange);
  background: rgba(246, 165, 26, 0.1);
  padding: 0.75rem;
  color: #f9c76d;
}

/* FAQ Section */
.faq-section {
  background: #111111;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.faq-container {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  padding: 1.25rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.faq-plus {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--orange);
  transition: transform 0.2s ease;
}

.faq-answer {
  display: none;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-bottom: 1.25rem;
  color: #bcc0c2;
  font-size: 1rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
}

/* Site Footer */
.site-footer {
  background: var(--black);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #7f8588;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-credit {
  color: #aeb3b6;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-credit:hover {
  color: var(--orange);
}

/* Accessibility Focus Ring */
.focus-ring:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.hidden {
  display: none !important;
}

@media (max-width: 767px) {
  .hero-photo::after {
    background: linear-gradient(90deg, rgba(7, 7, 7, 0.95), rgba(7, 7, 7, 0.52));
  }
  .preview-shell {
    min-height: 295px;
  }
}
