/* Alpha Logistics - Home page styles (from alpha_logistics_website template) */
:root {
  --navy: #181f2e;
  --navy2: #1e2535;
  --navy3: #252e42;
  --navy4: #3a4f72;
  --gold: #d4991a;
  --gold2: #c47b10;
  --gold-light: #f5c048;
  --steel: #5ab3d6;
  --muted: #6a8ab0;
  --white: #ffffff;
  --offwhite: #e8edf5;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes truckRide {
  0%   { transform: translateX(-120px); opacity: 0; }
  15%  { opacity: 1; }
  100% { transform: translateX(0); opacity: 1; }
}
@keyframes counterUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(10,15,30,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,160,32,0.15);
}

.nav-logo {
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.nav-logo img { height: 60px; width: auto; }

.nav-logo-text .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white);
  line-height: 1;
}
.nav-logo-text .brand-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 10px 24px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 72px 0 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay: dark left for text readability, fades right to show truck */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(10,15,30,0.95) 0%,
      rgba(10,15,30,0.85) 35%,
      rgba(10,15,30,0.5) 60%,
      rgba(10,15,30,0.25) 80%,
      transparent 100%
    );
  z-index: 1;
}

.hero-stripes {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  overflow: hidden;
  opacity: 0.04;
  z-index: 1;
}
.hero-stripes::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    -55deg,
    var(--gold) 0px,
    var(--gold) 2px,
    transparent 2px,
    transparent 40px
  );
}

.hero-road {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: #060b15;
  overflow: hidden;
  z-index: 1;
}
.hero-road::before,
.hero-road::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: #1a2a45;
}
.hero-road::before { top: 20px; }
.hero-road::after { bottom: 20px; }
.hero-road-dash {
  position: absolute;
  top: 50%;
  left: 0;
  width: 200%;
  height: 2px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(
    to right,
    rgba(232,160,32,0.35) 0px,
    rgba(232,160,32,0.35) 60px,
    transparent 60px,
    transparent 90px
  );
  animation: roadScroll 1.8s linear infinite;
}
@keyframes roadScroll {
  from { transform: translateY(-50%) translateX(0); }
  to   { transform: translateY(-50%) translateX(-90px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

.hero-left {
  animation: fadeUp 0.9s ease both;
  max-width: 560px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  animation: slideRight 0.8s ease 0.1s both;
}
.hero-eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.hero-eyebrow span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 28px;
  animation: fadeUp 0.9s ease 0.2s both;
}
.hero-title .line2 {
  color: var(--gold);
  display: block;
}

.hero-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 40px;
  animation: fadeUp 0.9s ease 0.35s both;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  animation: fadeUp 0.9s ease 0.45s both;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  display: inline-block;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.25s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.25s;
}
.btn-ghost::after {
  content: '→';
  transition: transform 0.25s;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost:hover::after { transform: translateX(4px); }


/* Stats bar */
.stats-bar {
  background: var(--navy3);
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 32px 48px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  animation: counterUp 0.7s ease both;
}
.stat-item:last-child { border-right: none; }
.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 6px;
}

/* Section base */
.home-section { padding: 100px 48px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.section-label-line { width: 32px; height: 2px; background: var(--gold); }
.section-label span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

/* Services */
.services { background: var(--navy2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.service-card {
  background: var(--navy3);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, background 0.3s;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.service-card:hover { background: #1e3358; transform: translateY(-4px); }
.service-card:hover::before { width: 100%; }

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  color: var(--gold);
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

.service-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 900;
  color: rgba(232,160,32,0.05);
  line-height: 1;
  pointer-events: none;
}

/* Why Alpha */
.why {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  right: -200px; top: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,32,0.04) 0%, transparent 70%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.why-list { display: flex; flex-direction: column; gap: 0; }

.why-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.3s;
}
.why-item:hover { border-color: rgba(232,160,32,0.3); }
.why-item:first-child { padding-top: 0; }

.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  min-width: 36px;
  line-height: 1;
  margin-top: 4px;
}

.why-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.why-text p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

.why-visual-inner {
  background: var(--navy3);
  border: 1px solid rgba(232,160,32,0.15);
  padding: 48px;
  position: relative;
}
.why-visual-inner::before {
  content: '';
  position: absolute;
  top: -1px; left: 40px; right: 40px;
  height: 3px;
  background: var(--gold);
}
.coverage-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.route-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.route-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 400;
}
.route-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.route-bar {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.route-bar-fill {
  height: 100%;
  background: var(--gold);
  opacity: 0.4;
}

/* Contact */
.contact {
  background: var(--navy3);
  border-top: 2px solid var(--gold);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-icon {
  width: 42px; height: 42px;
  background: rgba(232,160,32,0.1);
  border: 1px solid rgba(232,160,32,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-value { font-size: 16px; font-weight: 500; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .form-group { display: flex; flex-direction: column; gap: 8px; }
.contact-form .form-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--muted);
  text-transform: uppercase;
}
.contact-form .form-input,
.contact-form .form-textarea {
  background: rgba(10,15,30,0.7);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
}
.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
  border-color: var(--gold);
}
.contact-form .form-textarea { resize: vertical; min-height: 120px; }

.contact-form .form-submit {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.25s, transform 0.2s;
  align-self: flex-start;
}
.contact-form .form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

/* Footer */
footer {
  background: #060b15;
  padding: 48px;
  border-top: 1px solid rgba(232,160,32,0.12);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold2); }

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero-content { padding: 0 24px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .home-section { padding: 60px 24px; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
}
