@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --obsidian:    #0A0A0B;
  --obsidian-2:  #111113;
  --obsidian-3:  #1a1a1d;
  --signal:      #FFB800;
  --signal-dim:  rgba(255, 184, 0, 0.12);
  --concrete:    #E2E2E2;
  --stark:       #FFFFFF;
  --muted:       #888888;
  --border:      rgba(255,255,255,0.1);

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  height: auto;
  min-height: 100vh;
}

body {
  background-color: var(--obsidian);
  color: var(--stark);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  height: auto;
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---- Focus Ring (Accessibility) ---- */
*:focus-visible {
  outline: 4px solid var(--signal);
  outline-offset: 3px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(10, 10, 11, 0.85); 
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1); 
  animation: slideDown 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  background: #F2EDE3; 
  padding: 6px 24px 6px 6px; 
  border-radius: 50px; 
}

.navbar-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%; 
  overflow: hidden;
  flex-shrink: 0;
}

.navbar-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navbar-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.btn-driver {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stark); 
  border: 2px solid rgba(255, 255, 255, 0.25); 
  padding: 12px 24px;
  min-height: 48px;
  min-width: 48px;
  border-radius: 50px; 
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-driver:hover {
  background: #F2EDE3; 
  color: #1a1a1a;
  border-color: #F2EDE3;
}

.btn-driver svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 2px solid var(--border);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--obsidian) 0%,
    rgba(10,10,11,0.72) 45%,
    rgba(10,10,11,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 120px 48px 64px; 
  max-width: 900px;
  animation: heroFadeUp 0.9s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 16px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--stark);
  margin-bottom: 24px;
}

.hero-headline span {
  color: var(--signal);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--concrete);
  max-width: 580px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  width: 100%;
  padding: 100px 48px;
  border-bottom: 2px solid var(--border);
}

.about-inner {
  max-width: 1152px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 10px;
}

.section-rule {
  width: 56px;
  height: 3px;
  background: var(--signal);
  margin-bottom: 56px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.about-para {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--concrete);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  width: 100%;
  padding: 100px 48px;
  border-bottom: 2px solid var(--border);
}

.services-inner {
  max-width: 1152px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--border);
}

.service-card {
  padding: 40px;
  border-right: 2px solid var(--border);
  transition: background 0.4s ease;
}

.service-card:last-child {
  border-right: none;
}

.service-card:hover {
  background: var(--obsidian-2);
}

.service-icon {
  width: 56px;
  height: 56px;
  border: 2px solid var(--border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: border-color 0.4s ease;
}

.service-card:hover .service-icon {
  border-color: var(--signal);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--signal);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--stark);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }

/* ============================================
   RECRUITMENT (DRIVE WITH US)
   ============================================ */
.recruitment {
  width: 100%;
  padding: 100px 48px;
  background: var(--obsidian-2);
  border-bottom: 2px solid var(--border);
}

.recruitment-inner {
  max-width: 1152px;
  margin: 0 auto;
}

.recruitment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.recruitment-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--stark);
  margin-bottom: 32px;
}

.recruitment-title span {
  color: var(--signal);
}

/* --- RECRUITMENT STATS CARDS --- */
.recruitment-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.stat-box {
  background: var(--obsidian-3);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 12px;
  flex: 1;
  display: flex;
  align-items: center; 
  gap: 20px; 
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.stat-box:hover {
  transform: translateY(-4px);
  border-color: var(--signal);
}

.app-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px; 
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); 
  flex-shrink: 0;
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--signal);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--concrete);
  font-weight: 500;
}

.stat-highlight {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--stark);
  font-weight: 700;
  margin-top: 4px;
}

.recruitment-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.recruitment-lists h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--stark);
  border-bottom: 2px solid var(--signal);
  padding-bottom: 8px;
  display: inline-block;
}

.recruitment-lists ul {
  list-style: none;
  padding: 0;
}

.recruitment-lists li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--concrete);
}

.recruitment-lists li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--signal);
  font-weight: bold;
}

.recruitment-lists li strong {
  color: var(--stark);
}

.recruitment-lists li.highlight {
  color: var(--signal);
  font-weight: 600;
}

.btn-primary {
  display: inline-block;
  background: var(--signal);
  color: var(--obsidian);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 36px;
  border-radius: 4px;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  opacity: 0.9;
}

.recruitment-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.recruitment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  width: 100%;
  padding: 48px 48px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  background: var(--obsidian);
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F2EDE3;
  padding: 6px 20px 6px 6px;
  border-radius: 50px;
}

.footer-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--stark);
}

.footer-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

/* STACKED CONTACT BLOCK */
.footer-contact-stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  text-align: center;
}

.footer-company {
  font-weight: 700;
  color: var(--signal);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.footer-tlc {
  font-weight: 600;
  color: var(--concrete);
  font-size: 1rem;
}

.footer-address {
  font-size: 0.95rem;
  color: var(--concrete);
  margin-bottom: 4px;
}

.footer-contact-stacked a {
  font-size: 0.95rem;
  color: var(--stark);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

.footer-contact-stacked a:hover {
  color: var(--signal);
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--muted);
}

/* ============================================
   RESPONSIVE OVERRIDES (MOBILE FIXES HERE)
   ============================================ */
@media (max-width: 1024px) {
  .footer {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
  }
}

@media (max-width: 900px) {
  .navbar {
    padding: 16px 24px;
  }

  .hero-content {
    padding: 100px 24px 64px;
  }

  .about {
    padding: 72px 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .services {
    padding: 72px 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-right: none;
    border-bottom: 2px solid var(--border);
    padding: 32px 24px;
  }

  .service-card:last-child {
    border-bottom: none;
  }

  /* RECRUITMENT MOBILE OVERRIDE */
  .recruitment {
    padding: 72px 24px;
  }

  .recruitment-grid {
    grid-template-columns: 1fr; /* Forces 1 column */
    gap: 32px;
  }

  .recruitment-image {
    order: -1; /* Pushes the image to the top on mobile */
    min-height: 300px; /* Keeps image from taking over the whole screen */
  }
}

@media (max-width: 600px) {
  .recruitment-stats {
    flex-direction: column;
    gap: 16px;
  }
  .recruitment-lists {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .navbar-name {
    font-size: 1rem;
  }

  .btn-driver {
    padding: 10px 16px;
    font-size: 0.7rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .about-para {
    font-size: 1rem;
  }
}

/* ============================================
   SCROLL FIX
   ============================================ */
html, body {
  height: auto !important;
  min-height: 100vh;
  overflow-x: hidden; 
  overflow-y: auto !important; 
}