/* ===== SCROLL ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

[data-animate="fade-up"] {
  transform: translateY(52px);
  filter: blur(4px);
}
[data-animate="fade-left"] {
  transform: translateX(-64px);
  filter: blur(4px);
}
[data-animate="fade-right"] {
  transform: translateX(64px);
  filter: blur(4px);
}
[data-animate="zoom-up"] {
  transform: scale(0.93) translateY(28px);
  filter: blur(5px);
}
[data-animate="fade-down"] {
  transform: translateY(-40px);
  filter: blur(4px);
}

[data-animate].in-view {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* Section h2 — animated underline draws left to right on entry */
.section-header h2 { position: relative; display: inline-block; }
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0;
  height: 3px;
  width: 0;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}
.section-header.in-view h2::after { width: 56px; }
.section-header.light h2::after  { background: rgba(255,255,255,0.6); }

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; filter: none; transition: none; }
  .section-header h2::after { width: 56px; transition: none; }
}

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

:root {
  --navy:        #1a2e6e;
  --orange:      #e8651a;
  --orange-dark: #c9520f;
  --navy-dark:   #111e50;
  --navy-light:  #243580;
  --gray:        #f5f6fa;
  --text:        #333;
  --muted:       #666;
  --white:       #fff;
  --shadow:      0 4px 24px rgba(26,46,110,0.10);
  --radius:      12px;
  --transition:  0.25s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.65; background: var(--white); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-pad { padding: 90px 0; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,101,26,0.35);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.btn-login {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background var(--transition), transform var(--transition);
}
.btn-login:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-login::after { display: none !important; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 55px; }
.section-tag {
  display: inline-block;
  background: rgba(232,101,26,0.12);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-header h2 { font-size: 2.3rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.section-header p { color: var(--muted); max-width: 560px; margin: 0 auto; font-size: 1rem; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.75); }
.section-header.light .section-tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar-inner { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.topbar-inner span { display: flex; align-items: center; gap: 7px; }
.topbar-right { margin-left: auto; }
.topbar i { color: var(--orange); }

/* Topbar inline tracking form */
.topbar-track {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 4px;
  overflow: hidden;
}
.topbar-track i {
  padding: 0 10px;
  font-size: 0.78rem;
  color: var(--orange);
  flex-shrink: 0;
}
.topbar-track input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 0.8rem;
  padding: 6px 4px;
  width: 200px;
  font-family: inherit;
}
.topbar-track input::placeholder { color: rgba(255,255,255,0.50); }
.topbar-track button {
  background: var(--orange);
  border: none;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
  font-family: inherit;
}
.topbar-track button:hover { background: var(--orange-dark); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(26,46,110,0.10);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

/* LOGO */
.nav-logo img {
  height: 113px;
  width: auto;
  object-fit: contain;
}

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  transition: color var(--transition);
}
.nav-links a:not(.btn-login)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:not(.btn-login):hover,
.nav-links a.active { color: var(--orange); }
.nav-links a:not(.btn-login):hover::after,
.nav-links a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--navy);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 1.3rem;
  color: var(--navy);
  cursor: pointer;
}

/* ===== SERVICES DROPDOWN ===== */
.nav-item.has-dropdown {
  position: relative;
}
.nav-services-link {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-dropdown-arrow {
  font-size: 0.65rem;
  transition: transform var(--transition);
}
.nav-item.has-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-top: 3px solid var(--orange);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 12px 40px rgba(26,46,110,0.14);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  padding-top: 4px;
}
/* Bridge the gap between link and menu so hover stays active */
.nav-item.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 8px;
}
.nav-item.has-dropdown:hover .dropdown-menu {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

/* Mega menu columns */
.mega-menu { padding: 0; }
.mega-col {
  padding: 20px 24px;
  min-width: 210px;
  border-right: 1px solid #eef0f8;
}
.mega-heading { white-space: nowrap; }
.mega-col:last-child { border-right: none; }
.mega-heading {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eef0f8;
  transition: color var(--transition);
}
a.mega-heading:hover { color: var(--orange-dark); }
a.mega-heading::after { display: none !important; }
.mega-col ul { list-style: none; }
.mega-col ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s, padding-left 0.18s;
}
.mega-col ul li a i { font-size: 0.78rem; color: var(--orange); width: 14px; text-align: center; }
.mega-col ul li a::after { display: none !important; }
.mega-col ul li a:hover {
  background: #f4f6ff;
  color: var(--orange);
  padding-left: 14px;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 78vh;
  min-height: 500px;
  overflow: hidden;
}

.slides-wrapper {
  display: flex;
  height: 100%;
  transition: transform 0.85s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

/* Slide images */
.slide-1 {
  background-image: url('../images/slide-courier.jpg');
  background-position: center top;
  background-color: #1a2e6e;
}
.slide-2 {
  background-image: url('../images/banner-cargo.jpg');
  background-position: center center;
  background-color: #0d3456;
}
.slide-3 {
  background-image: url('../images/banner-international.jpg');
  background-position: center center;
  background-color: #141e6e;
}
.slide-4 {
  background-image: url('../images/slide-logistics.jpg');
  background-position: center center;
  background-color: #0a1832;
}

/* Even overlay — photo visible but text always readable */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 40, 0.58);
}

/* Content — vertically centered, centered text */
.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* ── Default: all elements hidden ── */
.slide-content::before,
.slide-content h1,
.slide-content .slide-title,
.slide-tagline {
  opacity: 0;
}

/* ── Orange bar: grows from center ── */
.slide-content::before {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 0 auto 20px;
  transform-origin: center;
}

/* ── Active slide: staggered entry ── */
.slide.is-active .slide-content::before {
  animation: barGrow 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}
.slide.is-active .slide-content h1,
.slide.is-active .slide-content .slide-title {
  animation: slideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}
.slide.is-active .slide-tagline {
  animation: slideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.58s forwards;
}

@keyframes barGrow {
  from { opacity: 0; transform: scaleX(0); }
  to   { opacity: 1; transform: scaleX(1); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(28px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0);   }
}

/* Heading — service name, single line */
.slide-content h1,
.slide-content .slide-title {
  font-size: clamp(1.4rem, 2.6vw, 2.4rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1.2;
  letter-spacing: 0.2px;
  white-space: nowrap;
  margin: 0 auto 14px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

/* Tagline — second line */
.slide-tagline {
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.90);
  letter-spacing: 0.3px;
  margin: 0 auto;
  white-space: nowrap;
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  backdrop-filter: blur(4px);
}
.slider-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-50%) scale(1.08);
}
.slider-prev { left: 28px; }
.slider-next { right: 28px; }

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), width var(--transition);
}
.dot.active {
  background: var(--orange);
  width: 28px;
  border-radius: 6px;
}

/* ===== SERVICES ===== */
.services { background: var(--gray); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.18); }
.service-card:hover img { transform: scale(1.07); }
.service-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10, 18, 50, 0.62);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  padding: 14px 18px;
  transition: background var(--transition);
}
.service-card:hover .service-card-overlay {
  background: rgba(232, 101, 26, 0.82);
}
.service-card-overlay h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

/* ===== WHY CHOOSE US ===== */
.why-us { background: var(--gray); padding-bottom: 48px; }
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.why-us-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  aspect-ratio: 4 / 5;
}
.why-us-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.why-us-header { text-align: left; margin-bottom: 28px; }
.why-us-header::after { margin-left: 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--white);
  border: 1px solid #e8ecf5;
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: left;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--orange);
}
.why-card i {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 14px;
  display: block;
}
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p  { color: var(--muted); font-size: 0.88rem; }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--white); }
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}
.step {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 44px 32px;
  text-align: center;
  flex: 1;
  max-width: 300px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(26,46,110,0.07);
  position: absolute;
  top: 10px; right: 16px;
  line-height: 1;
}
.step-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  margin: 0 auto 22px;
}
.step h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step p  { color: var(--muted); font-size: 0.9rem; }
.step-arrow {
  font-size: 1.5rem;
  color: var(--orange);
  align-self: center;
  flex-shrink: 0;
}

/* ===== STATS BAR ===== */
.stats-bar { background: var(--orange); padding: 65px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-num   { font-size: 2.8rem; font-weight: 800; display: inline-block; line-height: 1; }
.stat-suffix{ font-size: 2rem; font-weight: 800; }
.stat-item p { font-size: 0.9rem; opacity: 0.88; margin-top: 6px; letter-spacing: 0.3px; }

/* ===== CTA STRIP ===== */
/* ===== TRACK WIDGET STRIP ===== */
.track-strip {
  position: relative;
  background: url('../images/svc-freight.jpg') center center / cover no-repeat;
  padding: 64px 0;
}
.track-strip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 40, 0.62);
}
.track-widget {
  position: relative;
  background: #fff;
  border-radius: 6px;
  padding: 32px 36px 0;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 12px 48px rgba(0,0,0,0.22);
  overflow: hidden;
}
.track-widget-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.track-widget-bar {
  display: inline-block;
  width: 5px;
  height: 28px;
  background: var(--orange);
  border-radius: 3px;
  flex-shrink: 0;
}
.track-widget-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  letter-spacing: 0.04em;
}
.track-widget-header p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}
.track-widget-form {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
}
.track-widget-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid #dde3f0;
  border-right: none;
  border-radius: 4px 0 0 4px;
  font-size: 0.95rem;
  color: var(--navy);
  outline: none;
  transition: border-color var(--transition);
}
.track-widget-form input:focus { border-color: var(--orange); }
.track-widget-form button {
  padding: 14px 28px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 0 4px 4px 0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.track-widget-form button:hover { background: #c8541a; }
.track-widget-accent {
  height: 5px;
  background: linear-gradient(90deg, var(--orange) 0%, #f5a623 100%);
  margin: 0 -36px;
}

/* ===== FOOTER ===== */
.footer {
  background-color: #1e2028;
  color: rgba(255,255,255,0.78);
  padding: 70px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 50px;
  padding-bottom: 55px;
}
.footer-logo {
  height: 80px;
  margin-bottom: 18px;
  background: white;
  padding: 8px 12px;
  border-radius: 10px;
  object-fit: contain;
}
.footer-col > p { font-size: 0.88rem; line-height: 1.75; margin-bottom: 8px; }
.footer-col > p i { color: var(--orange); margin-right: 8px; }
.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col h4::after {
  content: '';
  display: block;
  width: 30px; height: 2px;
  background: var(--orange);
  margin-top: 8px;
  border-radius: 2px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.68);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-col ul li a:hover { color: var(--orange); padding-left: 5px; }

.social-links { display: flex; gap: 10px; margin-top: 22px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.social-links a:hover { background: var(--orange); color: var(--white); border-color: var(--orange); transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 40px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
}
.footer-bottom a {
  color: var(--orange);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: #fff; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(232,101,26,0.45);
  display: none;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  z-index: 999;
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--orange-dark); transform: translateY(-3px); }

/* ===== PARALLAX TAGLINE SECTION ===== */
.parallax-section {
  position: relative;
  background-image:
    linear-gradient(rgba(17,30,80,0.78), rgba(17,30,80,0.78)),
    url('../images/parallax-bg.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-color: #1a2e6e;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.parallax-section .section-tag {
  background: rgba(232,101,26,0.25);
  color: #ffb07a;
  border: 1px solid rgba(232,101,26,0.4);
}

.parallax-tagline {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin: 16px 0 20px;
}

.parallax-tagline span { color: var(--orange); }

.parallax-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

/* Decorative quote marks */
.parallax-content::before {
  content: '\201C';
  position: absolute;
  top: -40px; left: -20px;
  font-size: 10rem;
  color: rgba(232,101,26,0.12);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

/* ===== INNER PAGE HERO (shared by sub-pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
  padding: 70px 0;
  text-align: center;
  color: var(--white);
}
.page-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 10px; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1rem; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
.breadcrumb a { color: var(--orange); }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-us-inner   { grid-template-columns: 1fr; gap: 36px; }
  .why-us-image   { aspect-ratio: 16 / 7; }
  .footer-inner   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle  { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 12px 0 18px;
    gap: 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    z-index: 999;
  }
  .nav-links a:not(.btn-login)::after { display: none; }
  .nav-links > a,
  .nav-links > .nav-item {
    padding: 13px 6%;
    border-bottom: 1px solid #f0f1f7;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
  }
  .nav-links > a:last-child,
  .nav-links > .nav-item:last-child { border-bottom: none; }
  .nav-links.open { display: flex; }
  .navbar { position: relative; }

  /* Mobile dropdown */
  .nav-item.has-dropdown { width: 100%; }
  .nav-services-link { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0; }
  .dropdown-menu {
    position: static;
    transform: none !important;
    left: auto;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--orange);
    border-radius: 0;
    width: 100%;
    padding: 4px 0;
    margin-top: 6px;
    background: #f4f6ff;
    display: none;
    opacity: 1;
    pointer-events: auto;
    flex-direction: column;
  }
  .nav-item.has-dropdown:hover .dropdown-menu { display: none; }
  .nav-item.has-dropdown.mobile-open .dropdown-menu { display: flex; }
  .nav-item.has-dropdown.mobile-open .nav-dropdown-arrow { transform: rotate(180deg); }
  .mega-col {
    padding: 10px 14px;
    min-width: 0;
    border-right: none;
    border-bottom: 1px solid #dde1f0;
  }
  .mega-col:last-child { border-bottom: none; }
  .mega-col ul li a { padding: 7px 8px; font-size: 0.84rem; }
  .mega-col ul li a:hover { padding-left: 14px; }

  .hero-slider { height: 56vh; min-height: 360px; }
  .slider-arrow { width: 38px; height: 38px; font-size: 0.85rem; }
  .slider-prev  { left: 12px; }
  .slider-next  { right: 12px; }
  .slide-category { font-size: 0.68rem; letter-spacing: 2px; }
  .slide-category::before, .slide-category::after { width: 28px; }

  .steps { flex-direction: column; align-items: center; }
  .step  { max-width: 100%; width: 100%; }
  .step-arrow { transform: rotate(90deg); }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns  { justify-content: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .topbar-track { display: none; }
  .section-header h2 { font-size: 1.8rem; }
}

/* ===== MOBILE TRACK PANEL ===== */
.mobile-track-panel {
  display: none;
  background: var(--navy);
  padding: 14px 16px;
}
.mobile-track-panel form {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  overflow: hidden;
}
.mobile-track-panel i {
  color: var(--orange);
  padding: 0 12px;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.mobile-track-panel input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.88rem;
  padding: 11px 0;
}
.mobile-track-panel input::placeholder { color: rgba(255,255,255,0.55); }
.mobile-track-panel button {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 11px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .mobile-track-panel { display: block; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .why-us-header { text-align: center; }
  .why-us-header::after { margin-left: auto; }
  .footer-inner  { grid-template-columns: 1fr; }
  .slide-btns    { flex-direction: column; }
  .nav-logo img  { height: 80px; }
}
