/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0d1f3c;
  --navy-dark: #081529;
  --orange: #e07820;
  --orange-dark: #c5650e;
  --white:  #ffffff;
  --light:  #f4f6f9;
  --grey:   #6b7280;
  --border: #e2e8f0;
  --font:   'Arial', Helvetica, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: #1e293b;
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--orange);
  color: var(--white);
}

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

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 12px 0;
  border-top: 1px solid var(--border);
}

.mobile-menu a {
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a.active { background: var(--orange); color: var(--white); }

.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(8,21,41,0.88) 0%, rgba(13,31,60,0.80) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="60" height="60" fill="%230d1f3c"/><path d="M0 30h60M30 0v60" stroke="%23ffffff08" stroke-width="1"/></svg>') repeat;
  background-color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 20% 50%, rgba(224,120,32,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 80% 30%, rgba(13,31,60,0.6) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; max-width: 800px; }

.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 span { color: var(--orange); }

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 36px;
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224,120,32,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ===== SECTION SHARED ===== */
section { padding: 80px 24px; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 15px;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.8;
}

/* ===== SERVICES ===== */
.services { background: var(--light); }

.services-header { text-align: center; margin-bottom: 52px; }
.services-header .section-sub { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border-bottom: 4px solid transparent;
  transition: all 0.3s;
}

.service-card:hover {
  border-bottom-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(224,120,32,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.75;
}

/* ===== WHY US ===== */
.why-us { background: var(--white); }

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-visual {
  background: var(--navy);
  border-radius: 14px;
  padding: 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-truck-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 14px 14px 0 0;
}

.why-visual h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  padding: 24px 32px 0;
}
.why-visual p { font-size: 14px; color: rgba(255,255,255,0.72); padding: 0 32px 28px; }

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

.why-item { display: flex; gap: 16px; align-items: flex-start; }

.why-item-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(224,120,32,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.why-item-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-item-text p { font-size: 14px; color: var(--grey); line-height: 1.65; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--navy);
  padding: 70px 24px;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  margin-bottom: 32px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

.footer-brand img {
  height: 100px;
  margin-bottom: 16px;
  background: var(--white);
  border-radius: 8px;
  padding: 6px 12px;
}
.footer-brand p { font-size: 14px; line-height: 1.75; max-width: 300px; }

.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  transition: all 0.2s;
  text-decoration: none;
}
.footer-social a:hover { background: var(--orange); color: var(--white); }

/* ===== CONTACT PAGE ===== */
.page-hero {
  background: var(--navy);
  padding: 150px 24px 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p { color: rgba(255,255,255,0.7); font-size: 15px; }

.contact-section { background: var(--light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.info-card {
  background: var(--white);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border-left: 4px solid var(--orange);
}

.info-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-text p, .info-text a {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.6;
}

.info-text a:hover { color: var(--orange); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.contact-form-wrap h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  font-family: var(--font);
  color: #1e293b;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(224,120,32,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-msg {
  display: none;
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

.form-msg.success {
  display: block;
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.form-msg.error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* ===== ABOUT PAGE ===== */
.about-mission { background: var(--white); }

.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mission-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.m-stat {
  background: var(--light);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  padding: 20px 24px;
}

.m-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.m-stat-label {
  font-size: 14px;
  color: var(--grey);
  font-weight: 600;
}

.team-section { background: var(--light); }

.team-header {
  text-align: center;
  margin-bottom: 52px;
}

.team-header .section-sub { margin: 0 auto; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.team-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}

.team-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}

.team-card:hover .team-photo-wrap img {
  transform: scale(1.04);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,21,41,0.97) 0%, rgba(8,21,41,0.88) 60%, rgba(8,21,41,0.3) 100%);
  display: flex;
  align-items: flex-end;
  padding: 28px 24px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-overlay p {
  color: rgba(255,255,255,0.9);
  font-size: 13.5px;
  line-height: 1.75;
  margin: 0;
}

.team-name-bar {
  padding: 20px 24px;
  border-top: 3px solid var(--orange);
}

.team-name-bar h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.team-role {
  display: inline-block;
  background: rgba(224,120,32,0.12);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .why-us-inner { grid-template-columns: 1fr; }
  .why-truck-img { height: 220px; border-radius: 14px 14px 0 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .mission-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  section { padding: 56px 20px; }
}
