/* ===== VARIABLES ===== */
:root {
  --navy: #00243d;
  --navy-mid: #003d6b;
  --blue-accent: #0073ab;
  --highlight: #42b0d5;
  --white: #ffffff;
  --off-white: #f4f7fa;
  --light-blue-bg: #edf4f9;
  --text-dark: #1a2a3a;
  --text-muted: #5a7080;
  --border: #d0dde8;
  --red-accent: #e63329;
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  padding: 6px 0;
}
.topbar a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.topbar a:hover { color: var(--highlight); }

/* ===== NAVBAR ===== */
.main-nav {
  background: var(--white);
  border-bottom: 3px solid var(--blue-accent);
  padding: 0;
  transition: box-shadow 0.3s;
  z-index: 1000;
}
.main-nav.scrolled { box-shadow: 0 4px 20px rgba(0,36,61,0.12); }
.brand-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: var(--navy);
  text-decoration: none;
}
.brand-logo span { color: var(--blue-accent); }
.footer-brand { font-size: 2rem; }
.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark) !important;
  padding: 1.2rem 1rem !important;
  letter-spacing: 0.3px;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--blue-accent);
  transition: left 0.3s, right 0.3s;
}
.nav-link:hover::after,
.nav-link.active::after { left: 0; right: 0; }
.nav-link.active { color: var(--blue-accent) !important; }

.btn-primary-custom {
  background: var(--blue-accent);
  color: #fff !important;
  border: none;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  display: inline-block;
}
.btn-primary-custom:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

/* ===== HERO ===== */
/* .hero-section {
  position: relative;
  min-height: 92vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,24,41,0.88) 40%, rgba(0,73,135,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 680px;
  animation: fadeSlideUp 0.9s ease both;
}
.hero-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--highlight);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}
.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 1.3rem;
  animation: bounce 2s infinite;
} */
/* ===== HERO SLIDER ===== */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  min-height: 92vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 24, 41, 0.441) 40%, rgba(0, 72, 135, 0.458) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 680px;
  animation: fadeSlideUp 0.9s ease both;
  margin-top: 110px;
}
.hero-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--highlight);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}
.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 1.3rem;
  animation: bounce 2s infinite;
}


/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  background: var(--navy);
  padding: 0.6rem 0;
}
.breadcrumb { margin: 0; }
.breadcrumb-item a { color: var(--highlight); text-decoration: none; font-size: 0.85rem; }
.breadcrumb-item.active { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ===== SECTIONS ===== */
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--blue-accent);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}
.section-text {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== INTRO SECTION ===== */
.section-intro { padding: 80px 0; }
.img-card-wrap { position: relative; }
.rounded-img { border-radius: 4px; width: 100%; object-fit: cover; height: 440px; }
.img-stat-box {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--blue-accent);
  color: #fff;
  padding: 1.2rem 1.6rem;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0,115,171,0.4);
}
.img-stat-box strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  font-family: 'Barlow Condensed', sans-serif;
}
.img-stat-box span { font-size: 0.82rem; font-weight: 600; opacity: 0.9; }
.check-list { list-style: none; padding: 0; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0;
  font-weight: 500;
  color: var(--text-dark);
}
.check-list li i { color: var(--blue-accent); font-size: 1rem; }

/* ===== CARGO CARDS ===== */
.bg-light-blue { background: var(--light-blue-bg); }
.cargo-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,36,61,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.cargo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,36,61,0.15);
}
.cargo-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cargo-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,24,41,0.4));
}
.cargo-card-body { padding: 1.5rem; }
.cargo-icon {
  width: 46px; height: 46px;
  background: var(--light-blue-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-accent);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}
.cargo-card-body h4 {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.cargo-card-body p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.card-link {
  color: var(--blue-accent);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.8rem;
  transition: gap 0.2s;
}
.card-link:hover { color: var(--navy); }

/* ===== STATS BANNER ===== */
.stats-banner {
  background: var(--navy);
  padding: 60px 0;
}
.stat-item { padding: 1rem; }
.stat-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--highlight);
  line-height: 1;
}
.stat-num sup { font-size: 1.5rem; }
.stat-label {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== FEATURE BOXES ===== */
.feature-box {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.3s, box-shadow 0.3s;
  height: 100%;
}
.feature-box:hover {
  border-color: var(--blue-accent);
  box-shadow: 0 6px 24px rgba(0,115,171,0.1);
}
.feature-icon {
  font-size: 2rem;
  color: var(--blue-accent);
  margin-bottom: 1rem;
}
.feature-box h5 { font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.feature-box p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,36,61,0.82);
}
.cta-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.cta-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
}
.cta-content p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-top: 0.5rem; }

/* ===== FOOTER ===== */
.main-footer { background: var(--navy); color: rgba(255,255,255,0.7); }
.footer-brand { color: #fff; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--highlight); }
.social-icons a {
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
  margin-right: 1rem;
  transition: color 0.2s;
}
.social-icons a:hover { color: var(--highlight); }
.newsletter-form .form-control {
  border-radius: 3px 0 0 3px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.9rem;
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.4); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-bottom a:hover { color: var(--highlight); }

/* ===== PAGE INNER HERO ===== */
.inner-hero {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 0;
  color: #fff;
}
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,24,41,0.88), rgba(0,73,135,0.5));
}
.inner-hero-content { position: relative; z-index: 2; }
.inner-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
}

/* ===== SERVICES PAGE ===== */
.service-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  align-items: flex-start;
}
.service-item:hover {
  border-color: var(--blue-accent);
  box-shadow: 0 6px 24px rgba(0,115,171,0.1);
}
.service-item-icon {
  min-width: 60px; height: 60px;
  background: var(--light-blue-bg);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-accent);
  font-size: 1.5rem;
}
.service-img-side {
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
}

/* ===== ABOUT PAGE ===== */
.timeline { position: relative; padding: 0; list-style: none; }
.timeline::before {
  content: '';
  position: absolute;
  left: 20px; top: 0; bottom: 0;
  width: 2px;
  background: var(--blue-accent);
}
.timeline-item {
  position: relative;
  padding: 0 0 2rem 50px;
}
.timeline-dot {
  position: absolute;
  left: 12px; top: 4px;
  width: 18px; height: 18px;
  background: var(--blue-accent);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--blue-accent);
}
.timeline-year {
  font-weight: 800;
  color: var(--blue-accent);
  font-size: 1rem;
}
.team-card {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  height: 100%;
  transition: box-shadow 0.3s;
}
.team-card:hover { box-shadow: 0 8px 30px rgba(0,36,61,0.1); }
.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
  border: 3px solid var(--blue-accent);
}
.team-card h5 { font-weight: 700; color: var(--navy); }
.team-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ===== CONTACT PAGE ===== */
.contact-card {
  background: var(--light-blue-bg);
  border-radius: 4px;
  padding: 2rem;
  height: 100%;
  text-align: center;
}
.contact-card .contact-icon {
  font-size: 2rem;
  color: var(--blue-accent);
  margin-bottom: 1rem;
}
.contact-form .form-control, .contact-form .form-select {
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.contact-form .form-control:focus {
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px rgba(0,115,171,0.1);
}
.form-label { font-weight: 600; font-size: 0.9rem; color: var(--navy); }

/* ===== QUOTE PAGE ===== */
.quote-sidebar {
  background: var(--navy);
  color: #fff;
  border-radius: 4px;
  padding: 2rem;
}
.quote-sidebar h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.quote-feature { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 1rem; }
.quote-feature i { color: var(--highlight); margin-top: 3px; }
.quote-feature p { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin: 0; }
.quote-feature strong { display: block; color: #fff; font-size: 0.95rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.reveal { opacity: 0; transform: translateY(25px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-section { min-height: 80vh; }
  .section-intro { padding: 50px 0; }
  .img-stat-box { left: 0; }
  .service-item { flex-direction: column; }
  .timeline::before { left: 12px; }
  .timeline-item { padding-left: 36px; }
}
