/* ============================================================
   ALPHA LEAD (M) SDN. BHD. — SHARED STYLESHEET
   ============================================================ */

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

/* ── Tokens ── */
:root {
  --navy:   #0d1e4a;
  --red:    #cc2020;
  --off:    #f8f7f4;
  --muted:  #5a6478;
  --hint:   #8a94a6;
  --border: rgba(13,30,74,0.09);
  --white:  #ffffff;
  --shadow: 0 4px 24px rgba(13,30,74,0.10);
  --shadow-lg: 0 12px 48px rgba(13,30,74,0.18);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h: 72px;
}

/* ── Base ── */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Typography ── */
h1 { font-family: var(--font-display); font-weight: 300; line-height: 1.05; font-size: clamp(2.8rem, 5.5vw, 4.8rem); }
h2 { font-family: var(--font-display); font-weight: 300; line-height: 1.1; font-size: clamp(2.1rem, 4vw, 3.5rem); }
h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; font-size: clamp(1.2rem, 2.2vw, 1.7rem); }
p  { font-size: clamp(1rem, 1.35vw, 1.0625rem); line-height: 1.9; }

/* ════════════════════════════════════════
   NAV  (scoped to #mainNav to avoid hitting footer <nav> elements)
════════════════════════════════════════ */
#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 clamp(24px, 4vw, 64px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: height 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}
#mainNav.scrolled {
  height: 60px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(13,30,74,0.07);
}

/* Nav items — white when transparent (over dark hero), navy when scrolled */
#mainNav:not(.scrolled) .nav-center a { color: rgba(255,255,255,0.65); }
#mainNav:not(.scrolled) .nav-center a:hover,
#mainNav:not(.scrolled) .nav-center a.active { color: #fff; }
#mainNav:not(.scrolled) .nav-center a::after { background: #fff; }
#mainNav:not(.scrolled) .lang-toggle { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.22); }
#mainNav:not(.scrolled) .lang-toggle:hover { color: #fff; border-color: rgba(255,255,255,0.55); }
#mainNav:not(.scrolled) .hamburger span { background: #fff; }

/* Logo */
.nav-logo { display: flex; align-items: center; }
.nav-logo img {
  height: 46px; width: auto;
  mix-blend-mode: multiply;
  border-radius: 6px;
}
#mainNav:not(.scrolled) .nav-logo img {
  mix-blend-mode: normal;
  filter: none;
}

/* Center links */
.nav-center {
  display: flex; align-items: center; justify-content: center; gap: 36px;
}
.nav-center a {
  font-size: 12px; letter-spacing: 1.8px; text-transform: uppercase;
  color: rgba(13,30,74,0.55);
  padding: 4px 0; position: relative;
  transition: color 0.25s;
}
.nav-center a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-center a:hover, .nav-center a.active { color: var(--navy); }
.nav-center a:hover::after, .nav-center a.active::after { transform: scaleX(1); }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 12px; justify-self: end; }

.lang-toggle {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
  border: 0.5px solid var(--border);
  padding: 7px 12px; border-radius: 2px;
  transition: all 0.25s; cursor: pointer; background: none;
  min-height: 36px;
}
.lang-toggle:hover { color: var(--navy); border-color: var(--navy); }

.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; letter-spacing: 1.8px; text-transform: uppercase;
  background: var(--red) !important; color: #fff !important;
  padding: 10px 22px; border-radius: 2px;
  transition: background 0.25s, transform 0.2s; min-height: 40px;
}
.nav-cta:hover { background: #a81818 !important; transform: scale(1.06); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--navy);
  transition: all 0.35s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 998;
  background: var(--navy);
  display: flex; flex-direction: column;
  padding: calc(var(--nav-h) + 32px) 40px 48px;
  transform: translateX(100%);
  visibility: hidden;
  overflow: hidden;
  transition: transform 0.42s cubic-bezier(0.77,0,0.175,1), visibility 0.42s;
  pointer-events: none;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 300;
  color: rgba(255,255,255,0.85); padding: 14px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  transition: color 0.2s, padding-left 0.25s;
}
.mobile-menu a:hover { color: var(--red); padding-left: 8px; }
.mobile-menu-cta {
  margin-top: 36px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  background: var(--red); color: #fff; padding: 16px 28px;
  border-radius: 2px; text-align: center; font-family: var(--font-body);
  display: inline-block; align-self: flex-start;
  min-height: 44px; line-height: 1;
}
.mobile-lang {
  margin-top: 20px;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); cursor: pointer;
  align-self: flex-start;
}

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--navy); color: #fff;
  padding: 14px 32px; border-radius: 2px;
  transition: background 0.3s, gap 0.25s, box-shadow 0.3s;
  min-height: 44px; position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: var(--red);
  transform: translateX(-101%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.btn-primary span, .btn-primary .arr { position: relative; z-index: 1; }
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover .arr { transform: translateX(5px); }
.btn-primary .arr { transition: transform 0.25s ease; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  color: #fff; border: 0.5px solid rgba(255,255,255,0.4);
  padding: 14px 32px; border-radius: 2px;
  transition: all 0.3s; min-height: 44px;
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.09); }

.btn-red {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; white-space: nowrap;
  background: var(--red); color: #fff;
  padding: 14px 32px; border-radius: 2px;
  transition: background 0.25s, gap 0.25s; min-height: 44px;
}
.btn-red:hover { background: #a81818; gap: 14px; }
.btn-hero-cta { transition: background 0.25s, gap 0.25s, transform 0.2s; }
.btn-hero-cta:hover { transform: scale(1.05); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--navy); border: 0.5px solid var(--navy);
  padding: 13px 28px; border-radius: 2px;
  transition: all 0.3s; min-height: 44px;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* Prospectus download dropdown */
.prospectus-dropdown {
  position: relative; display: inline-block;
}
.prospectus-btn {
  cursor: pointer; border: none;
}
.prospectus-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid var(--border);
  box-shadow: 0 12px 36px rgba(13,30,74,0.12);
  min-width: 200px; z-index: 200;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.prospectus-dropdown:hover .prospectus-menu,
.prospectus-dropdown:focus-within .prospectus-menu,
.prospectus-dropdown.open .prospectus-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.prospectus-menu a {
  display: block; padding: 12px 20px;
  font-family: var(--font-body); font-size: 13px;
  color: var(--navy); text-decoration: none; letter-spacing: 0;
  transition: background 0.15s, color 0.15s;
}
.prospectus-menu a:hover { background: var(--off); color: var(--red); }

/* ════════════════════════════════════════
   SECTION COMMONS
════════════════════════════════════════ */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px; font-weight: 500;
}
.section-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--red); }
.section-eyebrow.no-line::before { display: none; }
.section-title { color: var(--navy); margin-bottom: 20px; }
.section-title strong { font-weight: 600; }
.section-body { color: var(--muted); }

/* ════════════════════════════════════════
   HERO — HOMEPAGE
════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 72px) clamp(24px, 5vw, 88px) 132px;
  background: var(--navy); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background: linear-gradient(108deg, rgba(13,30,74,0.96) 0%, rgba(13,30,74,0.88) 55%, rgba(13,30,74,0.78) 100%);
}
/* Grid overlay */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 52px 52px;
}
/* Red left stripe */
.hero::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; z-index: 4;
  background: linear-gradient(to bottom, transparent, var(--red) 25%, var(--red) 75%, transparent);
  pointer-events: none;
}
.hero-watermark {
  position: absolute; right: -20px; bottom: -30px; z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(100px, 18vw, 240px); font-weight: 600;
  color: rgba(255,255,255,0.025); line-height: 1;
  pointer-events: none; user-select: none; letter-spacing: -10px;
}
.hero-inner {
  position: relative; z-index: 3;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 520px);
  align-items: center;
  column-gap: clamp(34px, 4vw, 58px);
}
.hero-copy { max-width: 100%; padding-right: clamp(0px, 1.2vw, 12px); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 3.2px; text-transform: uppercase;
  color: rgba(255,255,255,0.54); margin-bottom: 24px;
}
.hero-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--red); }
.hero h1 { color: #fff; margin-bottom: 20px; font-size: clamp(2.15rem, 4.2vw, 4.4rem); line-height: 1.04; letter-spacing: -0.01em; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero h1 strong { font-weight: 600; }
.hero-sub {
  font-size: clamp(0.93rem, 1.08vw, 1.18rem);
  color: rgba(255,255,255,0.68); line-height: 1.78; max-width: 100%; margin-bottom: 34px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* Hero visual — Globe */
.hero-globe-person {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}
.hero-globe-person .globe-container {
  position: relative;
}

/* Interactive canvas globe */
.globe-container {
  position: relative;
  width: 500px;
  height: 500px;
  cursor: grab;
}
.globe-container:active { cursor: grabbing; }
.globe-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: ringPulse 6s ease-in-out infinite;
}
.globe-ring-1 {
  width: 540px;
  height: 540px;
  border: 0.5px solid rgba(13, 30, 74, 0.14);
}
.globe-ring-2 {
  width: 600px;
  height: 600px;
  border: 0.5px dashed rgba(204, 32, 32, 0.13);
  animation-delay: 1.4s;
}
.globe-ring-3 {
  display: none;
}
.globe-container:hover .globe-ring-1 { border-color: rgba(13, 30, 74, 0.28); }
.globe-container:hover .globe-ring-2 { border-color: rgba(204, 32, 32, 0.22); }
@keyframes ringPulse {
  0%, 100% { opacity: 0.28; }
  50% { opacity: 0.9; }
}
#globeCanvas {
  border-radius: 50%;
  display: block;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at 28% 20%, rgba(255,255,255,0.2), rgba(255,255,255,0) 42%);
  box-shadow:
    0 28px 66px rgba(13, 30, 74, 0.22),
    0 8px 22px rgba(13, 30, 74, 0.14),
    inset 0 0 0 1px rgba(190, 224, 255, 0.2);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.globe-container:hover #globeCanvas {
  box-shadow:
    0 34px 80px rgba(13, 30, 74, 0.28),
    0 9px 28px rgba(13, 30, 74, 0.16),
    inset 0 0 0 1px rgba(210, 233, 255, 0.3);
  transform: translateY(-2px);
}

/* Hero stats bar */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  display: flex; background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 0.5px solid rgba(255,255,255,0.1);
}
.hero-stat {
  flex: 1; padding: 22px 28px;
  border-right: 0.5px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: rgba(255,255,255,0.06); }
.hero-stat-val {
  font-family: var(--font-display); font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 600; color: #fff; line-height: 1;
}
.hero-stat-val sup { color: var(--red); font-size: 0.5em; }
.hero-stat-label { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-top: 6px; }


/* ════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) clamp(24px, 5vw, 80px) 80px;
  background: var(--navy); overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 52px 52px;
}
.page-hero::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(to bottom, transparent, var(--red) 25%, var(--red) 75%, transparent);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); margin-bottom: 18px; font-weight: 500;
}
.page-hero-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--red); }
.page-hero h1 { color: #fff; margin-bottom: 20px; font-size: clamp(1.85rem, 3.8vw, 3.6rem); }
.page-hero p { color: rgba(255,255,255,0.62); max-width: 580px; line-height: 1.85; }
.page-hero-watermark {
  position: absolute; right: -10px; bottom: -20px;
  font-family: var(--font-display); font-size: clamp(80px, 14vw, 180px); font-weight: 600;
  color: rgba(255,255,255,0.025); line-height: 1;
  pointer-events: none; user-select: none; letter-spacing: -6px;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.38); margin-bottom: 24px;
}
.breadcrumbs a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs .sep { opacity: 0.3; }

/* ════════════════════════════════════════
   STATS BAR
════════════════════════════════════════ */
.stats-bar {
  display: flex; background: var(--off);
  border-bottom: 0.5px solid var(--border);
}
.stats-bar-item {
  flex: 1; padding: 40px 28px; text-align: center;
  border-right: 0.5px solid var(--border);
  transition: background 0.3s;
}
.stats-bar-item:last-child { border-right: none; }
.stats-bar-item:hover { background: #fff; }
.stats-val {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600; color: var(--navy); line-height: 1;
}
.stats-val sup { color: var(--red); font-size: 0.5em; }
.stats-label { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--hint); margin-top: 8px; }

/* ════════════════════════════════════════
   FEATURE CARDS — 3-UP
════════════════════════════════════════ */
.features-3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
}
.feature-card {
  background: #fff; padding: 0;
  position: relative; overflow: hidden;
  transition: background 0.3s;
  display: flex; flex-direction: column;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease; z-index: 2;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card-img-wrap { overflow: hidden; height: 210px; }
.feature-card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s ease;
}
.feature-card:hover .feature-card-img { transform: scale(1.05); }
.feature-card-body { padding: 32px 28px 36px; flex: 1; display: flex; flex-direction: column; }
.feature-card-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(204,32,32,0.07);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-card-icon svg { width: 20px; height: 20px; }
.feature-card h3 { color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 14.5px; color: var(--muted); line-height: 1.8; flex: 1; }
.feature-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--red); margin-top: 20px; font-weight: 500;
  transition: gap 0.25s;
}
.feature-card:hover .feature-card-link { gap: 10px; }

/* ════════════════════════════════════════
   INDUSTRIES FLIP CARDS
════════════════════════════════════════ */
.industries-section {
  background: var(--off);
  padding: 80px 0;
}
.industries-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ind-card {
  perspective: 1000px;
  height: 290px;
  cursor: pointer;
}
.ind-card-inner {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.ind-card:hover .ind-card-inner { transform: rotateY(180deg); }
.ind-card-front,
.ind-card-back {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
}
.ind-card-front { background: var(--navy); }
.ind-card-front img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: opacity 0.4s, transform 0.4s;
}
.ind-card:hover .ind-card-front img { opacity: 0.9; transform: scale(1.04); }
.ind-card-front-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 16px 16px;
  background: linear-gradient(to top, rgba(13,30,74,0.88) 0%, transparent 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.02em;
}
.ind-card-back {
  background: var(--navy);
  transform: rotateY(180deg);
  display: flex; flex-direction: column; justify-content: center;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.06);
}
.ind-card-back-accent {
  width: 32px; height: 2.5px;
  background: var(--red);
  margin-bottom: 14px;
  border-radius: 2px;
}
.ind-card-back h3 {
  font-family: var(--font-head);
  font-size: 1.3rem; font-weight: 600;
  color: #fff; margin: 0 0 12px;
  line-height: 1.2;
}
.ind-card-back p {
  font-family: var(--font-body);
  font-size: 0.82rem; line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .industries-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ind-card { height: 240px; }
  .ind-card-back { padding: 20px 16px; }
  .ind-card-back h3 { font-size: 1.1rem; }
  .ind-card-back p { font-size: 0.78rem; }
}

/* ════════════════════════════════════════
   MARQUEE / BRAND CAROUSEL
════════════════════════════════════════ */
.marquee-section {
  padding: 40px 0; background: var(--off);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.marquee-label {
  text-align: center;
  font-size: 9px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--hint); margin-bottom: 28px;
}
.marquee-wrap { overflow: hidden; }
.marquee-track {
  display: flex; align-items: center; gap: 56px;
  width: max-content;
  animation: marqueeRoll 40s linear infinite;
}
.marquee-track img {
  height: 100px; width: auto; object-fit: contain;
  filter: grayscale(60%); opacity: 0.7; flex-shrink: 0;
  transition: filter 0.4s, opacity 0.4s;
}
.marquee-track img:hover { filter: grayscale(0%); opacity: 1; }
@keyframes marqueeRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════
   ABOUT TEASER
════════════════════════════════════════ */
.about-teaser {
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 80px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  background: #fff;
}
.about-teaser-left .section-body { max-width: 440px; margin-bottom: 36px; }
.about-teaser-mosaic {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.about-teaser-mosaic img {
  width: 100%; object-fit: cover; border-radius: 2px; overflow: hidden;
  transition: transform 0.5s ease, filter 0.4s, box-shadow 0.4s;
  filter: brightness(0.93);
}
.about-teaser-mosaic img:first-child { grid-column: 1 / -1; height: 240px; }
.about-teaser-mosaic img:not(:first-child) { height: 160px; }
.about-teaser-mosaic:hover img { filter: brightness(0.7); }
.about-teaser-mosaic img:hover {
  transform: scale(1.04);
  filter: brightness(1) !important;
  box-shadow: 0 12px 40px rgba(13,30,74,0.18);
  z-index: 1; position: relative;
}

/* ════════════════════════════════════════
   SERVICES OVERVIEW — 4-UP
════════════════════════════════════════ */
.services-overview {
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 80px);
  background: var(--off);
  border-top: 0.5px solid var(--border);
}
.services-overview-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.services-overview-header .section-eyebrow { justify-content: center; }
.services-overview-header .section-eyebrow::before { display: none; }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
}
.service-card {
  background: #fff; padding: 36px 26px;
  position: relative; overflow: hidden;
  transition: background 0.3s, transform 0.4s ease, box-shadow 0.4s ease;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: var(--off); transform: translateY(-5px); box-shadow: var(--shadow); z-index: 1; }
.service-card:hover::before { transform: scaleX(1); }
.service-card-img {
  margin: -36px -26px 24px -26px;
  height: 180px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-badge {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); margin-bottom: 18px;
  display: inline-block; padding: 4px 10px;
  border: 0.5px solid rgba(204,32,32,0.25); border-radius: 2px;
}
.service-card-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(13,30,74,0.05);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.service-card-icon svg { width: 20px; height: 20px; }
.service-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.1rem; line-height: 1.3; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.8; flex: 1; margin-bottom: 24px; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--red); font-weight: 500;
  transition: gap 0.25s; margin-top: auto;
}
.service-card:hover .service-card-link { gap: 10px; }

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonials {
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 80px);
  background: var(--navy); position: relative; overflow: hidden;
}
.testimonials::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 52px 52px;
}
.testimonials-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 1; }
.testimonials-header .section-eyebrow { justify-content: center; color: var(--red); }
.testimonials-header .section-eyebrow::before { display: none; }
.testimonials-header h2 { color: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; position: relative; z-index: 1; }
.testimonial-card {
  background: rgba(255,255,255,0.04); border: 0.5px solid rgba(255,255,255,0.1);
  border-top: 2px solid var(--red); padding: 36px 32px;
  transition: background 0.35s, transform 0.4s ease;
}
.testimonial-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-5px); }
.testimonial-mark {
  font-family: var(--font-display); font-size: 4rem; color: var(--red);
  line-height: 0.8; margin-bottom: 16px; opacity: 0.7;
}
.testimonial-quote {
  font-family: var(--font-display); font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.82); line-height: 1.75; margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(204,32,32,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-size: 13px; font-weight: 500; color: #fff; }
.testimonial-role { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 3px; }

/* ════════════════════════════════════════
   CTA BAND (dark)
════════════════════════════════════════ */
.cta-band {
  padding: clamp(56px, 7vw, 96px) clamp(24px, 5vw, 80px);
  background: var(--off); border-top: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.cta-band h2 { color: var(--navy); max-width: 520px; margin-bottom: 12px; }
.cta-band p { color: var(--muted); max-width: 440px; }
.cta-band-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.cta-band-dark {
  padding: clamp(56px, 7vw, 96px) clamp(24px, 5vw, 80px);
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
  position: relative; overflow: hidden;
}
.cta-band-dark::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 52px 52px;
}
.cta-band-dark-quote {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  font-weight: 300; color: #fff; line-height: 1.18; max-width: 600px;
  position: relative; z-index: 1;
}
.cta-band-dark-quote em { color: var(--red); font-style: italic; }
.cta-band-dark-right { position: relative; z-index: 1; text-align: right; flex-shrink: 0; max-width: 240px; }
.cta-band-dark-sub { font-size: 12px; color: rgba(255,255,255,0.38); line-height: 2; margin-bottom: 24px; }

/* ════════════════════════════════════════
   ABOUT PAGE — METHODOLOGY
════════════════════════════════════════ */
.methodology {
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 80px);
  background: #fff;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.methodology-steps { display: flex; flex-direction: column; gap: 1px; background: var(--border); }
.method-step {
  background: #fff; padding: 28px 32px;
  display: flex; align-items: flex-start; gap: 20px;
  border-left: 3px solid transparent;
  transition: background 0.35s, padding 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.method-step:hover {
  background: var(--off);
  padding: 44px 40px;
  border-left-color: var(--red);
  box-shadow: 0 4px 24px rgba(13,30,74,0.07);
}
.method-step-num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 600;
  color: rgba(204,32,32,0.13); line-height: 1; flex-shrink: 0; width: 48px;
  transition: color 0.35s, font-size 0.35s;
}
.method-step:hover .method-step-num { color: var(--red); font-size: 3.2rem; }
.method-step h3 { font-size: 1.05rem; font-weight: 500; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.method-step p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ════════════════════════════════════════
   TEAM
════════════════════════════════════════ */
.team-section {
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 80px);
  background: var(--off); border-top: 0.5px solid var(--border);
}
.team-section-header { max-width: 560px; margin-bottom: 56px; }
.team-grid-photos {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border); margin-bottom: 1px;
}
.team-card {
  background: #fff; position: relative; overflow: hidden;
}
.team-card-img-wrap { overflow: hidden; aspect-ratio: 3/4; position: relative; }
.team-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform 0.6s ease;
}
.team-card:hover .team-card-img-wrap img { transform: scale(1.07); }
.team-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,30,74,0.88) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.4s;
}
.team-card:hover .team-card-overlay { opacity: 1; }
.team-card-hover-info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 20px; transform: translateY(16px); opacity: 0;
  transition: all 0.4s ease;
}
.team-card:hover .team-card-hover-info { transform: translateY(0); opacity: 1; }
.team-card-hover-info .hname { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: #fff; }
.team-card-hover-info .hrole { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-top: 4px; }
.team-card-info { padding: 18px 20px 22px; }
.team-card-name { font-size: 14px; font-weight: 500; color: var(--navy); }
.team-card-role { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--hint); margin-top: 4px; }

.team-grid-list {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
}
.team-list-item {
  background: #fff; padding: 28px 24px;
  border-left: 3px solid transparent;
  transition: all 0.3s;
}
.team-list-item:hover { background: var(--off); border-left-color: var(--red); padding-left: 28px; }
.team-list-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.team-list-role { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--hint); }

/* ════════════════════════════════════════
   SERVICES — DETAIL PAGES
════════════════════════════════════════ */
.services-list-section {
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 80px);
  background: #fff;
}
.services-list-header { max-width: 580px; margin-bottom: 56px; }
.service-items-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1px; background: var(--border);
}
.service-item {
  background: #fff; padding: 32px 28px;
  display: flex; align-items: flex-start; gap: 18px;
  transition: background 0.3s, transform 0.35s;
  position: relative; overflow: hidden;
}
.service-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--red); transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.35s;
}
.service-item:hover { background: var(--off); transform: translateX(4px); }
.service-item:hover::before { transform: scaleY(1); }
.service-item-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 600;
  color: rgba(13,30,74,0.35); line-height: 1; flex-shrink: 0; width: 40px;
  transition: color 0.3s;
}
.service-item:hover .service-item-num { color: rgba(204,32,32,0.55); }
.service-item h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.service-item p { font-size: 13.5px; color: var(--muted); line-height: 1.75; }

/* ════════════════════════════════════════
   GALLERY
════════════════════════════════════════ */
.gallery-section {
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 80px);
  background: var(--off);
}
.gallery-header { max-width: 560px; margin: 0 auto 56px; text-align: center; }
.gallery-header .section-eyebrow { justify-content: center; }
.gallery-header .section-eyebrow::before { display: none; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.gallery-item {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item.tall { aspect-ratio: 3/4; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(13,30,74,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-expand-icon { color: #fff; opacity: 0.9; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(8,12,24,0.97);
  align-items: center; justify-content: center; padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 2px; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: rgba(255,255,255,0.55); font-size: 36px; line-height: 1;
  cursor: pointer; background: none; border: none;
  transition: color 0.2s; min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { color: #fff; }

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact-section {
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 80px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  background: #fff;
}
.contact-form { display: flex; flex-direction: column; gap: 40px; }
.contact-form form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: var(--font-body); font-size: 14px;
  color: var(--navy); font-weight: 600; letter-spacing: 0;
}
.form-required { color: var(--red); margin-left: 2px; }
.form-field {
  font-family: var(--font-body); font-size: 15px; color: var(--navy);
  background: #fff; border: 1.5px solid #d6dae4;
  border-radius: 8px; padding: 14px 16px;
  transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
  box-shadow: 0 1px 3px rgba(13,30,74,0.04);
}
.form-field:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(13,30,74,0.08); }
.form-field::placeholder { color: #aab0be; }
textarea.form-field { min-height: 150px; resize: vertical; }
.form-submit {
  font-family: var(--font-body); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--red); color: #fff; padding: 18px 36px; border-radius: 8px;
  border: none; cursor: pointer; transition: background 0.25s, transform 0.2s;
  width: 100%; min-height: 56px; font-weight: 600;
}
.form-submit:hover { background: #a81818; transform: translateY(-1px); }

.contact-details { display: flex; flex-direction: column; gap: 0; }
.contact-detail-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 24px 0; border-bottom: 0.5px solid var(--border);
}
.contact-detail-item:first-child { padding-top: 0; }
.contact-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(204,32,32,0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 17px; height: 17px; }
.contact-detail-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--hint); margin-bottom: 4px; }
.contact-detail-val { font-size: 14px; color: var(--navy); line-height: 1.6; }
.contact-detail-val a { color: var(--navy); transition: color 0.2s; }
.contact-detail-val a:hover { color: var(--red); }

.whatsapp-card {
  background: var(--off); border: 0.5px solid var(--border);
  border-top: 3px solid #25D366; padding: 28px 24px; border-radius: 2px;
  margin-top: 32px;
}
.whatsapp-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.whatsapp-card p { font-size: 13px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  background: #25D366; color: #fff; padding: 12px 24px; border-radius: 2px;
  transition: background 0.25s; min-height: 44px;
}
.whatsapp-btn:hover { background: #1da851; }

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq-section {
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 80px);
  background: var(--off); border-top: 0.5px solid var(--border);
}
.faq-header { max-width: 480px; margin: 0 auto 56px; text-align: center; }
.faq-header .section-eyebrow { justify-content: center; }
.faq-header .section-eyebrow::before { display: none; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1px; background: var(--border); }
.faq-item { background: #fff; }
.faq-btn {
  width: 100%; text-align: left;
  font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--navy);
  padding: 22px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; background: #fff; border: none; min-height: 44px; transition: background 0.25s;
}
.faq-btn:hover { background: var(--off); }
.faq-btn.open { color: var(--red); background: var(--off); }
.faq-icon {
  width: 22px; height: 22px; border: 0.5px solid var(--border);
  border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}
.faq-btn.open .faq-icon { transform: rotate(45deg); background: var(--red); border-color: var(--red); }
.faq-icon svg { width: 10px; height: 10px; }
.faq-btn.open .faq-icon svg { stroke: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.42s ease; }
.faq-answer-inner { padding: 0 28px 24px; font-size: 13.5px; color: var(--muted); line-height: 1.85; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: var(--navy);
  padding: clamp(48px, 6vw, 80px) clamp(24px, 5vw, 80px) 32px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 56px;
  margin-bottom: 56px;
}
.footer-logo img { height: 38px; width: auto; display: block; margin-bottom: 16px; border-radius: 6px; }
.footer-tagline { font-size: 13.5px; color: rgba(255,255,255,0.38); line-height: 1.7; max-width: 240px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border: 0.5px solid rgba(255,255,255,0.18);
  border-radius: 2px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: all 0.25s;
}
.footer-social a:hover { border-color: var(--red); color: var(--red); }
.footer-social svg { width: 15px; height: 15px; }
.footer-col h4 {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 20px; font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px; color: rgba(255,255,255,0.52);
  transition: color 0.2s; line-height: 1.4;
}
.footer-col a:hover { color: #fff; }
.footer-contact-item { display: flex; flex-direction: column; gap: 2px; margin-bottom: 12px; }
.footer-contact-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.28); }
.footer-contact-val { font-size: 12.5px; color: rgba(255,255,255,0.6); }
.footer-contact-val a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact-val a:hover { color: #fff; }
.footer-bottom {
  border-top: 0.5px solid rgba(255,255,255,0.07); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.28); }
.footer-reg { font-size: 11px; color: rgba(255,255,255,0.22); }

/* ════════════════════════════════════════
   REVEAL ANIMATIONS
════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.stagger > * {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(1) { transition-delay: 0.00s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.10s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.20s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.30s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.40s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.50s; }

/* Hero entrance */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-in {
  opacity: 0;
  animation: heroIn 0.8s ease-out forwards;
}
.hero-in:nth-child(1) { animation-delay: 0.15s; }
.hero-in:nth-child(2) { animation-delay: 0.35s; }
.hero-in:nth-child(3) { animation-delay: 0.55s; }
.hero-in:nth-child(4) { animation-delay: 0.75s; }
.hero-in:nth-child(5) { animation-delay: 0.95s; }

/* ════════════════════════════════════════
   PREFERS-REDUCED-MOTION
════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }

  .reveal, .reveal-left, .reveal-right, .stagger > * {
    opacity: 1 !important; transform: none !important;
  }
  .hero-in { opacity: 1 !important; animation: none !important; }
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1280px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr) minmax(390px, 470px); }
  .globe-container { width: 420px; height: 420px; }
  #globeCanvas { width: 420px; height: 420px; }
  .globe-ring-1 { width: 460px; height: 460px; }
  .globe-ring-2 { width: 516px; height: 516px; }
}

@media (max-width: 1100px) {
  .hero-inner { display: flex; flex-direction: column; gap: 0; }
  .hero-globe-person {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
  }
  .hero-globe-person .globe-container { position: relative; }
  .globe-container { width: 300px; height: 300px; }
  #globeCanvas { width: 300px; height: 300px; }
  .globe-ring-1 { width: 334px; height: 334px; }
  .globe-ring-2 { width: 374px; height: 374px; }
  .hero-copy { max-width: 100%; }
  .features-3 { grid-template-columns: 1fr; }
  .about-teaser { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .methodology { grid-template-columns: 1fr; gap: 48px; }
  .contact-section { grid-template-columns: 1fr; gap: 56px; }
  .cta-band, .cta-band-dark { flex-direction: column; gap: 32px; }
  .cta-band-dark-right { text-align: left; }
  .team-grid-photos { grid-template-columns: repeat(2, 1fr); }
  .team-grid-list { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { flex: 1 1 45%; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-center, .nav-cta, .lang-toggle { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .team-grid-photos { grid-template-columns: 1fr 1fr; }
  .team-grid-list { grid-template-columns: 1fr; }
  .hero-stats { display: none; }

  .stats-bar { flex-direction: column; }
  .stats-bar-item { border-right: none; border-bottom: 0.5px solid var(--border); }
  .stats-bar-item:last-child { border-bottom: none; }
  .marquee-track img { height: 72px; }
  .hero { padding-bottom: 64px; }
}

@media (max-width: 480px) {
  .about-teaser-mosaic { display: none; }
  .team-grid-photos { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .globe-container { width: 240px; height: 240px; }
  #globeCanvas { width: 240px; height: 240px; }
  .globe-ring-1 { width: 268px; height: 268px; }
  .globe-ring-2 { width: 300px; height: 300px; }
  .hero-globe-person { margin-top: 28px; }
}

/* ════════════════════════════════════════
   VIDEO SECTION
════════════════════════════════════════ */
.video-section {
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 80px);
  background: var(--navy);
  text-align: center;
  position: relative; overflow: hidden;
}
.video-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 52px 52px;
}
.video-section-inner {
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto;
}
.video-section .section-eyebrow { justify-content: center; color: var(--red); }
.video-section .section-eyebrow::before { display: none; }
.video-section h2 { color: #fff; margin-bottom: 16px; }
.video-section-sub { color: rgba(255,255,255,0.58) !important; margin-bottom: 40px; }
.video-wrapper {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.07);
}
.video-wrapper iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: 0;
}
.video-mute-hint {
  margin-top: 18px;
  font-size: 12px; color: rgba(255,255,255,0.38);
  font-family: var(--font-body); letter-spacing: 0.3px;
}

/* ════════════════════════════════════════
   NAV DROPDOWN
════════════════════════════════════════ */
.nav-dropdown {
  position: relative; display: flex; align-items: center;
}
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 5px; cursor: pointer;
  font-size: 12px; letter-spacing: 1.8px; text-transform: uppercase;
  color: inherit; background: none; border: none; font-family: var(--font-body);
  padding: 4px 0; position: relative;
}
/* Underline animation same as other nav links */
.nav-dropdown-trigger::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1.5px; background: var(--red); transform: scaleX(0);
  transform-origin: left; transition: transform 0.3s;
}
.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown-trigger.active::after { transform: scaleX(1); }

.nav-dropdown-arrow {
  transition: transform 0.25s ease; flex-shrink: 0;
  color: inherit; opacity: 0.7;
}
.nav-dropdown:hover .nav-dropdown-arrow { transform: rotate(180deg); }

/* The dropdown panel */
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 20px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff; border: 0.5px solid var(--border);
  box-shadow: 0 16px 48px rgba(13,30,74,0.14);
  min-width: 220px; padding: 6px 0; z-index: 200;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  border-radius: 3px;
}
/* Bridge gap so menu doesn't close when moving cursor down */
.nav-dropdown-menu::before {
  content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 11px 20px;
  font-family: var(--font-body); font-size: 13px; letter-spacing: 0; text-transform: none;
  color: var(--navy); transition: background 0.2s, color 0.2s;
  font-weight: 400;
}
.nav-dropdown-menu a:hover { background: var(--off); color: var(--red); }
.nav-dropdown-menu a::after { display: none !important; }

/* Over dark hero (not scrolled) */
#mainNav:not(.scrolled) .nav-dropdown-trigger { color: rgba(255,255,255,0.65); }
#mainNav:not(.scrolled) .nav-dropdown-trigger:hover,
#mainNav:not(.scrolled) .nav-dropdown:hover .nav-dropdown-trigger { color: #fff; }
#mainNav:not(.scrolled) .nav-dropdown-trigger::after { background: #fff; }
#mainNav:not(.scrolled) .nav-dropdown-arrow { color: rgba(255,255,255,0.65); }
#mainNav:not(.scrolled) .nav-dropdown-menu {
  background: rgba(13,30,74,0.97); border-color: rgba(255,255,255,0.1);
  box-shadow: 0 16px 48px rgba(0,0,0,0.32);
}
#mainNav:not(.scrolled) .nav-dropdown-menu a { color: rgba(255,255,255,0.78); }
#mainNav:not(.scrolled) .nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.07); color: #fff;
}

/* Mobile services sub-menu */
.mobile-services-sub {
  display: flex; flex-direction: column;
  padding-left: 20px; padding-bottom: 4px;
  border-left: 2px solid rgba(255,255,255,0.12);
  margin-left: 8px;
}
.mobile-services-sub a {
  font-size: 13px !important;
  color: rgba(255,255,255,0.55) !important;
  padding: 7px 0 !important;
  letter-spacing: 0.2px !important;
  text-transform: none !important;
}
.mobile-services-sub a:hover { color: rgba(255,255,255,0.9) !important; }

/* ════════════════════════════════════════
   FORM IMPROVEMENTS — date/time row, select
════════════════════════════════════════ */
.form-row-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.form-select {
  font-family: var(--font-body); font-size: 15px; color: var(--navy);
  background: #fff; border: 1.5px solid #d6dae4;
  border-radius: 8px; padding: 14px 16px;
  transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
  cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6478' stroke-width='1.3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px; box-shadow: 0 1px 3px rgba(13,30,74,0.04);
}
.form-select:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(13,30,74,0.08); }
input[type="date"].form-field,
input[type="time"].form-field { cursor: pointer; }
input[type="date"].form-field::-webkit-calendar-picker-indicator,
input[type="time"].form-field::-webkit-calendar-picker-indicator {
  opacity: 0.5; cursor: pointer;
}

/* ════════════════════════════════════════
   CHATBOT WIDGET
════════════════════════════════════════ */
.chatbot-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 9990;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--red); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(204,32,32,0.45);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.chatbot-fab:hover {
  transform: scale(1.08); box-shadow: 0 10px 32px rgba(204,32,32,0.55);
  background: #b01c1c;
}
.chatbot-fab svg { width: 24px; height: 24px; color: #fff; }
.chatbot-fab .icon-close { display: none; }
.chatbot-fab.open .icon-chat  { display: none; }
.chatbot-fab.open .icon-close { display: block; }
.chatbot-fab.open { background: #b01c1c; }

/* Greeting bubble */
.chatbot-greeting {
  position: fixed; bottom: 96px; right: 90px; z-index: 9988;
  background: #fff; border: 0.5px solid var(--border);
  box-shadow: 0 8px 32px rgba(13,30,74,0.16);
  border-radius: 14px; border-bottom-right-radius: 4px;
  padding: 12px 38px 12px 16px; max-width: 230px;
  font-family: var(--font-body); font-size: 13.5px; color: var(--navy); line-height: 1.5;
  transform: translateX(10px); opacity: 0; pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.chatbot-greeting.show { transform: translateX(0); opacity: 1; pointer-events: auto; cursor: pointer; }
.chatbot-greeting-close {
  position: absolute; top: 7px; right: 10px;
  background: none; border: none; cursor: pointer;
  color: var(--hint); font-size: 17px; line-height: 1; padding: 2px 4px;
}
.chatbot-greeting-close:hover { color: var(--navy); }
@media (max-width: 480px) {
  .chatbot-greeting { right: 12px; bottom: 80px; max-width: calc(100vw - 24px); }
}

/* ── Prospectus Download Dropdown ── */
.prospectus-dropdown {
  position: relative;
  display: inline-flex;
}
.prospectus-trigger {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
}
.prospectus-arrow {
  transition: transform 0.25s ease;
}
.prospectus-dropdown.open .prospectus-arrow {
  transform: rotate(180deg);
}
.prospectus-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(13,30,74,0.13);
  min-width: 200px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 200;
}
.prospectus-dropdown.open .prospectus-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.prospectus-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  text-decoration: none;
  transition: background 0.15s;
}
.prospectus-item:hover { background: var(--off); color: var(--red); }
.prospectus-item + .prospectus-item { border-top: 1px solid var(--border); }
.prospectus-flag { font-size: 16px; }

.chatbot-badge {
  position: absolute; top: -3px; right: -3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-size: 10px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff; opacity: 0;
  transition: opacity 0.3s;
}
.chatbot-badge.show { opacity: 1; }

.chatbot-panel {
  position: fixed; bottom: 96px; right: 28px; z-index: 9989;
  width: 360px; max-height: 530px;
  background: #fff; border-radius: 10px;
  box-shadow: 0 20px 60px rgba(13,30,74,0.22);
  border: 0.5px solid var(--border);
  display: flex; flex-direction: column;
  transform: translateY(16px) scale(0.97); opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}
.chatbot-panel.open {
  transform: translateY(0) scale(1); opacity: 1; pointer-events: auto;
}

.chatbot-header {
  background: var(--navy); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.chatbot-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(204,32,32,0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.95rem; color: #fff; font-weight: 600;
  flex-shrink: 0;
}
.chatbot-header-info { flex: 1; }
.chatbot-header-name { font-size: 13px; font-weight: 500; color: #fff; font-family: var(--font-body); }
.chatbot-header-status {
  font-size: 10px; color: rgba(255,255,255,0.5); margin-top: 2px;
  font-family: var(--font-body);
}
.chatbot-header-status::before {
  content: ''; display: inline-block; width: 6px; height: 6px;
  background: #4ade80; border-radius: 50%; margin-right: 5px; vertical-align: middle;
}

.chatbot-messages {
  flex: 1; overflow-y: auto; padding: 14px; display: flex;
  flex-direction: column; gap: 10px; scroll-behavior: smooth;
}
.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-track { background: transparent; }
.chatbot-messages::-webkit-scrollbar-thumb { background: rgba(13,30,74,0.12); border-radius: 2px; }

@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chatbot-msg { display: flex; flex-direction: column; max-width: 88%; animation: msgIn 0.25s ease-out; }
.chatbot-msg.bot  { align-self: flex-start; }
.chatbot-msg.user { align-self: flex-end; }
.chatbot-msg-bubble {
  padding: 10px 14px; border-radius: 14px;
  font-family: var(--font-body); font-size: 13px; line-height: 1.6;
}
.chatbot-msg-bubble a { color: var(--red); }
.chatbot-msg-bubble a:hover { text-decoration: underline; }
.chatbot-msg.bot  .chatbot-msg-bubble {
  background: var(--off); color: var(--navy); border-bottom-left-radius: 4px;
}
.chatbot-msg.user .chatbot-msg-bubble {
  background: var(--navy); color: #fff; border-bottom-right-radius: 4px;
}
.chatbot-msg-time {
  font-size: 9px; color: var(--hint); margin-top: 3px; padding: 0 2px;
  font-family: var(--font-body);
}
.chatbot-msg.user .chatbot-msg-time { align-self: flex-end; }

.chatbot-typing {
  display: flex; align-items: center; gap: 4px;
  padding: 12px 14px; background: var(--off);
  border-radius: 14px; border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chatbot-typing span {
  width: 6px; height: 6px; background: var(--hint); border-radius: 50%;
  animation: typingDot 1.2s infinite;
}
.chatbot-typing span:nth-child(2) { animation-delay: 0.2s; }
.chatbot-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 80%, 100% { transform: scale(0.8); opacity: 0.4; }
  40%           { transform: scale(1.1); opacity: 1; }
}

.chatbot-quick-replies {
  display: flex; flex-wrap: wrap; gap: 7px;
  padding: 4px 14px 12px; flex-shrink: 0;
}
.chatbot-qr-btn {
  font-family: var(--font-body); font-size: 11.5px;
  background: #fff; color: var(--navy);
  border: 0.5px solid var(--border); border-radius: 20px;
  padding: 6px 14px; cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.chatbot-qr-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.chatbot-input-area {
  border-top: 0.5px solid var(--border); padding: 10px 12px;
  display: flex; gap: 8px; align-items: center; flex-shrink: 0;
}
.chatbot-input {
  flex: 1; font-family: var(--font-body); font-size: 13px; color: var(--navy);
  background: var(--off); border: 0.5px solid var(--border); border-radius: 20px;
  padding: 8px 14px; transition: border-color 0.2s;
}
.chatbot-input:focus { outline: none; border-color: var(--navy); background: #fff; }
.chatbot-input::placeholder { color: var(--hint); }
.chatbot-send-btn {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.chatbot-send-btn:hover { background: var(--red); }
.chatbot-send-btn svg { width: 15px; height: 15px; color: #fff; }

@media (max-width: 480px) {
  .chatbot-panel {
    width: calc(100vw - 24px); right: 12px; bottom: 80px;
    max-height: 70vh;
  }
  .chatbot-fab { bottom: 16px; right: 16px; }
}
