/* ============================================================
   BLUEGRID LOGISTICS — GLOBAL DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.cdnjs.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --navy: #0a1628;
  --navy-mid: #0d1f3c;
  --navy-light: #122548;
  --blue: #1e6fbf;
  --sky: #3b9de1;
  --sky-light: #6dbfee;
  --accent: #00d4ff;
  --gold: #dfa832;
  --gold-light: #fbe094;
  --silver: #9ca3af;
  --white: #ffffff;
  --gray-100: #f0f4f8;
  --gray-200: #dce4ee;
  --gray-400: #8da0b8;
  --gray-600: #4a637d;
  /* Light theme surfaces */
  --bg-page: #ffffff;
  --bg-alt: #f4f8fd;
  --bg-card: #ffffff;
  --text: #0f2340;
  --text-muted: #4a6680;
  --border: rgba(30, 111, 191, 0.15);
  --glass: rgba(255, 255, 255, 0.85);
  --shadow: 0 8px 40px rgba(30, 111, 191, 0.10);
  --radius: 14px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-page);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── Image & Overlay Utilities ── */
.bg-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay-dark {
  position: relative;
}

.overlay-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.7);
  z-index: 1;
}

.overlay-light {
  position: relative;
}

.overlay-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

.overlay-dark>*,
.overlay-light>* {
  position: relative;
  z-index: 2;
}

.text-white {
  color: #ffffff !important;
}

.text-white-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

.hero-content-dark h1,
.hero-content-dark .hero-desc,
.hero-content-dark .subtitle,
.hero-content-dark .breadcrumb,
.hero-content-dark .breadcrumb a,
.hero-content-dark .breadcrumb span,
.hero-content-dark .section-badge {
  color: #ffffff !important;
}

.hero-content-dark .section-badge::before {
  background: #ffffff !important;
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(30, 111, 191, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  transition: background var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 20px rgba(30, 111, 191, 0.08);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 4px 30px rgba(30, 111, 191, 0.14);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 80px;
  width: auto;
}

.nav-logo .brand-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.nav-logo .brand-sub {
  font-size: 0.65rem;
  color: var(--sky);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sky);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: opacity var(--transition), transform var(--transition) !important;
  letter-spacing: 0.3px;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ── Dropdown Menu ── */
.nav-item {
  position: relative;
}

.nav-item>a .nav-arrow {
  display: inline-block;
  margin-left: 4px;
  font-size: 0.65rem;
  transition: transform var(--transition);
  vertical-align: middle;
}

.nav-item:hover>a .nav-arrow,
.nav-item.open>a .nav-arrow {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #ffffff;
  border: 1px solid rgba(30, 111, 191, 0.14);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(30, 111, 191, 0.18), 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 10px;
  min-width: 280px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 999;
}

.nav-item:hover .dropdown,
.nav-item.open .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* little triangle pointer */
.dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 7px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: #ffffff;
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}

.dropdown a:hover {
  background: rgba(30, 111, 191, 0.07);
  color: var(--blue);
}

.dropdown a::after {
  display: none !important;
}

.dd-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(30, 111, 191, 0.12), rgba(59, 157, 225, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: background var(--transition);
}

.dropdown a:hover .dd-icon {
  background: linear-gradient(135deg, rgba(30, 111, 191, 0.22), rgba(59, 157, 225, 0.16));
}

.dd-label strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.dd-label span {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #e8f2fc 0%, #f0f7ff 40%, #dbeeff 70%, #e4f0fa 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 130px 5% 80px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: linear-gradient(rgba(30, 111, 191, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 111, 191, 0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-1 {
  width: 700px;
  height: 700px;
  top: -250px;
  right: -150px;
  background: radial-gradient(circle, rgba(59, 157, 225, 0.22) 0%, transparent 70%);
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: 5%;
  background: radial-gradient(circle, rgba(30, 111, 191, 0.14) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 157, 225, 0.12);
  border: 1px solid rgba(59, 157, 225, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sky);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-tag span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.hero .hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 42px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--sky) 100%);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 30px rgba(30, 111, 191, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(30, 111, 191, 0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(30, 111, 191, 0.3);
  color: var(--navy);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.btn-outline:hover {
  border-color: var(--sky);
  color: var(--blue);
  background: rgba(59, 157, 225, 0.06);
}

/* ── Stats bar ── */
.stats-bar {
  background: linear-gradient(135deg, #1e6fbf 0%, #1a5fa8 50%, #0d4a8a 100%);
  border-top: none;
  border-bottom: none;
  padding: 40px 5%;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.stat-item {
  text-align: center;
}

.stat-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #fbe094 50%, #dfa832 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item .lbl {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── Sections ── */
section {
  padding: 100px 5%;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sky);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-badge::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sky);
  border-radius: 2px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title em {
  font-style: normal;
  color: var(--blue);
}

.section-desc {
  color: var(--text-muted);
  max-width: 620px;
  font-size: 1rem;
  line-height: 1.8;
}

/* ── Card ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 2px 12px rgba(30, 111, 191, 0.07);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(30, 111, 191, 0.35);
  box-shadow: 0 16px 40px rgba(30, 111, 191, 0.14);
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(30, 111, 191, 0.08);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(30, 111, 191, 0.4);
  box-shadow: 0 20px 50px rgba(30, 111, 191, 0.18);
}

.service-card-img {
  height: 200px;
  background: linear-gradient(135deg, #d0e8fa, #b8d9f5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(255, 255, 255, 0.9) 100%);
}

.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex: 1;
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--sky);
  font-size: 0.87rem;
  font-weight: 600;
  transition: gap var(--transition);
}

.service-card:hover .service-link {
  gap: 14px;
}

/* ── Mission/Vision/Values ── */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.mvv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 2px 14px rgba(30, 111, 191, 0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}

.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(30, 111, 191, 0.15);
}

.mvv-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30, 111, 191, 0.15), rgba(59, 157, 225, 0.1));
  border: 2px solid rgba(30, 111, 191, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin: 0 auto 20px;
}

.mvv-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.mvv-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Values List ── */
.values-list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(30, 111, 191, 0.06);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.value-item:hover {
  border-color: rgba(30, 111, 191, 0.35);
  box-shadow: 0 8px 24px rgba(30, 111, 191, 0.12);
}

.value-item .vi {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.value-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.value-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Value Proposition ── */
.vp-section {
  background: linear-gradient(135deg, #e8f2fc 0%, #f0f7ff 50%, #dbeeff 100%);
}

.vp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.vp-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vp-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.vp-item .vp-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.vp-item h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.vp-item p {
  font-size: 0.87rem;
  color: var(--text-muted);
}

.vp-visual {
  background: linear-gradient(135deg, #1e6fbf 0%, #1558a0 50%, #0d3f7a 100%);
  border: none;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(30, 111, 191, 0.3);
}

.vp-visual .vp-big-icon {
  font-size: 5rem;
  margin-bottom: 20px;
}

.vp-visual h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.vp-visual p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #d0e7fa 0%, #e8f4ff 40%, #c8dfef 100%);
  background-size: cover;
  background-position: center;
  padding: 168px 5% 90px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.45);
  z-index: 1;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.page-hero .service-icon-lg {
  font-size: 4.5rem;
  margin-bottom: 24px;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.page-hero .subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Content sections ── */
.content-section {
  padding: 90px 5%;
}

.content-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.text-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

.text-block h2 em {
  font-style: normal;
  color: var(--blue);
}

.text-block p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 18px 20px;
  border-radius: 10px;
}

.feature-item .fi-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.feature-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 2px;
}

/* ── Process Steps ── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 50px;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 36px;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), transparent);
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(30, 111, 191, 0.35);
}

.step-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.step-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ── Highlight boxes ── */
.highlight-box {
  background: linear-gradient(135deg, rgba(30, 111, 191, 0.15), rgba(59, 157, 225, 0.08));
  border: 1px solid rgba(59, 157, 225, 0.3);
  border-radius: var(--radius);
  padding: 36px;
  margin-top: 40px;
}

.highlight-box h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sky);
  margin-bottom: 12px;
}

.highlight-box p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Sub-services grid ── */
.sub-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.sub-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(30, 111, 191, 0.07);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.sub-card:hover {
  transform: translateY(-5px);
  border-color: rgba(30, 111, 191, 0.4);
  box-shadow: 0 12px 30px rgba(30, 111, 191, 0.14);
}

.sub-card .sc-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.sub-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.sub-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, #0d5aad 50%, var(--navy-mid) 100%);
  padding: 90px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-band-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  font-size: 1rem;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--navy);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

/* ── Footer ── */
footer {
  background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 60%, #0a1628 100%);
  border-top: none;
  padding: 70px 5% 36px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand .brand-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.87rem;
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.75;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.87rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--sky-light);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(59, 157, 225, 0.15);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-row img {
  height: 64px;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--sky);
}

.breadcrumb span {
  opacity: 0.5;
}

/* ── Animations ── */
@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.4
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.fade-up {
  animation: fadeUp 0.7s ease both;
}

.fade-up-2 {
  animation: fadeUp 0.7s 0.15s ease both;
}

.fade-up-3 {
  animation: fadeUp 0.7s 0.3s ease both;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ── */
@media (max-width: 968px) {

  .vp-grid,
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 20px 5%;
    border-bottom: 1px solid rgba(30, 111, 191, 0.12);
    gap: 20px;
    box-shadow: 0 8px 20px rgba(30, 111, 191, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   GOLD / SILVER ACCENT UTILITIES
   ═══════════════════════════════════════════ */

/* Gold gradient text */
.text-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, #c88a00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Section badge — gold variant */
.section-badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(223, 168, 50, 0.15), rgba(251, 224, 148, 0.08));
  border: 1px solid rgba(223, 168, 50, 0.35);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-badge-gold::before {
  content: '✦';
  font-size: 0.65rem;
}

/* Gold divider accent bar */
.gold-bar {
  width: 60px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
  margin: 14px 0 28px;
}

/* ── Section with deep navy + gold highlights ── */
.gold-section {
  background: linear-gradient(160deg, #0a1628 0%, #0f1e3a 50%, #0d1a32 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 5%;
}

.gold-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.gold-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

/* ── Brand badge cards ── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.brand-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(223, 168, 50, 0.22);
  border-radius: 14px;
  padding: 28px 18px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.brand-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(223, 168, 50, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.brand-card:hover {
  transform: translateY(-6px);
  border-color: rgba(223, 168, 50, 0.55);
  box-shadow: 0 16px 40px rgba(223, 168, 50, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.brand-card:hover::before {
  opacity: 1;
}

.brand-card .bc-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.brand-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.brand-card p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.brand-card .bc-tag {
  display: inline-block;
  margin-top: 10px;
  background: linear-gradient(135deg, rgba(223, 168, 50, 0.2), rgba(251, 224, 148, 0.1));
  border: 1px solid rgba(223, 168, 50, 0.3);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}

/* ── Product category cards (gold theme) ── */
.supply-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.supply-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(59, 157, 225, 0.18);
  border-radius: 14px;
  padding: 26px 22px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.supply-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.supply-card:hover {
  transform: translateY(-5px);
  border-color: rgba(223, 168, 50, 0.35);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}

.supply-card:hover::after {
  transform: scaleX(1);
}

.supply-card .sc2-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(30, 111, 191, 0.25), rgba(223, 168, 50, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
  border: 1px solid rgba(223, 168, 50, 0.2);
}

.supply-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.supply-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* ── Infinite Ticker / Marquee ── */
.ticker-wrap {
  overflow: hidden;
  background: linear-gradient(135deg, rgba(223, 168, 50, 0.08), rgba(30, 111, 191, 0.12));
  border-top: 1px solid rgba(223, 168, 50, 0.2);
  border-bottom: 1px solid rgba(223, 168, 50, 0.2);
  padding: 14px 0;
  position: relative;
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, #0a1628, transparent);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, #0a1628, transparent);
}

.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.ticker-item span.ti-icon {
  font-size: 1rem;
}

.ticker-item span.ti-sep {
  color: var(--gold);
  font-size: 1.1rem;
  margin-left: 10px;
  opacity: 0.6;
}

.ticker-item.highlighted {
  color: var(--gold-light);
}

/* ═══════════════════════════════════════════
   GOLD SECTION TITLE — used across site
   ═══════════════════════════════════════════ */

.section-title-gold {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title-gold em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, #c88a00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Gold accent for stat numbers */
.stat-gold .num {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, #c88a00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Gold CTA button variant */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, #c88a00 100%);
  color: var(--navy);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 30px rgba(223, 168, 50, 0.35);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(223, 168, 50, 0.45);
}

/* Gold outline button */
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(223, 168, 50, 0.4);
  color: var(--gold);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.btn-outline-gold:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(223, 168, 50, 0.08);
}

/* Gold highlight box variant */
.highlight-box-gold {
  background: linear-gradient(135deg, rgba(223, 168, 50, 0.12), rgba(251, 224, 148, 0.06));
  border: 1px solid rgba(223, 168, 50, 0.35);
  border-radius: var(--radius);
  padding: 36px;
  margin-top: 40px;
}

.highlight-box-gold h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.highlight-box-gold p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Gold-accented value proposition number */
.vp-num-gold {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #c88a00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
}

/* Gold-accented MVV card */
.mvv-card-gold {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(223, 168, 50, 0.25);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.mvv-card-gold:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(223, 168, 50, 0.12);
  border-color: rgba(223, 168, 50, 0.5);
}

.mvv-card-gold .mvv-icon {
  border: 2px solid rgba(223, 168, 50, 0.35);
  background: linear-gradient(135deg, rgba(223, 168, 50, 0.15), rgba(251, 224, 148, 0.08));
}

.mvv-card-gold h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.mvv-card-gold p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}