/* ══════════════════════════════════════════════════════
   AZARIAH GLOBAL — Chevron-style Design System
   Navy + Gold · Fixed Nav · Scroll Reveal · Counters
══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0B1C2E;
  --navy-mid:   #112A40;
  --navy-light: #1E3F5C;
  --gold:       #C9A227;
  --gold-light: #F0E6C8;
  --gold-dark:  #9E7E1A;
  --white:      #FFFFFF;
  --off-white:  #F7F5F0;
  --warm-gray:  #EEEBE3;
  --text:       #1C2B3A;
  --text-mid:   #3D5068;
  --text-light: #6B7E91;
  --border:     #E2D9C5;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-std:   cubic-bezier(0.45, 0, 0.55, 1);
}

html { scroll-behavior: smooth; }

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

/* ══════════ SCROLL REVEAL SYSTEM ══════════ */
.sr {
  opacity: 0;
  transform: translateY(56px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.sr.visible { opacity: 1; transform: translateY(0); }

.sr-left  { opacity: 0; transform: translateX(-48px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.sr-right { opacity: 0; transform: translateX(48px);  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.sr-left.visible, .sr-right.visible { opacity: 1; transform: translateX(0); }

.sr-d1 { transition-delay: 0.08s; }
.sr-d2 { transition-delay: 0.18s; }
.sr-d3 { transition-delay: 0.28s; }
.sr-d4 { transition-delay: 0.38s; }
.sr-d5 { transition-delay: 0.48s; }
.sr-d6 { transition-delay: 0.58s; }

/* ══════════ NAVBAR ══════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 80px;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0);
  transition: background 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease, height 0.5s ease;
}

nav.nav-solid {
  background: var(--navy);
  box-shadow: 0 2px 28px rgba(0,0,0,0.45);
  border-bottom: 2px solid var(--gold);
  height: 72px;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  transition: height 0.5s ease;
}

nav.nav-solid .logo-img { height: 44px; }

.logo-words { display: flex; flex-direction: column; line-height: 1.2; }

.logo-main {
  color: var(--white);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.logo-sub {
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  display: block;
  padding: 6px 14px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }

.nav-quote-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 22px;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  flex-shrink: 0;
  margin-left: 8px;
  transition: background 0.25s, transform 0.2s;
}

.nav-quote-btn:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* Dropdown */
.nav-links li { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--navy-mid);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  overflow: hidden;
  z-index: 2000;
  list-style: none;
  padding: 6px;
}

.nav-links li:hover .dropdown-menu { display: block; }

.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.75rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 3px;
  white-space: nowrap;
  border: none;
  color: rgba(255,255,255,0.7);
}

.dropdown-menu li a::after { display: none; }
.dropdown-menu li a:hover { background: rgba(201,162,39,0.1); color: var(--gold); }

/* ══════════ HERO (Full-screen) ══════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,28,46,0.45) 0%,
    rgba(11,28,46,0.25) 40%,
    rgba(11,28,46,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
  max-width: 900px;
}

.hero-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: heroUp 0.9s var(--ease) 0.1s forwards;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
  opacity: 0;
  animation: heroUp 1s var(--ease) 0.3s forwards;
}

.hero-title span { color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 40px;
  opacity: 0;
  animation: heroUp 0.9s var(--ease) 0.55s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroUp 0.9s var(--ease) 0.75s forwards;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
}

.hero-btn:hover { background: var(--gold-dark); transform: translateY(-2px); }

.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 34px;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 3px;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}

.hero-btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0;
  animation: heroUp 0.9s var(--ease) 1.1s forwards;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 1.8s ease-in-out 1.5s infinite;
}

@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 100%; }
}

@keyframes heroUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════ PAGE HERO (inner pages) ══════════ */
.page-hero {
  padding: 140px 50px 80px;
  background: var(--navy);
  text-align: center;
  border-bottom: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(201,162,39,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  position: relative;
}

.page-hero h1 span { color: var(--gold); }

.page-hero p {
  font-size: 1.05rem;
  color: rgba(240,230,200,0.7);
  max-width: 580px;
  margin: 0 auto;
  letter-spacing: 0.5px;
  position: relative;
}

/* ══════════ INTRO SECTION ══════════ */
.intro-section {
  padding: 100px 60px;
  background: var(--white);
  text-align: center;
}

.intro-section .eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
}

.intro-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  max-width: 800px;
  margin: 0 auto 24px;
}

.intro-section p {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.85;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s, gap 0.25s;
}

.text-link:hover { color: var(--gold-dark); border-color: var(--gold-dark); gap: 12px; }

/* ══════════ STATS BAR ══════════ */
.stats-bar {
  background: var(--navy);
  padding: 0;
  display: flex;
  border-top: 3px solid var(--gold);
}

.stat-item {
  flex: 1;
  padding: 56px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(201,162,39,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.stat-icon i { color: var(--gold); font-size: 1rem; }

.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.5px;
}

.stat-suffix {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--gold);
  font-weight: 900;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(240,230,200,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ══════════ IMAGE CARDS (Chevron-style) ══════════ */
.img-cards-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.img-card {
  position: relative;
  height: 500px;
  overflow: hidden;
  cursor: pointer;
}

.img-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease);
}

.img-card:hover .img-card-bg { transform: scale(1.07); }

.img-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11,28,46,0.9) 0%,
    rgba(11,28,46,0.5) 45%,
    rgba(11,28,46,0.15) 100%
  );
  transition: background 0.5s ease;
}

.img-card:hover .img-card-overlay {
  background: linear-gradient(
    to top,
    rgba(11,28,46,0.95) 0%,
    rgba(11,28,46,0.65) 50%,
    rgba(11,28,46,0.25) 100%
  );
}

.img-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 36px 36px;
  transform: translateY(8px);
  transition: transform 0.5s var(--ease);
}

.img-card:hover .img-card-content { transform: translateY(0); }

.card-eyebrow {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.img-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 14px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s, gap 0.25s;
}

.img-card:hover .card-link { opacity: 1; transform: translateY(0); }
.card-link:hover { gap: 14px; }

/* ══════════ FEATURE SPLIT (Chevron 50/50) ══════════ */
.feature-split {
  display: flex;
  min-height: 560px;
}

.feature-split.reverse { flex-direction: row-reverse; }

.feature-split-img {
  width: 50%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.feature-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}

.feature-split:hover .feature-split-img img { transform: scale(1.04); }

.feature-split-text {
  flex: 1;
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.feature-split-text.dark {
  background: var(--navy);
}

.eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.feature-split-text.dark .eyebrow { color: var(--gold); }

.feature-split-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 20px;
}

.feature-split-text.dark h2 { color: var(--white); }

.feature-split-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 460px;
}

.feature-split-text.dark p { color: rgba(255,255,255,0.6); }

/* ══════════ PULLOUT / FULL-BLEED QUOTE ══════════ */
.pullout {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.pullout-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease);
}

.pullout:hover .pullout-bg { transform: scale(1.03); }

.pullout-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,28,46,0.78);
}

.pullout-content {
  position: relative;
  z-index: 2;
  padding: 80px 80px;
  max-width: 800px;
}

.pullout-content blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  font-style: italic;
  margin-bottom: 32px;
}

.pullout-content blockquote::before {
  content: '"';
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 0.5;
  display: block;
  margin-bottom: 12px;
}

/* ══════════ COMMITMENT SECTION ══════════ */
.commitment-section {
  padding: 100px 0;
  background: var(--off-white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
  padding: 0 40px;
}

.section-header .eyebrow { text-align: center; display: block; margin-bottom: 14px; }

.section-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header h2 span { color: var(--gold); }

.section-header p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.commit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.commit-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.commit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(11,28,46,0.12);
  z-index: 1;
}

.commit-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-light);
  border: 1.5px solid rgba(201,162,39,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s, border-color 0.3s;
}

.commit-card:hover .commit-icon {
  background: var(--navy);
  border-color: var(--navy);
}

.commit-icon i { color: var(--gold-dark); font-size: 1.1rem; transition: color 0.3s; }
.commit-card:hover .commit-icon i { color: var(--gold); }

.commit-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.commit-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ══════════ SERVICES ICON GRID ══════════ */
.services-section {
  padding: 100px 0;
  background: var(--white);
}

.services-grid-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.svc-card {
  text-align: center;
  padding: 34px 14px 28px;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease);
  cursor: default;
  background: var(--white);
}

.svc-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 36px rgba(201,162,39,0.14);
  transform: translateY(-6px);
}

.svc-icon-circle {
  width: 60px;
  height: 60px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background 0.3s, transform 0.3s var(--ease);
}

.svc-card:hover .svc-icon-circle { background: var(--gold); transform: scale(1.1); }

.svc-icon-circle i { color: var(--gold); font-size: 1.3rem; transition: color 0.3s; }
.svc-card:hover .svc-icon-circle i { color: var(--navy); }

.svc-card p {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

/* ══════════ WHY CHOOSE US ══════════ */
.why-section {
  padding: 100px 0;
  background: var(--warm-gray);
}

.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 18px;
  text-align: center;
  border: 1px solid var(--border);
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease);
}

.why-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 36px rgba(201,162,39,0.12);
  transform: translateY(-4px);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: background 0.3s;
}

.why-card:hover .why-icon { background: var(--gold); }
.why-icon i { color: var(--gold); font-size: 1.1rem; transition: color 0.3s; }
.why-card:hover .why-icon i { color: var(--navy); }

.why-card h4 {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 6px;
}

.why-card p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ══════════ CTA SECTION ══════════ */
.cta-section {
  display: flex;
  min-height: 380px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at right center, rgba(201,162,39,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-left {
  flex: 1;
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.cta-left h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}

.cta-left p {
  font-size: 1rem;
  color: rgba(255,255,255,0.58);
  max-width: 460px;
  line-height: 1.85;
}

.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.25s;
  white-space: nowrap;
}

.cta-btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }

.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 3px;
  border: 2px solid rgba(255,255,255,0.38);
  text-decoration: none;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
  white-space: nowrap;
}

.cta-btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.cta-right {
  width: 44%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.cta-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  display: block;
  transition: transform 0.8s var(--ease);
}

.cta-section:hover .cta-right img { transform: scale(1.04); }

.cta-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 35%);
  z-index: 1;
  pointer-events: none;
}

/* ══════════ FOOTER ══════════ */
.site-footer {
  background: var(--navy);
  border-top: 3px solid var(--gold);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 64px 52px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.3fr 1.3fr;
  gap: 52px;
}

.footer-logo {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 18px;
}

.footer-logo-img {
  height: 56px;
  width: 56px;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.85;
  max-width: 260px;
}

.footer-col-heading {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.46);
  font-size: 0.86rem;
  text-decoration: none;
  transition: color 0.25s, padding-left 0.25s;
}

.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 11px; }

.footer-contact-item i {
  color: var(--gold);
  font-size: 0.82rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
  color: rgba(255,255,255,0.46);
  font-size: 0.85rem;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.25s;
}

.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); }

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-inner span {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.28);
}

/* ══════════ ABOUT PAGE ══════════ */
.about-hero {
  display: flex;
  min-height: 600px;
  background: var(--white);
  border-bottom: 3px solid var(--gold);
}

.about-hero-left {
  flex: 1;
  padding: 100px 72px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero-right {
  width: 48%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.about-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}

.about-hero:hover .about-hero-right img { transform: scale(1.04); }

.about-page-label {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-light);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 3px;
  padding: 5px 12px;
  margin-bottom: 22px;
}

.about-hero-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 22px;
}

.about-hero-intro {
  font-size: 0.96rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 30px;
  max-width: 500px;
}

.about-points { list-style: none; display: flex; flex-direction: column; gap: 18px; }

.about-points li { display: flex; align-items: flex-start; gap: 16px; }

.about-point-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-light);
  border: 1.5px solid rgba(201,162,39,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-point-icon i { color: var(--gold-dark); font-size: 0.82rem; }
.about-points li p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.8; }

/* MVV */
.about-mvv {
  display: flex;
  align-items: stretch;
  background: var(--navy);
}

.mvv-col { flex: 1; padding: 64px 48px; display: flex; flex-direction: column; gap: 16px; }

.mvv-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
  margin: 40px 0;
}

.mvv-icon-wrap {
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(201,162,39,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.mvv-icon-wrap i { color: var(--gold); font-size: 1.1rem; }

.mvv-col h3 {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.mvv-col > p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.85; }

.core-values-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; margin-top: 4px; }

.core-values-list span {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.core-values-list span i { color: var(--gold); font-size: 0.68rem; }

/* About services grid */
.about-services { padding: 100px 0 80px; background: var(--white); }

.about-svc-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.about-svc-item {
  text-align: center;
  padding: 32px 14px 26px;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease);
}

.about-svc-item:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 36px rgba(201,162,39,0.12);
  transform: translateY(-5px);
}

.about-svc-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: background 0.3s;
}

.about-svc-item:hover .about-svc-icon { background: var(--gold); }
.about-svc-icon i { color: var(--gold); font-size: 1.2rem; transition: color 0.3s; }
.about-svc-item:hover .about-svc-icon i { color: var(--navy); }

.about-svc-item h4 { font-size: 0.86rem; font-weight: 800; color: var(--navy); line-height: 1.35; margin-bottom: 8px; }
.about-svc-item p { font-size: 0.77rem; color: var(--text-light); line-height: 1.65; }

/* Tagline bar */
.about-tagline-bar {
  background: var(--navy);
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-top: 3px solid var(--gold);
}

.about-tagline-bar i { color: var(--gold); font-size: 1.2rem; }

.about-tagline-bar span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  font-style: italic;
}

/* ══════════ SERVICES PAGE ══════════ */
.services-cards-section { padding: 88px 0; background: var(--white); }

.services-cards-grid {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  border-top: 4px solid var(--navy);
  padding: 34px 30px;
  transition: transform 0.35s var(--ease), border-top-color 0.3s, box-shadow 0.35s;
  box-shadow: 0 4px 16px rgba(11,28,46,0.06);
}

.service-card:hover {
  transform: translateY(-8px);
  border-top-color: var(--gold);
  box-shadow: 0 20px 44px rgba(11,28,46,0.13);
}

.service-num {
  width: 42px; height: 42px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 18px;
  transition: background 0.3s;
}

.service-card:hover .service-num { background: var(--gold); color: var(--navy); }

.service-card h4 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.service-card p { color: var(--text-light); font-size: 0.93rem; line-height: 1.75; }

/* Crew/Husbandry section */
.bp3-section { padding: 80px 0; background: var(--off-white); }

.bp3-grid {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.bp3-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(11,28,46,0.08);
  border: 1px solid var(--border);
}

.bp3-header {
  background: var(--navy);
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 24px;
}

.bp3-body { padding: 24px; }

.bp3-desc { font-size: 0.87rem; color: var(--text-light); line-height: 1.7; margin-bottom: 18px; }

.crew-bg {
  background: url('images/crew-change.png') center/cover no-repeat;
  position: relative;
}

.crew-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.52);
}

.crew-bg > * { position: relative; z-index: 1; }
.crew-bg .bp3-desc, .crew-bg .cw-item span { color: #0d1b2a; font-weight: 700; }
.crew-bg .cw-arrow { color: #0d1b2a; }

.crew-icon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; margin-bottom: 18px; }
.crew-col-left, .crew-col-right { display: flex; flex-direction: column; }

.cw-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text); padding: 5px 0; }

.cw-icon {
  width: 32px; height: 32px; min-width: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.cw-arrow { font-size: 0.7rem; color: var(--gold-dark); text-align: center; padding: 2px 0; line-height: 1; }

.husb-check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }

.husb-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text); line-height: 1.4; font-weight: 500;
}

.husb-item::before {
  content: "✓";
  background: var(--gold);
  color: var(--navy);
  width: 22px; height: 22px; min-width: 22px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 900; flex-shrink: 0;
}

.cc-ship-col {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(11,28,46,0.18);
  background: var(--navy) url('images/ship-night.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
}

.cc-ship-overlay {
  background: linear-gradient(to top, rgba(5,18,50,0.97) 40%, rgba(5,18,50,0.15) 100%);
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bp3-quote {
  font-size: 0.9rem;
  color: rgba(240,230,200,0.7);
  font-style: italic;
  line-height: 1.7;
  border-left: 3px solid var(--gold);
  padding-left: 12px;
  font-family: 'Playfair Display', Georgia, serif;
}

.bp3-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 13px 20px;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}

.bp3-btn:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* ══════════ GLOBAL NETWORK PAGE ══════════ */
.world-network-hero {
  width: 100%;
  position: relative;
  display: block;
  line-height: 0;
  background: #040F1E;
}

.world-network-hero img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.wn-text-overlay {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 44%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 64px;
  background: linear-gradient(to right, rgba(5,18,36,0.95) 60%, transparent 100%);
}

.wn-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.wn-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.wn-sub { font-size: 1.3rem; font-weight: 700; color: var(--gold-light); line-height: 1.3; margin-bottom: 20px; }
.wn-desc { font-size: 0.9rem; color: rgba(240,230,200,0.65); line-height: 1.8; margin-bottom: 30px; max-width: 380px; }

.wn-btn {
  display: inline-block;
  align-self: flex-start;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
}

.wn-btn:hover { background: var(--gold-dark); transform: translateX(4px); }

/* Port Coverage */
.pc-outer {
  display: flex;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  align-items: stretch;
}

.pc-left-half { flex: 1; padding-right: 32px; }

.pc-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.2;
}

.pc-title span { color: var(--gold); }
.pc-sub { font-size: 0.94rem; color: var(--text-light); margin-bottom: 28px; }

.pc-map-wrapper { display: grid; grid-template-columns: 130px 1fr 130px; gap: 14px; align-items: center; }

.pc-coast-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 14px;
  box-shadow: 0 2px 12px rgba(11,28,46,0.06);
}

.coast-box-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 5px;
}

.coast-box-label::before { content: "▹"; font-size: 0.7rem; }

.coast-port-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }

.coast-port-list li {
  font-size: 0.77rem;
  color: var(--text-mid);
  line-height: 1.35;
  display: flex; align-items: center; gap: 6px;
}

.coast-port-list li::before { content: "-"; color: var(--gold); font-weight: 700; flex-shrink: 0; }

.pc-india-map { display: flex; align-items: center; justify-content: center; padding: 10px 0; }
.pc-india-map img { width: 100%; height: auto; display: block; object-fit: contain; min-height: 320px; }
.pc-east-south { display: flex; flex-direction: column; gap: 12px; }

.pc-right-half {
  width: 52%;
  flex-shrink: 0;
  position: relative;
  border-left: 3px solid var(--gold);
  align-self: flex-start;
}

.pc-right-half img { width: 100%; height: auto; display: block; object-fit: initial; }

/* Services icon section (global page) */
.svc-icon-heading {
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 1px;
  margin-bottom: 0;
}

.svc-icon-heading::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 10px auto 40px;
}

.svc-icon-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}

.svc-icon-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 34px 10px 26px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.35s var(--ease);
  cursor: default;
}

.svc-icon-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(201,162,39,0.14);
  transform: translateY(-5px);
}

.svc-icon-wrap { display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.svc-icon-wrap svg { width: 52px; height: 52px; }
.svc-icon-card p { font-size: 0.8rem; font-weight: 700; color: var(--navy); line-height: 1.4; }

/* Global stats bar */
.global-stats-bar { display: flex; border-top: 3px solid var(--gold); overflow: hidden; }

.gs-ship {
  width: 30%;
  flex-shrink: 0;
  background: url('images/ship-stats.png') left center / cover no-repeat;
  position: relative;
  min-height: 100px;
}

.gs-ship::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 70px;
  background: linear-gradient(to right, transparent, #051421);
}

.gs-stats-panel { flex: 1; background: #051421; display: flex; align-items: stretch; }

.gs-item {
  flex: 1;
  padding: 20px 14px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
}

.gs-item:last-child { border-right: none; }

.gs-icon {
  width: 40px; height: 40px;
  background: transparent;
  border: 1.5px solid rgba(201,162,39,0.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}

.gs-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem; font-weight: 900; color: var(--white); line-height: 1;
}

.gs-label { font-size: 0.68rem; color: rgba(255,255,255,0.65); letter-spacing: 0.2px; line-height: 1.35; }

/* ══════════ CONTACT PAGE ══════════ */
.contact-split {
  display: flex;
  min-height: 600px;
}

.contact-split-left {
  flex: 1;
  padding: 88px 72px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-split-right {
  width: 44%;
  flex-shrink: 0;
  background: var(--navy);
  padding: 88px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-eyebrow {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-light);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 3px;
  padding: 5px 12px;
  margin-bottom: 22px;
  display: inline-block;
  align-self: flex-start;
}

.contact-main-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 10px;
}

.contact-sub-text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 36px; max-width: 460px; }

.badge-24 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 20px;
  border: 1.5px solid rgba(201,162,39,0.35);
  margin-bottom: 32px;
}

.contact-details-list { display: flex; flex-direction: column; gap: 22px; }

.contact-detail-row { display: flex; align-items: flex-start; gap: 16px; }

.contact-detail-icon {
  width: 46px; height: 46px;
  background: var(--gold-light);
  border: 1.5px solid rgba(201,162,39,0.28);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}

.contact-detail-row:hover .contact-detail-icon { background: var(--navy); }
.contact-detail-icon i { color: var(--gold-dark); font-size: 1rem; transition: color 0.3s; }
.contact-detail-row:hover .contact-detail-icon i { color: var(--gold); }

.contact-detail-info { display: flex; flex-direction: column; gap: 2px; }
.contact-detail-label { font-size: 0.66rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); }
.contact-detail-value { font-size: 0.98rem; font-weight: 600; color: var(--navy); }
.contact-detail-value a { color: var(--navy); text-decoration: none; border-bottom: 2px solid var(--gold); padding-bottom: 1px; transition: color 0.2s; }
.contact-detail-value a:hover { color: var(--gold-dark); }

.right-heading { font-family: 'Playfair Display', Georgia, serif; font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.right-sub { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 28px; }

.services-tag-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 36px; }

.svc-tag {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.22);
  border-radius: 5px;
  padding: 9px 12px;
  font-size: 0.79rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  display: flex; align-items: center; gap: 8px;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}

.svc-tag:hover { border-color: var(--gold); background: rgba(201,162,39,0.07); color: var(--gold); }

.svc-tag::before {
  content: "✓";
  background: var(--gold);
  color: var(--navy);
  width: 17px; height: 17px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 0.58rem; font-weight: 900; flex-shrink: 0;
}

.right-note {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--gold);
  border-radius: 0 5px 5px 0;
  padding: 18px 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

/* ══════════ LEGACY / REUSED CLASSES ══════════ */
.section { padding: 88px 0; }
.section.off { background: var(--off-white); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 44px; }

/* Scroll reveal legacy (maps to new .sr system) */
.reveal { opacity: 0; transform: translateY(48px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1200px) {
  .img-cards-section { grid-template-columns: 1fr 1fr; }
  .img-cards-section .img-card:nth-child(3) { grid-column: 1 / -1; height: 380px; }
  .svc-icon-grid { grid-template-columns: repeat(4, 1fr); }
  .bp3-grid { grid-template-columns: 1fr 1fr; }
  .cc-ship-col { grid-column: 1 / -1; min-height: 220px; }
  .services-grid-wrap { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .about-svc-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  nav { padding: 0 28px; }
  .pc-outer { flex-direction: column; padding: 0 24px; }
  .pc-left-half { padding-right: 0; margin-bottom: 30px; }
  .pc-right-half { width: 100%; border-left: none; border-top: 3px solid var(--gold); }
  .pc-map-wrapper { grid-template-columns: 110px 1fr 120px; }
  .commit-grid { grid-template-columns: 1fr 1fr; }
  .about-hero { flex-direction: column; }
  .about-hero-right { width: 100%; height: 300px; }
  .about-mvv { flex-direction: column; }
  .mvv-divider { width: 100%; height: 1px; margin: 0; }
  .feature-split { flex-direction: column; min-height: auto; }
  .feature-split.reverse { flex-direction: column; }
  .feature-split-img { width: 100%; height: 300px; }
  .feature-split-text { padding: 56px 40px; }
  .cta-section { flex-direction: column; }
  .cta-right { width: 100%; height: 220px; }
  .contact-split { flex-direction: column; }
  .contact-split-right { width: 100%; padding: 52px 40px; }
  .services-grid-wrap { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  nav { flex-direction: column; height: auto; padding: 12px 20px; gap: 8px; }
  nav.nav-solid { height: auto; }
  .nav-links { flex-wrap: wrap; justify-content: center; }
  .nav-quote-btn { display: none; }
  .hero-title { font-size: 2.2rem; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .img-cards-section { grid-template-columns: 1fr; }
  .img-cards-section .img-card:nth-child(3) { grid-column: 1; }
  .commit-grid { grid-template-columns: 1fr; }
  .services-grid-wrap { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { padding: 44px 28px 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; padding: 16px 20px; }
  .pullout-content { padding: 56px 36px; }
  .cta-left { padding: 56px 36px; }
  .contact-split-left { padding: 52px 28px; }
  .svc-icon-grid { grid-template-columns: repeat(4, 1fr); }
  .global-stats-bar { flex-direction: column; }
  .gs-ship { width: 100%; min-height: 120px; }
  .gs-ship::after { display: none; }
  .gs-stats-panel { flex-wrap: wrap; }
  .gs-item { min-width: 50%; }
  .wn-text-overlay { position: relative; width: 100%; background: var(--navy); padding: 44px 28px; }
}
