:root {
  --c-bg: #0a0a0a;
  --c-bg-alt: #111113;
  --c-bg-card: #18181b;
  --c-border: rgba(255,255,255,0.09);
  --c-blue: #0077C8;
  --c-blue-dark: #005a96;
  --c-maroon: #8E0F2A;
  --c-maroon-dark: #6e0a20;
  --c-white: #ffffff;
  --c-text: rgba(255,255,255,0.82);
  --c-text-dim: rgba(255,255,255,0.55);
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius: 12px;
  --shadow: 0 8px 30px rgba(0,0,0,0.35);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo { width: auto; height: 34px; }

.brand-name {
  color: var(--c-white);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--c-text);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--c-blue); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 6px 12px;
  cursor: pointer;
  color: var(--c-text);
  font-size: 0.85rem;
  font-weight: 600;
}

.lang-opt { opacity: 0.5; transition: opacity 0.2s, color 0.2s; }
.lang-opt.active { opacity: 1; color: var(--c-blue); }
.lang-sep { opacity: 0.4; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--c-white);
  display: block;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn-primary {
  background: var(--c-blue);
  color: var(--c-white);
}
.btn-primary:hover { background: var(--c-blue-dark); transform: translateY(-2px); }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--c-white);
}
.btn-outline:hover { background: var(--c-white); color: var(--c-bg); }

.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--c-white);
}
.btn-outline-light:hover { background: var(--c-white); color: var(--c-bg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--c-bg) 0%, var(--c-bg-alt) 55%, #1a0d10 150%);
  color: var(--c-white);
  padding: 100px 0 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 75%;
  background-image:
    radial-gradient(ellipse at 50% 35%, transparent 0%, var(--c-bg-alt) 45%, var(--c-bg) 85%),
    url('../assets/honeycomb.jpg');
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, 544px 360px;
  background-position: center, center;
  background-blend-mode: normal, luminosity;
  opacity: 0.9;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 760px;
}

.hero-logo {
  width: 260px;
  margin: 0 auto 28px;
}

.hero-tagline {
  color: var(--c-blue);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.25;
  color: var(--c-blue);
}

.hero-sub {
  color: var(--c-text);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- SECTION HEAD ---------- */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.eyebrow {
  display: inline-block;
  color: var(--c-maroon);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--c-blue);
}

.section-head p { color: var(--c-text-dim); }

/* ---------- ABOUT ---------- */
.about {
  position: relative;
  padding: 120px 0;
  min-height: 680px;
  display: flex;
  align-items: center;
  background-color: var(--c-bg-alt);
  background-image: url('../assets/garage_premium.png');
  background-size: cover;
  background-position: center 42%;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      var(--c-bg-alt) 0%,
      rgba(10,10,10,0.92) 6%,
      rgba(10,10,10,0.55) 16%,
      rgba(10,10,10,0.15) 30%,
      transparent 42%,
      transparent 58%,
      rgba(10,10,10,0.15) 72%,
      rgba(10,10,10,0.55) 84%,
      rgba(10,10,10,0.92) 94%,
      var(--c-bg-alt) 100%
    ),
    linear-gradient(100deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.78) 26%, rgba(10,10,10,0.35) 46%, rgba(10,10,10,0.12) 62%, transparent 78%);
  pointer-events: none;
}

.about-grid {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.about-text h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800; margin: 10px 0 20px; color: var(--c-blue); }
.about-text p { color: var(--c-text); margin-bottom: 16px; }

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-blue);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--c-text-dim);
  max-width: 160px;
}

/* ---------- SERVICES ---------- */
.services { padding: 96px 0; background: var(--c-bg); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,119,200,0.4);
}

.service-icon {
  font-size: 1.5rem;
  margin-bottom: 16px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--c-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; color: var(--c-blue); }
.service-card p { color: var(--c-text-dim); font-size: 0.92rem; margin-bottom: 16px; }

.service-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.88rem;
  color: var(--c-text);
  margin-bottom: 8px;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-maroon);
}

/* ---------- WHY ---------- */
.why { padding: 96px 0; background: var(--c-bg-alt); color: var(--c-white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px;
}

.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--c-blue); }
.why-card p { color: var(--c-text-dim); font-size: 0.9rem; }

/* ---------- PROCESS ---------- */
.process { padding: 96px 0; background: var(--c-bg); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step { text-align: center; }

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-maroon);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 18px;
}

.step h3 { font-weight: 700; margin-bottom: 10px; color: var(--c-blue); }
.step p { color: var(--c-text-dim); font-size: 0.9rem; }

/* ---------- COVERAGE ---------- */
.coverage { padding: 96px 0; background: var(--c-bg-alt); }

.coverage-inner { text-align: center; }

.coverage-cities {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.city-tag {
  background: var(--c-bg-card);
  color: var(--c-white);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--c-border);
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 100px 0;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  color: var(--c-white);
  text-align: center;
}

.contact-inner { max-width: 680px; margin: 0 auto; }

.contact h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin: 14px 0 16px; color: var(--c-blue); }
.contact-sub, .contact p { color: var(--c-text); margin-bottom: 32px; }

.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.contact-detail {
  color: var(--c-text-dim);
  font-size: 0.92rem;
  transition: color 0.2s;
}

.contact-detail:hover { color: var(--c-blue); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--c-bg);
  color: var(--c-text-dim);
  padding: 40px 0;
  border-top: 1px solid var(--c-border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--c-white);
}

.footer-logo { width: auto; height: 38px; }

.footer-brand p { font-size: 0.82rem; color: var(--c-text-dim); }

.footer-copy { font-size: 0.82rem; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--c-bg);
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--c-border);
  }
  .service-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .about-stats { gap: 24px; }
  .about {
    min-height: 560px;
    background-position: center 48%;
  }
  .footer-inner { flex-direction: column; text-align: center; }
}
