/* ════════════════════════════════════════════════════════
   APT LOGISTICS — SHARED STYLESHEET
   Design: Corporate · Modern · Classy
   Palette: Navy #0B1C33 · Gold #C9A84C · Off-white #F4F1EA
   ════════════════════════════════════════════════════════ */

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

:root {
    --navy: #0B1C33;
    --navy2: #122240;
    --navy3: #0A1627;
    /*--gold:    #C9A84C;
  --gold2:   #E2BC68;
  --gold3:   #a88734;*/
    //--gold: #F26A0A;
    --gold: #fd9b00;
    --gold2: #FF8A2A;
    --gold3: #C95000;
    --white: #FFFFFF;
    --off: #F4F1EA;
    --light: #EAF0F8;
    --mid: #6B7A8D;
    --border: #e2ddd5;
    --radius: 0px;
    --trans: all 0.35s ease;
    --shadow: 0 12px 40px rgba(11,28,51,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: #1a2535;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

ul { list-style: none; }

.container { width: 90%; max-width: 1220px; margin: 0 auto; }

/* ── TYPOGRAPHY HELPERS ───────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px; height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-label-center {
  justify-content: center;
}
.section-label-center::before { display: none; }
.section-label-center::after {
  content: '';
  display: block;
  width: 30px; height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title-light { color: var(--white); }

.section-sub {
  font-size: 0.98rem;
  color: var(--mid);
  line-height: 1.85;
  max-width: 620px;
}
.section-sub-light { color: rgba(255,255,255,0.55); }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--trans);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 15px 34px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
  padding-right: 42px;
}
.btn-gold:hover { background: var(--gold2); transform: translateX(4px); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  padding: 15px 34px;
}
.btn-navy:hover { background: var(--gold); color: var(--navy); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  padding: 13px 30px;
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }

/* ── TOPBAR ───────────────────────────────────────────── */
#topbar {
  background: var(--navy3);
  padding: 9px 0;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.6);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.25s;
}
.topbar-item:hover { color: var(--gold); }
.topbar-item i { color: var(--gold); font-size: 0.72rem; }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  transition: color 0.25s;
}
.topbar-social a:hover { color: var(--gold); }

/* ── NAVBAR ───────────────────────────────────────────── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}
#navbar.scrolled {
  box-shadow: 0 4px 24px rgba(11,28,51,0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 48px;
  object-fit: contain;
}
.nav-logo-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}
.nav-logo-text span:first-child {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.nav-logo-text span:last-child {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-links > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 100%;
  padding: 0 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  border-bottom: 3px solid transparent;
  transition: var(--trans);
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-links > li > a i { font-size: 0.65rem; }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--navy);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 100;
}
.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--trans);
}
.nav-dropdown a i { color: var(--gold); font-size: 0.75rem; width: 16px; }
.nav-dropdown a:hover { background: rgba(255,255,255,0.05); color: var(--gold); padding-left: 26px; }

.nav-cta-btn {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 22px !important;
  height: auto !important;
  border-bottom: none !important;
  font-weight: 700 !important;
  margin-left: 10px;
}
.nav-cta-btn:hover { background: var(--gold2) !important; color: var(--navy) !important; border-bottom: none !important; }

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  transition: var(--trans);
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: 290px; height: 100vh;
  background: var(--navy3);
  z-index: 2000;
  padding: 70px 28px 40px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  transition: right 0.4s ease;
}
.nav-drawer.open { right: 0; }
.drawer-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none; border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.3rem;
  cursor: pointer;
}
.nav-drawer a {
  display: block;
  padding: 12px 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.25s;
}
.nav-drawer a:hover { color: var(--gold); }
.nav-drawer .drawer-sub { padding-left: 14px; font-size: 0.82rem; opacity: 0.8; }
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
}
.drawer-overlay.open { display: block; }

/* ── HERO ─────────────────────────────────────────────── */
#hero {
  position: relative;
  height: calc(100vh - 40px);
  min-height: 680px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

#hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10,22,39,0.93) 0%,
    rgba(10,22,39,0.78) 50%,
    rgba(10,22,39,0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 7px 16px;
  margin-bottom: 1.8rem;
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.6rem;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  font-style: italic;
  margin-bottom: 1.2rem;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 2.6rem;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: heroBounce 2s infinite;
}
@keyframes heroBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* Hero stat strip */
.hero-stats {
  position: absolute;
  bottom: 0; right: 0;
  z-index: 3;
  display: flex;
  background: rgba(10,22,39,0.9);
  backdrop-filter: blur(12px);
  border-top: 2px solid var(--gold);
}
.hero-stat {
  padding: 20px 30px;
  border-left: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.hero-stat:first-child { border-left: none; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ── TICKER ───────────────────────────────────────────── */
.ticker-band {
  background: var(--gold);
  overflow: hidden;
  padding: 13px 0;
}
.ticker-track {
  display: flex;
  gap: 56px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  flex-shrink: 0;
}
.ticker-item i { opacity: 0.55; font-size: 0.8rem; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SERVICES ─────────────────────────────────────────── */
#services { padding: 110px 0 100px; }

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

/* Service image cards (top row) */
.services-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.svc-img-card {
  position: relative;
  overflow: hidden;
  height: 280px;
  cursor: default;
}
.svc-img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.svc-img-card:hover img { transform: scale(1.06); }
.svc-img-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,39,0.9) 0%, rgba(10,22,39,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.svc-img-card-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.svc-img-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 6px;
}
.svc-img-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(6px);
  transition: var(--trans);
}
.svc-img-card:hover .svc-img-card-link { opacity: 1; transform: none; }

/* Service plain cards (bottom row) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.svc-card {
  background: var(--white);
  padding: 36px 28px;
  transition: var(--trans);
  position: relative;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.svc-card:hover {
  background: var(--navy);
  z-index: 2;
  box-shadow: var(--shadow);
}
.svc-card:hover::after { width: 100%; }
.svc-card:hover .svc-icon { background: var(--gold); color: var(--navy); }
.svc-card:hover .svc-name { color: var(--white); }
.svc-card:hover .svc-desc { color: rgba(255,255,255,0.55); }
.svc-card:hover .svc-arrow { color: var(--gold); }

.svc-icon {
  width: 52px; height: 52px;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 20px;
  transition: var(--trans);
}
.svc-num {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.svc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
  transition: color 0.3s;
}
.svc-desc {
  font-size: 0.84rem;
  color: var(--mid);
  line-height: 1.72;
  transition: color 0.3s;
}
.svc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 18px;
  transition: color 0.3s;
}

/* ── PARALLAX / QUOTE BAND ────────────────────────────── */
.parallax-band {
  position: relative;
  padding: 90px 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.parallax-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,22,39,0.82);
}
.parallax-band-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.parallax-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: var(--white);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 20px;
}
.parallax-attr {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── ABOUT SNAPSHOT (HOMEPAGE) ────────────────────────── */
#about-snap { padding: 110px 0; background: var(--off); }

.about-snap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-snap-media { position: relative; }

.about-snap-img {
  width: 100%; height: 500px;
  object-fit: cover;
}

.about-snap-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 160px; height: 160px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-snap-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.about-snap-badge-text {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 4px;
}

.about-snap-content { padding-left: 10px; }

.about-snap-text {
  font-size: 0.97rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.about-snap-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.about-snap-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-snap-feat-icon {
  width: 38px; height: 38px;
  background: rgba(201,168,76,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.about-snap-feat-body h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.about-snap-feat-body p {
  font-size: 0.78rem;
  color: var(--mid);
}

/* ── STATS ────────────────────────────────────────────── */
#stats { background: var(--navy); padding: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-box {
  padding: 56px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.stat-box:last-child { border-right: none; }
.stat-box::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 2px;
  background: var(--gold);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
}

/* ── TESTIMONIALS ─────────────────────────────────────── */
#testimonials { padding: 110px 0; background: var(--white); }

.testimonials-header { margin-bottom: 56px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.testi-card {
  border: 1px solid var(--border);
  padding: 42px 38px;
  position: relative;
  transition: var(--trans);
}
.testi-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  position: absolute;
  top: 16px; left: 28px;
  line-height: 1;
  opacity: 0.35;
}
.testi-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testi-stars i { color: var(--gold); font-size: 0.8rem; }
.testi-text {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.testi-author-avatar {
  width: 46px; height: 46px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--navy);
}
.testi-author-role {
  font-size: 0.76rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* ── CLIENTS ──────────────────────────────────────────── */
#clients {
  padding: 70px 0;
  background: var(--navy);
  overflow: hidden;
}
.clients-header {
  text-align: center;
  margin-bottom: 40px;
}
.clients-track-wrap { overflow: hidden; }
.clients-track {
  display: flex;
  gap: 50px;
  animation: clientsTicker 25s linear infinite;
  white-space: nowrap;
  align-items: center;
}
.client-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  transition: color 0.3s;
}
.client-name:hover { color: var(--gold); }
.client-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.4;
}
@keyframes clientsTicker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── WHY CHOOSE US ────────────────────────────────────── */
#why { padding: 110px 0; background: var(--off); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  padding: 40px 32px;
  border-bottom: 3px solid transparent;
  transition: var(--trans);
}
.why-card:hover {
  border-bottom-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.why-card:hover .why-icon { background: var(--navy); color: var(--gold); }
.why-icon {
  width: 58px; height: 58px;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 22px;
  transition: var(--trans);
}
.why-title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-text {
  font-size: 0.86rem;
  color: var(--mid);
  line-height: 1.75;
}

/* ── SPECIAL SERVICES ─────────────────────────────────── */
#special { padding: 110px 0; background: var(--navy); }
.special-header { margin-bottom: 56px; }
.special-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.special-card {
  border: 1px solid rgba(255,255,255,0.08);
  padding: 42px 32px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.special-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.07), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.special-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.special-card:hover::after { opacity: 1; }
.special-icon {
  width: 64px; height: 64px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: 26px;
  position: relative; z-index: 1;
}
.special-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.special-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  position: relative; z-index: 1;
}
.special-list {
  margin-top: 18px;
  position: relative; z-index: 1;
}
.special-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.special-list li:last-child { border: none; }
.special-list li i { color: var(--gold); font-size: 0.72rem; }

/* ── PARTNERS ─────────────────────────────────────────── */
#partners { padding: 80px 0; background: var(--white); border-top: 1px solid var(--border); }
.partners-header { text-align: center; margin-bottom: 50px; }
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
}
.partner-logo {
  max-height: 55px; max-width: 130px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.5;
  transition: var(--trans);
}
.partner-logo:hover { filter: none; opacity: 1; }

/* ── CONTACT CTA ──────────────────────────────────────── */
#contact-cta {
  padding: 100px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#contact-cta::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 60px solid rgba(201,168,76,0.05);
}

/* ── FOOTER ───────────────────────────────────────────── */
#footer { background: var(--navy3); color: rgba(255,255,255,0.5); }
.footer-top {
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.85;
  margin: 18px 0 26px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: var(--trans);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.48);
  transition: color 0.25s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-links a i { font-size: 0.58rem; color: var(--gold); }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; font-size: 0.8rem; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom span { color: var(--gold); }

/* ── INNER PAGE: HERO BANNER ──────────────────────────── */
.page-banner {
  position: relative;
  padding: 100px 0 80px;
  background: var(--navy);
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://aptlogistics.com/wp-content/uploads/2015/09/parallax01.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}
.page-banner-inner {
  position: relative;
  z-index: 2;
}
.page-banner h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 14px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb i { font-size: 0.6rem; }

/* ── ABOUT PAGE ───────────────────────────────────────── */
.about-story { padding: 100px 0; }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
}
.about-story-img { object-fit: cover; width: 100%; height: 100%; }
.about-story-img-main { grid-column: 1 / -1; height: 260px; }

.team-section { padding: 100px 0; background: var(--off); }
.team-section-header { text-align: center; margin-bottom: 56px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  overflow: hidden;
  transition: var(--trans);
}
.team-card:hover { box-shadow: var(--shadow); }
.team-img-wrap { position: relative; overflow: hidden; height: 280px; }
.team-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.team-card:hover .team-img { transform: scale(1.05); }
.team-card-body { padding: 22px 22px 24px; }
.team-name {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.team-bio {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.7;
}
.team-contact {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.team-contact a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--mid);
  transition: color 0.25s;
}
.team-contact a i { color: var(--gold); font-size: 0.72rem; }
.team-contact a:hover { color: var(--gold); }

/* ── CONTACT PAGE ─────────────────────────────────────── */
.contact-page { padding: 100px 0; }
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}
.contact-info-title {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 28px;
}
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--light);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item-body h5 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 3px;
}
.contact-item-body p, .contact-item-body a {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.6;
}
.contact-item-body a:hover { color: var(--gold); }

.contact-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}
.contact-team-card {
  border: 1px solid var(--border);
  padding: 18px;
  transition: var(--trans);
}
.contact-team-card:hover { border-color: var(--gold); }
.contact-team-name { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.contact-team-role { font-size: 0.72rem; color: var(--gold); font-weight: 600; letter-spacing: 0.08em; margin-bottom: 10px; text-transform: uppercase; }
.contact-team-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--mid);
  transition: color 0.25s;
  margin-bottom: 4px;
}
.contact-team-link i { color: var(--gold); }
.contact-team-link:hover { color: var(--gold); }

.office-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.office-tag {
  font-size: 0.76rem;
  color: var(--mid);
  background: var(--light);
  border: 1px solid var(--border);
  padding: 5px 12px;
}

/* Contact form */
.contact-form-box {
  background: var(--off);
  padding: 48px 44px;
  border-top: 3px solid var(--gold);
}
.contact-form-box h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #d5d0c8;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  padding: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--trans);
  margin-top: 8px;
}
.form-submit:hover { background: var(--gold); color: var(--navy); }

/* ── SCROLL REVEAL ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-featured { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-snap-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-snap-img { height: 380px; }
  .about-snap-badge { right: 16px; bottom: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .special-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  #topbar .topbar-right { display: none; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: flex; }
  .hero-stats { position: static; flex-wrap: wrap; }
  .hero-stat { flex: 1; min-width: 100px; }
  .services-featured { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .special-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-team-grid { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-story-imgs { grid-template-columns: 1fr; }
  .about-story-img-main { height: 220px; }
  .topbar-left { flex-wrap: wrap; gap: 10px; }
}
