/* ===========================
   FREIGHT PROFESSIONALS CSS
   =========================== */

:root {
  --blue: #007BFF;
  --blue-dark: #0063DB;
  --blue-light: #E8F7FF;
  --dark: #0f1419;
  --dark2: #1a2332;
  --gray: #64748b;
  --gray-light: #f8fafc;
  --white: #ffffff;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,123,255,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
}

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

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

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,123,255,0.08);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 40px; width: auto; object-fit: contain; }
.logo-text { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--blue); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 12px;
  border-top: 1px solid #eee;
}
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  padding: 8px 0;
}
.mobile-menu.open { display: flex; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,123,255,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--dark);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--blue); }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; padding: 14px; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,123,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 60px;
}
.badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.badge {
  background: var(--blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--font-head);
  letter-spacing: 0.5px;
}
.badge-text {
  font-size: 0.9rem;
  color: var(--blue);
  font-weight: 600;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-img img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.hero-wave {
  height: 60px;
  overflow: hidden;
}
.hero-wave svg {
  width: 100%;
  height: 100%;
}

/* ---- PAGE HEADER ---- */
.page-header {
  background: linear-gradient(135deg, #f0f7ff 0%, #dbeeff 100%);
  padding: 80px 0 60px;
  text-align: center;
}
.page-header h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--dark);
}
.page-header p {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}
.bg-blue-gradient {
  background: linear-gradient(135deg, var(--blue) 0%, #0052cc 100%);
  color: white;
}
.bg-blue-gradient h1,
.bg-blue-gradient p { color: white; }

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }
.bg-light { background: var(--gray-light); }
.bg-blue { background: var(--blue); color: white; }
.bg-blue h2, .bg-blue .subtitle { color: white; }
.bg-dark { background: var(--dark); color: white; }
.bg-dark h2, .bg-dark .subtitle { color: white; }

.section-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 40px;
}
.center { text-align: center; }
.center .subtitle { margin: 0 auto 40px; }

/* ---- TWO COL ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ---- CHECK LIST ---- */
.check-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check-list li {
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.5;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ---- STATS ---- */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: white;
  border: 1px solid rgba(0,123,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
}
.stat-label {
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 4px;
}

/* ---- CARDS ---- */
.card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
}
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.card p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-icon { font-size: 2.2rem; margin-bottom: 14px; }
.service-card h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}
.service-card p { font-size: 0.9rem; color: var(--gray); }

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
}
.info-icon { font-size: 1.8rem; flex-shrink: 0; }
.info-card h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--dark);
}
.info-card p { font-size: 0.9rem; color: var(--gray); }

.workflow-box {
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(0,123,255,0.15);
}
.workflow-box h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--dark);
}
.steps { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.steps li { display: flex; align-items: flex-start; gap: 14px; }
.step-num {
  background: var(--blue);
  color: white;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.steps p { font-size: 0.9rem; color: var(--gray); }

/* ---- FORM ---- */
.contact-form-wrap {
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.05);
}
.contact-form-wrap h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.contact-form-wrap > p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  font-family: var(--font-head);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: white;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}
.form-group textarea { resize: vertical; }
.form-note {
  font-size: 0.8rem;
  color: var(--gray);
  text-align: center;
  margin-top: -8px;
}

/* ---- MAP ---- */
.map-placeholder {
  margin-top: 32px;
  background: var(--gray-light);
  border-radius: var(--radius);
  border: 2px dashed rgba(0,123,255,0.2);
  overflow: hidden;
}
.map-inner {
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.map-inner span { font-size: 3rem; }
.map-inner p { color: var(--gray); }

/* ---- CONDUCTOR PAGE ---- */
.benefits-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}
.benefit-pill {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
}
.req-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.req-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.req-icon { font-size: 1.6rem; flex-shrink: 0; }
.req-list strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.req-list p { font-size: 0.88rem; color: var(--gray); }

/* ---- FOOTER ---- */
.footer {
  background: var(--dark2);
  color: rgba(255,255,255,0.6);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer p { font-size: 0.88rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { order: -1; }
  .hero-img img { aspect-ratio: 16/9; }
  .two-col { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .navbar .btn { display: none; }
  .menu-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .footer-inner { flex-direction: column; text-align: center; }
  .benefits-row { flex-direction: column; align-items: center; }
  .contact-form-wrap { padding: 24px 20px; }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeUp 0.7s ease both; }
.hero-img { animation: fadeUp 0.7s ease 0.2s both; }
