/* ===== HOME PAGE STYLES — CTN LOGISTICS ===== */

.home-hero {
  position: relative;
  background: var(--navy-deep);
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 4px solid var(--blue);
}
#routeCanvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.55; pointer-events: none; }
.hero-content { position: relative; z-index: 2; padding-top: var(--nav-h); max-width: 760px; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(30,136,229,0.12);
  border: 1px solid rgba(30,136,229,0.35);
  color: var(--blue-bright);
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 100px; margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 5.8vw, 72px);
  font-weight: 900; color: var(--white);
  line-height: 1.06; letter-spacing: -0.02em; margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-content p {
  font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.75;
  max-width: 600px; margin-bottom: 40px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.8s 0.3s ease both; }

/* ===== WHO WE ARE / INTRO ===== */
.intro-strip { background: var(--off-white); }
.intro-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.intro-img-col { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--navy-mid); }
.intro-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== SERVICES OVERVIEW ===== */
.text-center { text-align: center; }
.section-hd { margin-bottom: 60px; }
.section-hd .section-intro { margin: 0 auto; }

.services-hex-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-tile {
  display: block;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.svc-tile::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--navy-deep));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.svc-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.svc-tile:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 52px; height: 52px;
  background: var(--navy-deep);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-bright); margin-bottom: 18px;
}
.svc-icon svg { width: 24px; height: 24px; }
.svc-tile h3 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--navy-deep); margin-bottom: 10px; line-height: 1.3; }
.svc-tile p { font-size: 13px; color: var(--gray-600); line-height: 1.65; margin-bottom: 16px; }
.svc-link { font-family: var(--font-head); font-size: 12px; font-weight: 700; color: var(--blue); letter-spacing: 0.04em; }

/* ===== FEATURE SECTION ===== */
.feature-section { background: var(--navy-deep); }
.feature-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.feature-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--navy-mid); }
.feature-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(10,31,77,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(30,136,229,0.3);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 100px;
}
.feature-pillars { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.fp { display: flex; gap: 16px; align-items: flex-start; }
.fp-dot { width: 10px; height: 10px; background: var(--blue-bright); border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.fp strong { display: block; font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.fp p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ===== COMING SOON BAND ===== */
.coming-soon-band {
  background: linear-gradient(120deg, var(--blue) 0%, var(--navy-deep) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.coming-soon-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; z-index: 2; }
.cs-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 16px;
}
.coming-soon-band h2 { font-family: var(--font-head); font-size: clamp(24px,3vw,36px); font-weight: 800; color: var(--white); margin-bottom: 10px; }
.coming-soon-band p { font-size: 16px; color: rgba(255,255,255,0.8); max-width: 560px; line-height: 1.7; }
.cs-route {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  color: var(--white); margin-top: 16px;
  white-space: nowrap;
}
.cs-route .city { background: rgba(255,255,255,0.15); padding: 6px 14px; border-radius: 100px; }
.cs-route .arrow { color: rgba(255,255,255,0.6); }

/* ===== CTA BAND ===== */
.cta-band { background: var(--blue); padding: 64px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { font-family: var(--font-head); font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--white); margin-bottom: 6px; }
.cta-band p { font-size: 16px; color: rgba(255,255,255,0.85); }
.cta-band .btn-primary { background: var(--white); color: var(--navy-deep); white-space: nowrap; flex-shrink: 0; }
.cta-band .btn-primary:hover { background: var(--off-white); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-hex-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; gap: 48px; }
  .coming-soon-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
  .services-hex-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-band-inner { flex-direction: column; text-align: center; }
}
