/* =====================================================
   PRIMOGLOBAL PVT LTD – Premium Redesign v3.0
   Color Palette:
   Navy    #102B72
   Blue    #142A68
   Magenta #C90073
   Purple  #5A1FA8
   Light   #EAF4FF
   White   #FFFFFF
   Dark    #172554
===================================================== */

:root {
  --navy:    #102B72;
  --blue:    #142A68;
  --magenta: #C90073;
  --purple:  #5A1FA8;
  --light:   #EAF4FF;
  --white:   #FFFFFF;
  --dark:    #172554;
  --ink:     #111827;
  --muted:   #4B5563;
  --paper:   #FFFFFF;
  --mist:    #F8FAFF;
  --line:    #E2E8F0;
  --gold:    #C90073;

  --grad-main:    linear-gradient(135deg, var(--magenta) 0%, var(--purple) 50%, var(--navy) 100%);
  --grad-subtle:  linear-gradient(135deg, rgba(201,0,115,0.08) 0%, rgba(90,31,168,0.08) 100%);
  --shadow-sm:    0 2px 12px rgba(16, 43, 114, 0.08);
  --shadow-md:    0 8px 32px rgba(16, 43, 114, 0.12);
  --shadow-lg:    0 20px 60px rgba(16, 43, 114, 0.16);
  --max:     1180px;
  --radius:  16px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ===== ACCESSIBILITY ===== */
.skip-link,
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link:focus {
  z-index: 1000; width: auto; height: auto; clip: auto;
  left: 1rem; top: 1rem;
  padding: 0.7rem 1.2rem;
  background: var(--paper);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

/* ===== CONTAINER ===== */
.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

/* ===== NAVIGATION ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 16px 24px;
  transition: background 220ms ease, padding 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(16, 43, 114, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-shell {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  flex-shrink: 0;
}

.brand-logo {
  width: 160px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
}

/* Logo contrast when on dark hero */
.site-header:not(.is-scrolled) .brand-logo {
  filter: brightness(0) invert(1);
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
}

.site-menu a {
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 160ms ease, background 160ms ease;
  white-space: nowrap;
}

.site-menu a:hover {
  color: var(--magenta);
  background: rgba(201, 0, 115, 0.06);
}

/* Nav white text when on hero */
.site-header:not(.is-scrolled) .site-menu a {
  color: rgba(255,255,255,0.92);
}
.site-header:not(.is-scrolled) .site-menu a:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  padding: 10px 22px !important;
  background: var(--grad-main) !important;
  color: #fff !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(201,0,115,0.3);
  transition: transform 150ms ease, box-shadow 150ms ease !important;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(201,0,115,0.4) !important;
  background: var(--grad-main) !important;
  color: #fff !important;
}

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.site-header.is-scrolled .menu-toggle {
  background: transparent;
  border-color: var(--line);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.site-header.is-scrolled .menu-toggle span:not(.sr-only) {
  background: var(--navy);
}

/* ===== BUTTONS ===== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 28px;
  border: 2px solid transparent;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  white-space: nowrap;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  background: var(--grad-main);
  color: #fff;
  box-shadow: 0 6px 20px rgba(201,0,115,0.35);
}
.button-primary:hover {
  box-shadow: 0 10px 28px rgba(201,0,115,0.45);
}

.button-outline {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}
.button-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.75);
}

.button-white {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.button-white:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.button-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.button-outline-white:hover {
  background: rgba(255,255,255,0.1);
}

.button-secondary.dark {
  background: #fff;
  color: var(--navy);
  border-color: rgba(255,255,255,0.3);
  font-weight: 700;
}
.button-secondary.dark:hover {
  box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

.button.compact {
  min-height: 42px;
  padding: 10px 22px;
  font-size: 0.88rem;
}

/* ===== SECTION SHARED ===== */
.section {
  padding: clamp(72px, 9vw, 120px) 0;
  scroll-margin-top: 90px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--magenta);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--magenta);
  border-radius: 2px;
}

.light-eyebrow {
  color: rgba(201,0,115,0.85);
}

.section h2,
.section-heading h2 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.light-heading { color: #fff; }

.section-lead {
  margin: 16px 0 0;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.7;
}

.light-lead { color: rgba(255,255,255,0.72); }

.section-heading {
  margin-bottom: 56px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--magenta);
  padding-bottom: 2px;
  transition: color 160ms ease, gap 160ms ease;
}
.text-link:hover { color: var(--magenta); gap: 10px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url('assets/cross-industry-hero.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(16,43,114,0.95) 0%, rgba(20,42,104,0.85) 42%, rgba(90,31,168,0.55) 75%, rgba(16,43,114,0.4) 100%),
    linear-gradient(0deg, rgba(16,43,114,0.75) 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.hero-eyebrow span { white-space: nowrap; }
.hero-eyebrow .bar-sep { color: var(--magenta); }

.hero h1 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.hero-accent {
  background: linear-gradient(135deg, #ff3da8, #c90073 40%, #e040fb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  margin: 18px 0 12px;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.hero-copy {
  margin: 0 0 32px;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.trust-item svg { color: rgba(255,255,255,0.6); flex-shrink: 0; }

/* Hero right visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-badge {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(16,43,114,0.2);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-badge-1 { bottom: -16px; left: -16px; }
.hero-badge-2 { top: -16px; right: -16px; }

.badge-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.badge-value {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy);
}

/* Hero services bar */
.hero-services-bar {
  position: relative;
  z-index: 1;
  background: var(--grad-main);
  padding: 16px 0;
}

.services-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}

.bar-sep { color: rgba(255,255,255,0.4); }

/* ===== INTRO / ABOUT ===== */
.intro-band {
  background: var(--mist);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  margin-bottom: 56px;
}

.intro-copy h2 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
}

.intro-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  margin-top: 20px;
}

.intro-image {
  margin: 0;
}

.intro-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.intro-image figcaption {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Capability cards */
.intro-capabilities {
  gap: 20px;
}

.cap-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.cap-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cap-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--grad-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--magenta);
  flex-shrink: 0;
}

.cap-card strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.cap-card span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ===== PRODUCTS ===== */
.products-section {
  background: var(--white);
}

.products-grid {
  gap: 24px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 280ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card-wide {
  grid-column: span 2;
}

.product-card-cta {
  background: linear-gradient(145deg, var(--mist) 0%, #fff 100%);
  border: 2px dashed rgba(16,43,114,0.2);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(16,43,114,0.75));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 280ms ease;
}

.product-card:hover .product-overlay { opacity: 1; }

.product-cta {
  padding: 10px 24px;
  background: var(--grad-main);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  transform: translateY(8px);
  transition: transform 280ms ease;
}

.product-card:hover .product-cta { transform: translateY(0); }

.product-info {
  padding: 22px 22px 24px;
}

.product-info h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
}

.product-info p {
  margin: 0 0 14px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.product-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--magenta);
  transition: gap 160ms ease;
}

.product-link:hover { text-decoration: underline; }

/* CTA product card interior */
.product-cta-inner {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.product-cta-icon {
  width: 56px; height: 56px;
  background: var(--grad-subtle);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.product-cta-inner h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
}

.product-cta-inner p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

dl { margin: 0; }
dl div {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
dt { color: var(--ink); font-weight: 700; font-size: 0.82rem; }
dd { margin: 0; color: var(--muted); font-size: 0.82rem; }

/* ===== SERVICES ===== */
.capabilities-section {
  background: linear-gradient(160deg, #0d1227 0%, #102B72 50%, #1a0a3a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.capabilities-section .section-heading { position: relative; z-index: 1; }
.capabilities-section .section-heading h2,
.capabilities-section h2#do-title { color: #fff !important; }
.capabilities-section .section-lead { color: rgba(255,255,255,0.75) !important; }


.capabilities-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,0,115,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.capabilities-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90,31,168,0.2) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== UNIFIED PREMIUM CAROUSEL SYSTEM ===== */
.pg-carousel {
  position: relative;
  width: 100%;
}

.pg-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius);
  /* Side fade masks for ultra-clean edge clipping */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
}

.pg-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 22px;
  cursor: grab;
  will-change: transform;
  transition: transform 420ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 12px 6px 26px;
  -webkit-user-select: none;
  user-select: none;
  align-items: stretch;
}

.pg-track.is-dragging {
  cursor: grabbing;
  transition: none;
}

/* Card sizing on desktop: 3 cards per view */
.pg-track > * {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
  box-sizing: border-box;
}

/* Duo carousel (2 cards) desktop & tablet: 2 cards side-by-side */
.pg-carousel-duo .pg-track > * {
  flex: 0 0 calc((100% - 24px) / 2);
}

/* Product card override for carousel */
.pg-track .product-card-wide {
  grid-column: auto;
}

/* Navigation arrows */
.pg-arrow {
  position: absolute;
  top: calc(50% - 14px);
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all 220ms ease;
}

.pg-prev { left: -18px; }
.pg-next { right: -18px; }

/* Light theme arrows (for white / mist sections) */
.pg-carousel-light .pg-arrow {
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--dark);
  box-shadow: 0 6px 20px rgba(16, 43, 114, 0.12);
}

.pg-carousel-light .pg-arrow:hover {
  background: var(--grad-main);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 24px rgba(201, 0, 115, 0.35);
}

/* Dark theme arrows (for dark sections like Capabilities & Vision/Mission) */
.pg-carousel-dark .pg-arrow {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.pg-carousel-dark .pg-arrow:hover {
  background: var(--grad-main);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 24px rgba(201, 0, 115, 0.4);
}

.pg-arrow:disabled {
  opacity: 0.18;
  pointer-events: none;
  cursor: not-allowed;
}

/* Pagination dots */
.pg-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding-top: 6px;
}

.pg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 220ms ease, transform 220ms ease, width 220ms ease;
}

.pg-carousel-light .pg-dot {
  background: rgba(16, 43, 114, 0.22);
}

.pg-carousel-light .pg-dot:hover:not(.active) {
  background: rgba(16, 43, 114, 0.5);
}

.pg-carousel-dark .pg-dot {
  background: rgba(255, 255, 255, 0.25);
}

.pg-carousel-dark .pg-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.55);
}

.pg-dot.active {
  background: var(--magenta) !important;
  width: 26px;
  border-radius: 4px;
}

/* Backwards compatibility for service carousel classes */
.svc-carousel { position: relative; }
.svc-track {
  display: flex !important;
  flex-wrap: nowrap !important;
}
.svc-arrow {
  position: absolute;
  top: calc(50% - 14px);
  transform: translateY(-50%);
  z-index: 20;
}
.svc-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}



.service-item {
  position: relative;
  min-height: 380px;
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
              background 280ms ease, border-color 260ms ease;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-main);
  opacity: 0;
  transition: opacity 240ms ease;
}

.service-item:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,0,115,0.4);
}

.service-item:hover::before { opacity: 1; }

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.service-icon-box {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(201,0,115,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6ec7;
  border: 1px solid rgba(201,0,115,0.25);
  transition: all 260ms ease;
  flex-shrink: 0;
}

.service-item:hover .service-icon-box {
  background: var(--grad-main);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(201,0,115,0.4);
}

.service-meta {
  display: flex; align-items: center; gap: 8px;
}

.service-badge {
  font-size: 0.66rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 3px 9px;
  background: var(--grad-main);
  color: #fff;
  border-radius: 999px;
}

.service-num {
  font-size: 0.82rem; font-weight: 700;
  color: rgba(255,255,255,0.35);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  letter-spacing: 0.06em;
  transition: all 220ms ease;
}

.service-item:hover .service-num {
  color: #ff6ec7;
  border-color: rgba(201,0,115,0.4);
}

.service-kicker {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #ff6ec7;
  margin-bottom: 8px;
}

.service-item h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.service-item p {
  margin: 0 0 20px;
  color: rgba(255,255,255,0.68);
  font-size: 0.92rem;
  line-height: 1.6;
  flex-grow: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.service-tag {
  font-size: 0.72rem; font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 180ms ease;
}

.service-item:hover .service-tag {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,0,115,0.3);
}

.service-tag.highlight {
  background: rgba(201,0,115,0.2);
  color: #ff9de6;
  border-color: rgba(201,0,115,0.4);
}

.featured-card {
  background: rgba(201,0,115,0.1);
  border-color: rgba(201,0,115,0.3);
}

.featured-card::before { opacity: 0.8; }

/* ===== PROCESS ===== */
.process-section {
  background: var(--navy);
  color: #fff;
}

.process-section .section-eyebrow {
  color: rgba(201,0,115,0.9);
}

.process-section h2 {
  color: #fff;
  max-width: 700px;
}

.process-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.process-timeline {
  list-style: none;
  margin: 0; padding: 0;
  display: grid; gap: 0;
}

.process-timeline li {
  display: grid;
  grid-template-columns: 64px 1fr 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  align-items: center;
}

.process-timeline li:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.process-timeline span {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--magenta);
  letter-spacing: -0.02em;
  line-height: 1;
}

.process-timeline strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.process-timeline p {
  margin: 0;
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== GLOBAL SOURCING ===== */
.sourcing-section {
  background: var(--mist);
}

.sourcing-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.sourcing-copy h2 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--dark);
}

.accent-gradient {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sourcing-copy > p {
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.sourcing-list {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sourcing-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.sourcing-check {
  width: 24px; height: 24px;
  background: var(--grad-main);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.sourcing-list li div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sourcing-list li strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.sourcing-list li span {
  font-size: 0.875rem;
  color: var(--muted);
}

.sourcing-image {
  position: relative;
}

.sourcing-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.sourcing-stat-cards {
  position: absolute;
  bottom: -20px;
  left: -20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-left: 3px solid var(--magenta);
}

.stat-card strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
}

.stat-card span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ===== WHY PRIMOGLOBAL ===== */
.why-section {
  background: var(--white);
}

.why-section .section-heading {
  text-align: center;
}

.why-grid {
  gap: 24px;
}

.why-card {
  padding: 32px 28px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,0,115,0.25);
}

.why-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--grad-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--magenta);
  margin-bottom: 20px;
  border: 1px solid rgba(201,0,115,0.15);
  transition: all 260ms ease;
}

.why-card:hover .why-icon {
  background: var(--grad-main);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(201,0,115,0.3);
}

.why-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}

.why-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== GLOBAL NETWORK / MAP ===== */
.markets-section {
  background: linear-gradient(160deg, #EAF4FF 0%, #f0f6ff 60%, #e8f0fe 100%);
  overflow: hidden;
}

.map-section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.map-header-text h2 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--dark);
}

.map-header-text .section-lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}

.map-region-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding-top: 8px;
}

.region-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: #fff;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1.5px solid rgba(16,43,114,0.14);
  box-shadow: 0 2px 10px rgba(16,43,114,0.07);
  transition: all 220ms ease;
  cursor: default;
}

.region-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(16,43,114,0.14);
}

.region-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.region-india .region-dot  { background: #C90073; box-shadow: 0 0 0 3px rgba(201,0,115,0.2); }
.region-me .region-dot     { background: #f59e0b; box-shadow: 0 0 0 3px rgba(245,158,11,0.2); }
.region-asia .region-dot   { background: #5A1FA8; box-shadow: 0 0 0 3px rgba(90,31,168,0.2); }
.region-europe .region-dot { background: #102B72; box-shadow: 0 0 0 3px rgba(16,43,114,0.2); }
.region-africa .region-dot { background: #059669; box-shadow: 0 0 0 3px rgba(5,150,105,0.2); }
.region-global .region-dot { background: #0891b2; box-shadow: 0 0 0 3px rgba(8,145,178,0.2); }

.region-india  { color: #C90073; border-color: rgba(201,0,115,0.25); }
.region-me     { color: #92400e; border-color: rgba(245,158,11,0.3); }
.region-asia   { color: #5A1FA8; border-color: rgba(90,31,168,0.25); }
.region-europe { color: #102B72; border-color: rgba(16,43,114,0.3); }
.region-africa { color: #065f46; border-color: rgba(5,150,105,0.25); }
.region-global { color: #0e7490; border-color: rgba(8,145,178,0.25); }

.map-visual-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(16,43,114,0.18);
}

.map-img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.map-overlay-stat {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 28px rgba(16,43,114,0.16);
  border: 1px solid rgba(255,255,255,0.8);
}

.map-overlay-stat strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--dark);
}

.map-overlay-stat span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 1px;
}

.map-stat-icon {
  width: 38px; height: 38px;
  background: var(--grad-main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.map-stat-1 { top: 16px; left: 20px; }
.map-stat-2 { bottom: 20px; left: 20px; }
.map-stat-3 { bottom: 20px; right: 20px; }

/* Airways icon — magenta */
.map-stat-air { background: linear-gradient(135deg, #C90073, #e040fb); }
/* Waterways icon — blue */
.map-stat-sea { background: linear-gradient(135deg, #0891b2, #102B72); }

/* Transport Mode Badges */
.transport-modes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.transport-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1.5px solid;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.transport-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.transport-air {
  background: rgba(201,0,115,0.08);
  color: #C90073;
  border-color: rgba(201,0,115,0.3);
}

.transport-sea {
  background: rgba(8,145,178,0.08);
  color: #0e7490;
  border-color: rgba(8,145,178,0.3);
}

.transport-land {
  background: rgba(16,43,114,0.08);
  color: #102B72;
  border-color: rgba(16,43,114,0.25);
}


.map-caption {
  text-align: center;
  margin: 28px 0 0;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 680px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ===== VISION & MISSION (PREMIUM) ===== */
.vision-section {
  background: linear-gradient(160deg, #0d1227 0%, #102B72 50%, #1a0a3a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.vision-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,0,115,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.vision-section .section-eyebrow {
  color: rgba(201,0,115,0.9);
}

.vision-section h2 {
  color: #fff;
}

.vision-mission-grid {
  gap: 28px;
  margin-top: 0;
}

.vm-card {
  position: relative;
  padding: 40px 36px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 280ms ease, border-color 280ms ease;
}

.vm-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,0,115,0.4);
}

.vm-vision {
  background: linear-gradient(135deg, rgba(201,0,115,0.12) 0%, rgba(90,31,168,0.08) 100%);
  border-color: rgba(201,0,115,0.2);
}

.vm-mission {
  background: linear-gradient(135deg, rgba(90,31,168,0.12) 0%, rgba(16,43,114,0.08) 100%);
  border-color: rgba(90,31,168,0.2);
}

.vm-icon-wrap {
  margin-bottom: 24px;
}

.vm-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.vm-vision .vm-icon {
  background: linear-gradient(135deg, #C90073, #e040fb);
  box-shadow: 0 8px 24px rgba(201,0,115,0.4);
}

.vm-mission .vm-icon {
  background: linear-gradient(135deg, #5A1FA8, #102B72);
  box-shadow: 0 8px 24px rgba(90,31,168,0.4);
}

.vm-number {
  position: absolute;
  top: 28px; right: 32px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  font-family: 'Playfair Display', Georgia, serif;
  pointer-events: none;
  user-select: none;
}

.vm-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.vm-vision .vm-label { color: #ff6ec7; }
.vm-mission .vm-label { color: #a78bfa; }

.vm-card h3 {
  margin: 0 0 16px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.vm-card > p {
  margin: 0 0 24px;
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  line-height: 1.7;
}

.vm-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.vm-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
}

.vm-points li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.vm-vision .vm-points li::before { background: #ff6ec7; }
.vm-mission .vm-points li::before { background: #a78bfa; }

/* ===== CORE VALUES (PREMIUM) ===== */
.values-section {
  background: var(--mist);
}

.compact-heading { max-width: 680px; margin-bottom: 48px; }

.values-grid {
  gap: 18px;
}

.value-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--val-bg, rgba(16,43,114,0.1));
  border-radius: var(--radius);
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--val-color);
  border-radius: 4px 4px 0 0;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  border-color: var(--val-color);
}

.value-num {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--val-bg);
  line-height: 1;
  font-family: 'Playfair Display', Georgia, serif;
  pointer-events: none;
  user-select: none;
  opacity: 3;
  background: var(--val-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
}

.value-icon-box {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--val-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--val-color);
  border: 1.5px solid var(--val-color);
  transition: all 260ms ease;
  flex-shrink: 0;
}

.value-card:hover .value-icon-box {
  background: var(--val-color);
  color: #fff;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--val-color) 40%, transparent);
}

.value-card strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--val-color);
  letter-spacing: 0.01em;
}

.value-card span {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  flex-grow: 1;
}

.value-bar {
  height: 3px;
  border-radius: 3px;
  background: var(--val-color);
  width: 36px;
  margin-top: 8px;
  transition: width 300ms ease;
}

.value-card:hover .value-bar { width: 100%; }

/* ===== LEADERSHIP (PREMIUM) ===== */
.leadership-section {
  background: var(--mist);
}

.leadership-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin-bottom: 48px;
}

.leadership-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--dark);
  margin: 0;
  line-height: 1.1;
}

.leadership-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

.leaders-premium {
  gap: 28px;
}

.leader-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.leader-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}

.leader-card-1 .leader-card-header {
  background: linear-gradient(135deg, #C90073, #5A1FA8);
}

.leader-card-2 .leader-card-header {
  background: linear-gradient(135deg, #102B72, #5A1FA8);
}

.leader-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.18);
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
}

.leader-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(255,255,255,0.25);
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1;
}

/* Leader Avatar (initials, no photo) */
.leader-avatar {
  width: 80px; height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.leader-avatar-1 {
  background: linear-gradient(135deg, #C90073, #5A1FA8);
  box-shadow: 0 8px 24px rgba(201,0,115,0.35);
}

.leader-avatar-2 {
  background: linear-gradient(135deg, #102B72, #5A1FA8);
  box-shadow: 0 8px 24px rgba(90,31,168,0.35);
}

/* Specialisation badge */
.leader-speciality {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px 14px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

.leader-speciality svg {
  color: var(--magenta);
  flex-shrink: 0;
}

.leader-info {
  padding: 24px 26px 28px;
}

.leader-info h3 {
  margin: 0 0 4px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
}

.leader-role {
  margin: 0 0 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--magenta);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.leader-desc {
  margin: 0 0 18px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.leader-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.leader-tags span {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  background: var(--mist);
  color: var(--navy);
  border: 1px solid var(--line);
}

/* ===== SUPPLIERS ===== */
.suppliers-section { padding-top: 0; }

.supplier-band {
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  background: var(--grad-main);
  color: #fff;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.supplier-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}

.supplier-band h2 {
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 860px;
  margin-inline: auto;
}

.supplier-band p {
  max-width: 640px;
  margin-inline: auto;
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
}

/* ===== INSIGHTS ===== */
.insights-section {
  background: var(--mist);
}

.insights-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.insights-layout h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin: 0;
}

.insight-placeholder {
  padding: 36px;
  background: #fff;
  border-left: 4px solid var(--magenta);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
}

.insight-placeholder span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 12px;
}

.insight-placeholder p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--grad-main);
  padding: clamp(56px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

.cta-inner h2 {
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700;
  margin: 0 0 16px;
}

.cta-inner p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== ENQUIRY / CONTACT ===== */
.enquiry-section {
  background: linear-gradient(160deg, #0d1227 0%, #102B72 55%, #1a0a3a 100%);
  color: #fff;
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.enquiry-section h2 {
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 0;
}

.enquiry-copy > p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  margin-top: 16px;
  line-height: 1.7;
}

.contact-strip {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 180ms ease, transform 180ms ease;
  text-decoration: none;
}

.contact-method:hover {
  color: #ff9de6;
  transform: translateX(4px);
}

.contact-method svg {
  color: #ff6ec7;
  flex-shrink: 0;
  padding: 8px;
  background: rgba(201,0,115,0.15);
  border-radius: 8px;
  width: 36px; height: 36px;
  box-sizing: border-box;
  transition: background 180ms ease;
}

.contact-method:hover svg {
  background: rgba(201,0,115,0.3);
}

/* Form */
.enquiry-form {
  display: grid;
  gap: 20px;
  padding: clamp(28px, 4vw, 44px);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.enquiry-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-main);
}

.form-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

input, select, textarea {
  width: 100%;
  border: 1.5px solid rgba(16,43,114,0.15);
  background: #f8faff;
  color: var(--ink);
  padding: 11px 14px;
  border-radius: 10px;
  font: inherit;
  font-size: 0.92rem;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

textarea { resize: vertical; min-height: 96px; }

input:focus, select:focus, textarea:focus {
  background: #fff;
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 4px rgba(201,0,115,0.1);
}

.hidden-field { display: none; }

.form-status {
  min-height: 22px;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.72);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-col { display: flex; flex-direction: column; gap: 14px; }

.footer-brand { display: inline-flex; }

.footer-logo {
  width: 160px; height: 48px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.footer-desc {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.site-footer h2 {
  margin: 0 0 16px;
  font-size: 0.75rem;
  font-weight: 800;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-footer a {
  display: block;
  margin: 5px 0;
  color: rgba(255,255,255,0.68);
  font-size: 0.88rem;
  transition: color 160ms ease;
}

.site-footer a:hover { color: #ff9de6; }

.site-footer p {
  margin: 0 0 6px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-whatsapp {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin-top: 8px !important;
  padding: 10px 18px;
  background: rgba(37,211,102,0.15);
  color: #4ade80 !important;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: background 180ms ease !important;
}

.footer-whatsapp:hover {
  background: rgba(37,211,102,0.25) !important;
  color: #4ade80 !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal { text-align: right; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ===== RESPONSIVE – TABLET ===== */
@media (max-width: 1040px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-menu {
    position: absolute;
    left: 16px; right: 16px;
    top: 68px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: rgba(255,255,255,0.99);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-header:not(.is-scrolled) .site-menu a,
  .site-menu a {
    color: var(--ink);
    border-radius: 8px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
  }

  .site-menu a:last-child { border-bottom: 0; }

  .nav-cta {
    background: var(--grad-main) !important;
    color: #fff !important;
    text-align: center;
    border-radius: 10px !important;
    margin-top: 4px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 130px;
    padding-bottom: 40px;
  }

  .hero-visual { display: none; }

  .intro-grid { grid-template-columns: 1fr; }

  /* Carousel: 2 cards on tablet */
  .pg-track > * {
    flex: 0 0 calc((100% - 22px) / 2);
  }
  .pg-prev { left: -8px; }
  .pg-next { right: -8px; }

  .sourcing-grid,
  .enquiry-grid,
  .insights-layout { grid-template-columns: 1fr; }

  .map-section-header { flex-direction: column; gap: 24px; }
  .map-stat-1, .map-stat-2, .map-stat-3 { display: none; }

  .leadership-header { grid-template-columns: 1fr; }

  .values-row { grid-template-columns: repeat(3, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .process-timeline li { grid-template-columns: 56px 1fr; }
  .process-timeline p { grid-column: 2; }

  .vision-grid { grid-template-columns: 1fr; }
}

/* ===== RESPONSIVE – MOBILE ===== */
@media (max-width: 720px) {
  .site-header { padding: 12px 16px; }

  .container,
  .hero-inner { width: min(calc(100% - 28px), var(--max)); }

  .brand-logo { width: 130px; height: 40px; }

  .hero { min-height: 100svh; }

  .hero h1 { font-size: clamp(2.4rem, 9vw, 3.2rem); }

  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; justify-content: center; }

  .hero-trust { gap: 16px; }

  /* Carousel: 1 card + partial peek on mobile */
  .pg-arrow { display: none; }
  .pg-track {
    gap: 16px;
    padding: 8px 4px 20px;
  }
  .pg-track > * {
    flex: 0 0 calc(100% - 44px) !important;
  }

  .service-item { min-height: auto; padding: 24px 20px; }

  .sourcing-stat-cards { display: none; }

  .form-pair,
  .footer-grid { grid-template-columns: 1fr; }

  .values-row { border-radius: 0; }

  .process-timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-timeline p { grid-column: auto; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .button { width: 100%; max-width: 320px; justify-content: center; }

  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { text-align: center; }

  dl div { grid-template-columns: 1fr; gap: 4px; }

  .value-item { min-height: 130px; }

  .hero-services-bar { display: none; }
}
