/* ============================================================
   VEENLAM LOGISTICS — Stylesheet
   Brand: Navy #1E3A5F | Orange #E87820
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --navy:        #1E3A5F;
  --navy-dark:   #0F2137;
  --navy-mid:    #2C5282;
  --orange:      #E87820;
  --orange-light:#F59A40;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --grey-light:  #EDF2F7;
  --grey:        #CBD5E0;
  --text:        #2D3748;
  --text-light:  #718096;
  --border:      #E2E8F0;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.14);
  --transition:  0.3s ease;
  --max-w:       1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy);
}
h1 { font-size: clamp(36px, 5vw, 60px); }
h2 { font-size: clamp(28px, 3.5vw, 42px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
h4 { font-size: 18px; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,120,32,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 36px; font-size: 16px; }

/* ── Navigation ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 14px 0;
  background: rgba(15, 33, 55, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
#navbar.scrolled {
  background: rgba(15, 33, 55, 0.99);
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 40px;
  width: auto;
  max-width: 220px;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-cta { flex-shrink: 0; }
.nav-cta .btn { padding: 10px 22px; font-size: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,33,55,0.92) 0%, rgba(30,58,95,0.75) 60%, rgba(15,33,55,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 120px 0 80px;
}
.hero-content .section-label { color: var(--orange-light); }
.hero-content h1 { color: var(--white); margin-bottom: 24px; }
.hero-content .lead { color: rgba(255,255,255,0.8); margin-bottom: 40px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Trust Strip ── */
.trust-strip {
  background: var(--grey-light);
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}
.trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
}

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(232,120,32,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
}
.service-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--navy);
}
.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ── Corridor Section ── */
.corridor-section {
  background: var(--navy-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.corridor-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/corridor-convoy.png') center/cover no-repeat;
  opacity: 0.12;
}
.corridor-section h2 { color: var(--white); }
.corridor-section .lead { color: rgba(255,255,255,0.7); }
.corridor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.corridor-list { margin-top: 32px; }
.corridor-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.corridor-item:last-child { border-bottom: none; }
.corridor-flag {
  font-size: 24px;
  min-width: 36px;
}
.corridor-info h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 4px;
}
.corridor-info p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* Africa corridor map */
.corridor-map-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 100px;
}
.corridor-map-wrap h4 {
  color: var(--orange);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-align: center;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--orange);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Who We Work With ── */
.clients-section {}
.client-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.client-type {
  text-align: center;
  padding: 32px 20px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.client-type:hover {
  background: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.client-type:hover h4 { color: var(--white); }
.client-type:hover p { color: rgba(255,255,255,0.7); }
.client-type-icon { font-size: 40px; margin-bottom: 16px; }
.client-type h4 { font-size: 15px; margin-bottom: 8px; transition: color var(--transition); }
.client-type p { font-size: 13px; color: var(--text-light); margin: 0; transition: color var(--transition); }

/* ── CTA Section ── */
.cta-section {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(232,120,32,0.08);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(232,120,32,0.06);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 40px; position: relative; z-index: 1; }
.cta-section .btn { position: relative; z-index: 1; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--navy-dark);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,33,55,0.6), rgba(15,33,55,0.95));
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.page-hero-content h1 { color: var(--white); margin-bottom: 20px; }
.page-hero-content p { color: rgba(255,255,255,0.75); font-size: 18px; }

/* ── About Page ── */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-intro-grid img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  height: 480px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.value-card {
  padding: 32px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--orange);
}
.value-card h3 { font-size: 19px; margin-bottom: 12px; }
.value-card p { font-size: 15px; color: var(--text-light); margin: 0; }

.founder-section {
  background: var(--off-white);
}
.founder-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}
.founder-photo {
  position: relative;
}
.founder-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.founder-photo-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: var(--orange);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow);
}
.founder-content h2 { margin-bottom: 24px; }
.founder-quote {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  border-left: 4px solid var(--orange);
  padding-left: 24px;
  margin: 32px 0;
}
.founder-sig {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}

/* Team Section */
.team-section {}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.team-card {
  text-align: center;
}
.team-photo-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid var(--orange);
  box-shadow: var(--shadow);
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.team-card h4 { font-size: 16px; margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin: 0; }

/* Credentials */
.credentials-section {
  background: var(--navy-dark);
  color: var(--white);
}
.credentials-section h2 { color: var(--white); margin-bottom: 48px; }
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.credential-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.credential-icon { font-size: 24px; min-width: 32px; }
.credential-item h4 { color: var(--orange); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.credential-item p { color: rgba(255,255,255,0.75); font-size: 14px; margin: 0; }

/* ── Services Page ── */
.service-section {
  padding: 80px 0;
}
.service-section:nth-child(even) {
  background: var(--off-white);
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-detail-img:hover img { transform: scale(1.03); }
.service-number {
  font-size: 80px;
  font-weight: 800;
  color: var(--grey-light);
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
  z-index: 0;
}
.service-content { position: relative; z-index: 1; }
.service-content h2 { margin-bottom: 16px; }
.service-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text);
}
.service-list li::before {
  content: '→';
  color: var(--orange);
  font-weight: 700;
  min-width: 20px;
  margin-top: 2px;
}

/* Corridor Table */
.corridor-table-wrap {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
thead {
  background: var(--navy);
  color: var(--white);
}
thead th {
  padding: 16px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
tbody tr:hover { background: var(--off-white); }
tbody td {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text);
  vertical-align: top;
}
tbody td:first-child { font-weight: 600; color: var(--navy); }
.flag-cell { display: flex; align-items: center; gap: 10px; }

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-methods { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all var(--transition);
}
.contact-card:hover {
  background: var(--navy);
  transform: translateX(6px);
}
.contact-card:hover h4 { color: var(--orange); }
.contact-card:hover p, .contact-card:hover a { color: rgba(255,255,255,0.8); }
.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-card h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; color: var(--navy); transition: color var(--transition); }
.contact-card p, .contact-card a { font-size: 15px; color: var(--text); margin: 0; line-height: 1.6; transition: color var(--transition); }
.contact-card a { font-weight: 600; color: var(--navy); }

/* Contact Form */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-wrap h2 { font-size: 28px; margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--text-light); margin-bottom: 32px; font-size: 15px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,120,32,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-required { color: var(--orange); }

.form-success {
  display: none;
  background: #e6f9f0;
  border: 1px solid #48bb78;
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  color: #276749;
  font-weight: 600;
  margin-top: 16px;
}

/* ── Blog Page ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.blog-card-img {
  height: 220px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 28px; }
.blog-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 10px;
}
.blog-card-body h3 { font-size: 18px; margin-bottom: 12px; line-height: 1.4; }
.blog-card-body p { font-size: 14px; color: var(--text-light); margin-bottom: 20px; }
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-light);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.blog-read-more {
  color: var(--orange);
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.blog-read-more:hover { gap: 8px; }

/* ── Footer ── */
footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 40px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.social-link svg { display: block; }
.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item span:first-child { font-size: 16px; min-width: 20px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 13px; margin: 0; }
.footer-badges { display: flex; gap: 8px; }
.footer-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}

/* ── Utilities ── */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-orange { color: var(--orange) !important; }
.text-navy { color: var(--navy) !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-8 { margin-top: 8px !important; }
.mt-16 { margin-top: 16px !important; }
.mt-24 { margin-top: 24px !important; }
.mt-32 { margin-top: 32px !important; }
.mt-48 { margin-top: 48px !important; }

.bg-navy { background: var(--navy-dark); }
.bg-off { background: var(--off-white); }

.section-header { max-width: 640px; }
.section-header.center { text-align: center; margin: 0 auto; }
.section-header p { color: var(--text-light); font-size: 17px; margin-top: 16px; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* Scroll-to-top */
#scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 999;
}
#scroll-top.visible { opacity: 1; transform: translateY(0); }
#scroll-top:hover { background: var(--navy); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 86px;
  right: 32px;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 998;
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }

/* Partners Section */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.partner-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.partner-region {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  background: rgba(232,120,32,0.08);
  padding: 4px 10px;
  border-radius: 40px;
  margin-bottom: 12px;
}
.partner-card h4 { font-size: 16px; margin-bottom: 8px; }
.partner-card p { font-size: 14px; color: var(--text-light); margin: 0; }

/* Regulatory / Institutional Partners */
.regulatory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.regulatory-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: transform var(--transition);
}
.regulatory-card:hover { transform: translateY(-3px); }
.regulatory-card-abbr {
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.regulatory-card h4 { color: var(--white); font-size: 14px; margin-bottom: 8px; }
.regulatory-card p { color: rgba(255,255,255,0.6); font-size: 13px; margin: 0; line-height: 1.6; }

/* Client showcase */
.client-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.client-showcase-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border-left: 4px solid var(--orange);
}
.client-showcase-card .client-icon { font-size: 32px; margin-bottom: 16px; }
.client-showcase-card h4 { font-size: 16px; margin-bottom: 8px; }
.client-showcase-card p { font-size: 14px; color: var(--text-light); margin: 0; line-height: 1.7; }

/* ── Responsive ── */
/* Responsive helpers */
.who-we-are-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
}
.services-nav-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .corridor-grid { grid-template-columns: 1fr; }
  .corridor-map-wrap { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-intro-grid img { height: 360px; }
  .founder-grid { grid-template-columns: 280px 1fr; gap: 48px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-grid.reverse { direction: ltr; }
  .service-detail-img { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .who-we-are-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }
  .mobile-menu.open { opacity: 1; pointer-events: all; }
  .mobile-menu a {
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    padding: 12px 24px;
    transition: color var(--transition);
  }
  .mobile-menu a:hover { color: var(--orange); }
  .mobile-menu .btn { margin-top: 16px; }

  .hero-content { padding: 120px 0 60px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-photo { max-width: 280px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .trust-inner { flex-direction: column; align-items: flex-start; }
  .contact-form-wrap { padding: 24px; }
  .page-hero { padding: 140px 0 60px; }
  .map-grid { grid-template-columns: 1fr; }
  .map-grid > div:last-child { min-height: 220px; }
  .services-nav-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .services-nav-pills::-webkit-scrollbar { display: none; }
  .service-number { font-size: 56px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .cta-section h2 { font-size: 24px; }
  .page-hero h1 { font-size: 28px; }
}
