/* ============================================================
   International 3PL — Main Stylesheet
   ============================================================ */

/* ── Variables ── */
:root {
  --navy:         #0a1628;
  --navy-mid:     #122040;
  --navy-light:   #1e3560;
  --accent:       #00c896;
  --accent-dark:  #009e78;
  --orange:       #f26522;
  --white:        #ffffff;
  --off-white:    #f4f7f6;
  --gray-lt:      #e8edf3;
  --gray-mid:     #8fa3b8;
  --text-body:    #2c3e55;
  --text-muted:   #6b84a0;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --shadow-card:  0 2px 20px rgba(10,22,40,0.08);
  --shadow-hover: 0 8px 32px rgba(10,22,40,0.14);
  --font-head:    'Syne', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --max-w:        1200px;
  --section-pad:  5rem 2rem;
}

/* ── Resets & Base ── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--navy);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
p { margin: 0 0 1rem; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Utility ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--navy);
}
.btn-primary:hover {
  background: #00e6ad;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,200,150,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* ============================================================
   NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s;
  overflow: visible; /* allow dropdowns to escape below the bar */
}
#site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow: visible; /* must be visible so dropdowns can escape the bar */
}

/* ── Logo: image if uploaded, text fallback ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
}
/* Text-only fallback (shown when no image) */
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.nav-logo-text span { color: var(--accent); }

/* ── Centre nav links — allow them to shrink/wrap gracefully ── */
.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: visible;     /* MUST be visible — overflow:hidden clips dropdowns */
  flex: 1 1 auto;
  justify-content: center;
  height: 100%;          /* fill full nav height so hover zone reaches the bar edge */
}
.nav-links li { flex-shrink: 1; }
.nav-links a {
  display: block;
  padding: 0.25rem 0.85rem;
  font-size: 0.84rem;
  white-space: nowrap;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

/* ── Right actions ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
  border: 1.5px solid rgba(0,200,150,0.4);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all 0.2s;
}
.nav-phone svg { width: 14px; height: 14px; flex-shrink: 0; }
.nav-phone:hover {
  background: rgba(0,200,150,0.1);
  border-color: var(--accent);
}
.nav-actions .btn {
  padding: 0.45rem 1.1rem;
  font-size: 0.84rem;
  white-space: nowrap;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 72px;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,150,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,150,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-glow-1 {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,200,150,0.1) 0%, transparent 65%);
  top: 50%; right: -150px;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(242,101,34,0.08) 0%, transparent 65%);
  top: 10%; left: -80px;
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,200,150,0.12);
  border: 1px solid rgba(0,200,150,0.3);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}
.hero-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.2s;
  white-space: nowrap;
}
.hero-contact-pill svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.pill-phone {
  background: rgba(0,200,150,0.15);
  border: 1.5px solid rgba(0,200,150,0.5);
  color: var(--accent);
  font-size: 1.05rem;
  padding: 0.6rem 1.3rem;
}
.pill-phone:hover {
  background: rgba(0,200,150,0.25);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(0,200,150,0.25);
}
.pill-email {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
}
.pill-email:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-1px);
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.25rem;
  line-height: 1.35;
}

/* ─── HERO SVG illustration ─── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual svg {
  width: 100%;
  max-width: 520px;
  height: auto;
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: var(--navy-mid);
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(0,200,150,0.15);
  border-bottom: 1px solid rgba(0,200,150,0.15);
}
.stats-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.stat-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: var(--section-pad);
  background: var(--white);
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.875rem;
}
.section-header p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.services-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.28s;
}
.service-card:hover {
  border-color: rgba(0,200,150,0.3);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 48px; height: 48px;
  background: rgba(0,200,150,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent-dark);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
.service-card p {
  font-size: 0.9125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.service-bullets {
  list-style: none;
  padding: 0;
}
.service-bullets li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.service-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: var(--section-pad);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.how-it-works .hero-bg-grid {
  position: absolute; inset: 0;
}
.how-it-works-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.how-it-works .section-label { color: var(--accent); }
.how-it-works .section-header { text-align: left; margin: 0 0 3.5rem; }
.how-it-works .section-header h2 { color: var(--white); }
.how-it-works .section-header p { color: rgba(255,255,255,0.55); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
}
.step-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0,200,150,0.18);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}
.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.625rem;
}
.step-card p {
  font-size: 0.9125rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   TECHNOLOGY
   ============================================================ */
.technology {
  padding: var(--section-pad);
  background: var(--off-white);
}
.tech-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.tech-content {}
.tech-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.tech-content > p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.tech-features { display: flex; flex-direction: column; gap: 1.25rem; }
.tech-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.tech-feat-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
}
.tech-feat-icon svg { width: 20px; height: 20px; }
.tech-feature h4 { font-size: 0.975rem; font-weight: 600; margin-bottom: 0.25rem; }
.tech-feature p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }
.tech-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.tech-stat-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.tech-stat-box.highlight {
  background: rgba(0,200,150,0.12);
  border-color: rgba(0,200,150,0.3);
  grid-column: 1 / -1;
}
.tech-stat-val {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.tech-stat-lbl {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.25rem;
  line-height: 1.4;
}

/* ============================================================
   INDUSTRIES / WHO WE SERVE
   ============================================================ */
.industries {
  padding: var(--section-pad);
  background: var(--white);
}
.industries-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.industry-card {
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.25s;
}
.industry-card:hover {
  border-color: rgba(0,200,150,0.35);
  box-shadow: var(--shadow-card);
}
.industry-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.625rem; }
.industry-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  padding: var(--section-pad);
  background: var(--off-white);
}
.why-grid {
  max-width: var(--max-w);
  margin: 3.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.25rem;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: box-shadow 0.25s;
}
.why-card:hover { box-shadow: var(--shadow-card); }
.why-card-icon {
  color: var(--accent-dark);
  margin-bottom: 1rem;
}
.why-card-icon svg { width: 28px; height: 28px; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--section-pad);
  background: var(--white);
}
.testimonials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.testimonial-stars {
  color: var(--gold, #f5a623);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.testimonial-card blockquote {
  font-size: 0.9375rem;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.65;
  margin: 0 0 1.25rem;
}
.testimonial-cite { font-size: 0.82rem; color: var(--text-muted); }
.testimonial-cite strong { display: block; color: var(--navy); font-size: 0.9rem; margin-bottom: 0.1rem; }

/* ============================================================
   RESOURCES
   ============================================================ */
.resources {
  padding: var(--section-pad);
  background: var(--off-white);
}
.resources-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.resources-cols {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.resources-col h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.resource-links li + li { margin-top: 0.5rem; }
.resource-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.resource-links a::before {
  content: '→';
  color: var(--accent);
  font-size: 0.8rem;
}
.resource-links a:hover { color: var(--navy); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding: 5rem 2rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band .hero-bg-grid { position: absolute; inset: 0; }
.cta-band-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.cta-band p { font-size: 1.0625rem; color: rgba(255,255,255,0.55); margin-bottom: 2rem; }
.cta-band-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
/* Big visible phone & email in the CTA band */
.cta-contact-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  transition: all 0.2s;
}
.cta-contact-block svg { width: 20px; height: 20px; flex-shrink: 0; }
.cta-phone-block {
  background: rgba(0,200,150,0.15);
  border: 2px solid rgba(0,200,150,0.5);
  color: var(--accent);
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}
.cta-phone-block:hover {
  background: rgba(0,200,150,0.25);
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(0,200,150,0.25);
  transform: translateY(-2px);
}
.cta-email-block {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.cta-email-block:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
.cta-divider {
  color: rgba(255,255,255,0.2);
  font-size: 1.5rem;
  font-weight: 200;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #07101f;
  padding: 3rem 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--accent); }
.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.footer-contact-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-contact-link svg { width: 16px; height: 16px; }
.footer-phone-link { color: var(--accent); }
.footer-phone-link:hover { color: #00e6ad; }
.footer-email-link { color: rgba(255,255,255,0.6); }
.footer-email-link:hover { color: var(--white); }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li + li { margin-top: 0.5rem; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; }
.fade-up.in-view { animation: fade-up 0.55s ease forwards; }
.fade-up:nth-child(2) { animation-delay: 0.1s; }
.fade-up:nth-child(3) { animation-delay: 0.2s; }
.fade-up:nth-child(4) { animation-delay: 0.3s; }
.fade-up:nth-child(5) { animation-delay: 0.4s; }
.fade-up:nth-child(6) { animation-delay: 0.5s; }

/* ── SVG path animations ── */
@keyframes dash {
  to { stroke-dashoffset: 0; }
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; r: 4; }
  50%      { opacity: 0.6; r: 6; }
}
@keyframes float-box {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes ship-move {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(18px); }
  100% { transform: translateX(0); }
}
.hero-ship { animation: ship-move 4s ease-in-out infinite; }
.hero-dot  { animation: pulse-dot 2s ease-in-out infinite; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* 1200 – 1024: hide phone label text, keep icon */
@media (max-width: 1100px) {
  .nav-phone-label { display: none; }
  .nav-links a { padding: 0.25rem 0.6rem; font-size: 0.8rem; }
}

@media (max-width: 1024px) {
  .hero { padding-top: 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; padding-top: 4rem; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .tech-inner { grid-template-columns: 1fr; }
  .tech-visual { grid-column: 1; }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-band-inner { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .resources-cols { grid-template-columns: 1fr 1fr; }
}

/* Hide nav links entirely below 860px; show hamburger */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  /* Also hide the phone pill to make room on small tablets */
  .nav-phone { display: none; }
}

@media (max-width: 768px) {
  :root { --section-pad: 3.5rem 1.25rem; }
  .nav-inner { padding: 0 1rem; height: 64px; }
  .nav-logo-img { height: 36px; }
  .hero { padding-top: 64px; }
  .hero-inner { padding: 3rem 1.25rem 2.5rem; }
  .hero h1 { font-size: 2.1rem; }
  .hero-stats { gap: 1.25rem; flex-wrap: wrap; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .resources-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-band-contact { flex-direction: column; }
  .cta-divider { display: none; }
  .hero-contact-row { flex-direction: column; align-items: flex-start; }
  .stats-band-inner { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .stats-band-inner { grid-template-columns: 1fr 1fr; }
  .nav-actions .btn-primary { padding: 0.4rem 0.85rem; font-size: 0.8rem; }
}

/* ── Mobile nav open (dropdown) ── */
@media (max-width: 860px) {
  #nav-links.nav-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(7,14,28,0.99);
    padding: 0.5rem 0 1.5rem;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 499;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  }
  #nav-links.nav-open li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  #nav-links.nav-open a {
    display: block;
    padding: 0.9rem 1.5rem;
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
  }
  #nav-links.nav-open a:hover { color: var(--accent); }
  /* Also show phone inside mobile nav */
  #nav-links.nav-open::after {
    content: "(305) 800-SHIP";
    display: block;
    padding: 1rem 1.5rem 0;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  #nav-links.nav-open { top: 64px; }
}

/* ============================================================
   NAV DROPDOWNS (WordPress sub-menus)
   ============================================================ */
.nav-links li {
  position: relative;
  display: flex;
  align-items: center;
}

/* Extend the li hover area downward so the gap between link and menu
   doesn't break the hover state */
.nav-links li:has(> .sub-menu)::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px; /* bridges the gap between nav bottom and dropdown top */
}

/* The sub-menu ul generated by WordPress */
.nav-links .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
  min-width: 230px;
  background: #0d1e3a;
  border: 1px solid rgba(0,200,150,0.25);
  border-radius: var(--radius-md);
  padding: 0.5rem 0;
  z-index: 9999;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  list-style: none;
}

/* Show via JS-controlled class (click) OR hover on desktop as fallback */
.nav-links li.dropdown-open > .sub-menu,
.nav-links li:focus-within > .sub-menu {
  display: block;
}

/* Arrow caret above dropdown */
.nav-links .sub-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #0d1e3a;
  filter: drop-shadow(0 -1px 0 rgba(0,200,150,0.25));
}

.nav-links .sub-menu li {
  width: 100%;
  display: block;
  position: static;
}
.nav-links .sub-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.72);
  white-space: nowrap;
  transition: color 0.18s, padding-left 0.18s, background 0.18s;
  border-radius: 0;
}
.nav-links .sub-menu a:hover {
  color: var(--accent);
  background: rgba(0,200,150,0.08);
  padding-left: 1.5rem;
}

/* Arrow indicator on parent item */
.nav-links li:has(> .sub-menu) > a::after {
  content: ' ▾';
  font-size: 0.65rem;
  opacity: 0.55;
  vertical-align: middle;
  margin-left: 1px;
}

/* ── Service card quote button ── */
.service-quote-btn {
  margin-top: 1.25rem;
  font-size: 0.84rem;
  padding: 0.55rem 1.1rem;
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--navy);
  border-color: var(--navy);
}
.service-quote-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--navy);
}

/* ── Mobile: show sub-menus stacked inside hamburger dropdown ── */
@media (max-width: 860px) {
  .nav-links .sub-menu {
    display: block;
    position: static;
    transform: none;
    background: rgba(255,255,255,0.04);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin-left: 1rem;
  }
  .nav-links .sub-menu::before { display: none; }
  .nav-links .sub-menu a {
    padding: 0.65rem 1.5rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .nav-links .sub-menu a:hover {
    color: var(--accent);
    padding-left: 1.75rem;
    background: none;
  }
}
