/* ============================
   GLOBAL RESET & BASE
   ============================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Brand scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0B1A30;
}
::-webkit-scrollbar-thumb {
  background: #C9932B;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #A77B23;
}
html {
  scrollbar-color: #C9932B #0B1A30;
}

:root {
  --bg-primary: #0B1A30;
  --bg-secondary: #102A50;
  --bg-card: rgba(16, 42, 80, 0.6);
  --bg-card-hover: rgba(16, 42, 80, 0.8);
  --gold: #C9932B;
  --gold-light: #C9932B;
  --gold-dark: #A77B23;
  --text-primary: #F5F5F5;
  --text-secondary: rgba(245, 245, 245, 0.75);
  --text-muted: rgba(245, 245, 245, 0.5);
  --border-subtle: rgba(201, 147, 43, 0.15);
  --border-gold: rgba(201, 147, 43, 0.4);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold-text {
  color: var(--gold);
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  font-family: var(--font-primary);
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.2;
  color: #C9932B;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* ============================
   ANIMATIONS
   ============================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }

/* ============================
   HEXAGONAL LINES / BORDERS – off-white tint
   Applies to every decorative hexagonal outline across the site.
   brightness(0) → black, invert(1) → white, brightness(0.88) → soft off-white
   ============================ */
.ring-outer,
.ring-second,
.ring-third,
.ring-inner,
.perf-hex-tl,
.perf-hex-sm1,
.perf-hex-sm2,
.prec-lines,
.gcc-hex-left,
.gcc-hex-right,
.gcc-card-border,
.ve-vector50 img,
.ve-vector51 img,
.ve-vector53 img {
  filter: brightness(0) invert(1) brightness(0.88);
}

/* ring-core keeps its blur while also adopting the off-white tint */
.ring-core {
  filter: brightness(0) invert(1) brightness(0.88) blur(50px);
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 70px;
  padding: 0;
  transition: all 0.4s ease;
  background: #0B1A30;
  border-bottom: 1px solid rgba(201, 147, 43, 0.15);
  overflow: visible;
}

.navbar.scrolled {
  background: rgba(11, 26, 48, 0.95);
  backdrop-filter: blur(20px);
  height: 70px;
  padding: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  position: relative;
  z-index: 1001;
}

.logo-icon {
  height: 90px;
  width: auto;
  object-fit: contain;
  position: relative;
  top: 10px;
}

.logo-text {
  height: 14px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links li a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #F5F5F5;
  transition: color 0.3s ease;
  text-transform: none;
  white-space: nowrap;
}

.nav-links li a:hover {
  color: #C9932B;
}

.nav-cta {
  background: linear-gradient(135deg, #C9932B 0%, #F5D67B 40%, #C9932B 60%, #A77B23 100%);
  color: #0B1A30;
  padding: 7px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-block;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: linear-gradient(135deg, #A77B23 0%, #F5D67B 50%, #A77B23 100%);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  background: #0B1A30;
  padding-bottom: 20px;
  padding-top: 60px;
}

/* Concentric rings */
.hero-ring {
  position: absolute;
  top: 37%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.ring-outer {
  width: 650px;
  opacity: 0.5;
}

.ring-second {
  width: 520px;
  opacity: 0.6;
}

.ring-third {
  width: 400px;
  opacity: 0.7;
}

.ring-inner {
  width: 310px;
  opacity: 0.85;
}

.ring-core {
  width: 260px;
  opacity: 0.75;
  filter: brightness(0) invert(1) brightness(0.88) blur(50px);
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Center 3D Logo */
.hero-center-logo {
  position: relative;
  width: 340px;
  z-index: 2;
  margin-bottom: 0;
  margin-top: -30px;
  filter: drop-shadow(0 30px 60px rgba(201, 147, 43, 0.55)) drop-shadow(0 15px 30px rgba(201, 147, 43, 0.4));
}

/* Floating crystals */
.hero-float {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 80px;
  z-index: 1;
  opacity: 0.9;
  filter: sepia(1) saturate(3) brightness(1.1) hue-rotate(5deg);
}

.hero-float-left {
  left: 22%;
}

.hero-float-right {
  right: 22%;
}

/* Bottom corner decorations */
.hero-corner {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 400px;
  height: 400px;
}

.hero-corner-left {
  left: 0;
}

.hero-corner-right {
  right: 0;
}

.corner-blur {
  position: absolute;
  bottom: 0;
  width: 100%;
  opacity: 0.8;
  filter: blur(10px) sepia(1) saturate(6) brightness(1.05) hue-rotate(2deg) drop-shadow(0 0 15px rgba(201, 147, 43, 0.5));
}

.hero-corner-left .corner-blur {
  left: 0;
}

.hero-corner-right .corner-blur {
  right: 0;
}

.corner-image {
  position: absolute;
  bottom: 0;
  width: 85%;
  z-index: 2;
  filter: sepia(1) saturate(6) brightness(1.05) hue-rotate(2deg) drop-shadow(0 0 12px rgba(201, 147, 43, 0.4));
}

.hero-corner-left .corner-image {
  left: 0;
}

.hero-corner-right .corner-image {
  right: 0;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  padding: 0 24px;
  margin-top: 0;
}

.hero h1 {
  font-family: var(--font-primary);
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #F5F5F5;
}

.hero-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 100%;
  margin: 0 auto 20px;
  line-height: 1.6;
}

/* Email input wrapper */
.hero-email-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Email input box */
.hero-email-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.97);
  border: 1.5px solid rgba(201, 147, 43, 0.45);
  border-radius: 50px;
  padding: 6px 6px 6px 20px;
  max-width: 440px;
  width: 100%;
  box-shadow:
    0 0 0 5px rgba(201, 147, 43, 0.07),
    0 0 40px rgba(201, 147, 43, 0.18),
    0 14px 44px rgba(0, 0, 0, 0.38);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.hero-email-box:focus-within {
  border-color: rgba(201, 147, 43, 0.85);
  box-shadow:
    0 0 0 6px rgba(201, 147, 43, 0.11),
    0 0 55px rgba(201, 147, 43, 0.26),
    0 14px 44px rgba(0, 0, 0, 0.42);
}

.hero-email-icon {
  color: rgba(201, 147, 43, 0.65);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
}

.hero-email-input {
  background: transparent;
  border: none;
  outline: none;
  color: #1a1a1a;
  font-family: var(--font-primary);
  font-size: 0.92rem;
  flex: 1;
  padding: 10px 0;
  min-width: 0;
}

.hero-email-input::placeholder {
  color: rgba(0, 0, 0, 0.38);
  font-weight: 400;
}

.hero-email-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #0B1A30;
  border: 2px solid #C9932B;
  color: #C9932B;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  position: relative;
}

/* Pulse ring animation */
.hero-email-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 147, 43, 0.35);
  animation: hero-btn-pulse 2.6s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  pointer-events: none;
}

@keyframes hero-btn-pulse {
  0%   { transform: scale(0.92); opacity: 0.7; }
  55%  { transform: scale(1.12); opacity: 0.15; }
  100% { transform: scale(0.92); opacity: 0.7; }
}

.hero-email-btn:hover {
  background: #C9932B;
  color: #0B1A30;
  border-color: #C9932B;
  transform: scale(1.07);
  box-shadow: 0 6px 22px rgba(201, 147, 43, 0.45);
}

.hero-email-btn:hover::before {
  animation: none;
  opacity: 0;
}

.hero-email-note {
  font-family: 'Manrope', sans-serif;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.3px;
  font-weight: 400;
  text-align: center;
}

/* ============================
   SERVICES
   ============================ */
.services {
  background: #102A50;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

/* Subtle radial ambient behind the grid */
.services::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(201,147,43,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.services-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 56px;
}

.services-title {
  font-family: 'Manrope', sans-serif;
  font-size: 34px;
  font-weight: 800;
  background: linear-gradient(135deg, #C9932B 0%, #F5D67B 40%, #C9932B 60%, #A77B23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.2;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

/* Gold underline bar */
.services-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, #C9932B, rgba(201,147,43,0.3));
  border-radius: 2px;
  margin: 12px auto 0;
}

.services-subtitle {
  font-family: 'Manrope', sans-serif;
  color: rgba(245, 245, 245, 0.6);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.85;
  max-width: 520px;
  margin: 0 auto;
  margin-top: 6px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: center;
  background: #ffffff;
  border: none;
  border-radius: 22px;
  padding: 42px 30px 38px;
  position: relative;
  overflow: hidden;
  align-items: center;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  box-shadow:
    0 2px 0 0 rgba(201,147,43,0.55),
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s ease;
}

.service-card-spacer {
  visibility: hidden;
}

/* Top gold shimmer sweep */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,147,43,0.55) 30%,
    #C9932B 50%,
    rgba(201,147,43,0.55) 70%,
    transparent 100%);
  border-radius: 22px 22px 0 0;
  opacity: 1;
}

/* Subtle inner top glow */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 80px;
  background: radial-gradient(ellipse at top, rgba(201,147,43,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 2px 0 0 rgba(201,147,43,0.8),
    0 20px 50px rgba(0, 0, 0, 0.16),
    0 6px 16px rgba(201,147,43,0.08);
}

/* 3‑D glassy gold icon container */
.service-icon {
  width: 106px;
  height: 106px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1e3d62 0%, #0B1A30 55%, #0e2545 100%);
  box-shadow:
    0 0 0 2.5px rgba(201,147,43,0.7),
    0 0 0 5.5px rgba(201,147,43,0.13),
    0 14px 40px rgba(0, 0, 0, 0.55),
    0 4px 10px rgba(0, 0, 0, 0.35),
    inset 0 2px 4px rgba(255, 220, 80, 0.22),
    inset 0 -3px 8px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  overflow: hidden;
  animation: icon-float 5s ease-in-out infinite;
}

/* Idle float animation */
@keyframes icon-float {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-6px); }
}

/* Stagger float so cards don't all move in sync */
.services-grid .service-card:nth-child(1) .service-icon { animation-delay: 0s; }
.services-grid .service-card:nth-child(2) .service-icon { animation-delay: 0.7s; }
.services-grid .service-card:nth-child(3) .service-icon { animation-delay: 1.4s; }
.services-grid .service-card:nth-child(4) .service-icon { animation-delay: 0.35s; }
.services-grid .service-card:nth-child(5) .service-icon { animation-delay: 1.05s; }
.services-grid .service-card:nth-child(6) .service-icon { animation-delay: 1.75s; }
.services-grid .service-card:nth-child(7) .service-icon { animation-delay: 0.55s; }
.services-grid .service-card:nth-child(8) .service-icon { animation-delay: 1.2s; }

/* Pause idle float on hover — let hover transform take over */
.service-card:hover .service-icon {
  animation-play-state: paused;
  box-shadow:
    0 0 0 2.5px #C9932B,
    0 0 0 7px rgba(201,147,43,0.2),
    0 18px 50px rgba(0, 0, 0, 0.6),
    0 0 32px rgba(201,147,43,0.32),
    inset 0 2px 4px rgba(255, 220, 80, 0.28),
    inset 0 -3px 8px rgba(0, 0, 0, 0.5);
  transform: translateY(-5px) scale(1.07);
}
.service-icon::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 10px;
  width: 38px;
  height: 22px;
  background: radial-gradient(ellipse at 40% 30%,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  transform: rotate(-20deg);
}

/* Inner bottom warm glow */
.service-icon::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(201,147,43,0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

.service-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter:
    sepia(1) saturate(5) brightness(1.2) hue-rotate(3deg)
    drop-shadow(0 2px 4px rgba(201,147,43,0.9))
    drop-shadow(0 0 14px rgba(255,215,0,0.55))
    drop-shadow(0 4px 18px rgba(0,0,0,0.6));
  position: relative;
  z-index: 3;
  animation: img-icon-sway 5s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), filter 0.4s ease;
}

/* Subtle sway — rotates gently like a 3D object catching light */
@keyframes img-icon-sway {
  0%   { transform: rotate(-4deg) scale(1); }
  25%  { transform: rotate(0deg)  scale(1.04); }
  50%  { transform: rotate(4deg)  scale(1); }
  75%  { transform: rotate(0deg)  scale(1.04); }
  100% { transform: rotate(-4deg) scale(1); }
}

/* Stagger sway per card to avoid lockstep */
.services-grid .service-card:nth-child(1) .service-icon img { animation-delay: 0s; }
.services-grid .service-card:nth-child(2) .service-icon img { animation-delay: 1.1s; }
.services-grid .service-card:nth-child(3) .service-icon img { animation-delay: 2.2s; }

/* Hover: pause sway, pop forward */
.service-card:hover .service-icon img {
  animation-play-state: paused;
  transform: scale(1.18) rotate(0deg);
  filter:
    sepia(1) saturate(6) brightness(1.3) hue-rotate(3deg)
    drop-shadow(0 2px 6px rgba(201,147,43,1))
    drop-shadow(0 0 20px rgba(255,215,0,0.75))
    drop-shadow(0 6px 22px rgba(0,0,0,0.65));
}

.service-content {
  text-align: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.service-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #0d2240;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
  line-height: 1.3;
}

.service-content > p {
  font-family: 'Manrope', sans-serif;
  color: rgba(0,0,0,0.58);
  font-size: 13.5px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.75;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.service-card ul {
  list-style: none;
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  border-top: 1px solid rgba(201,147,43,0.14);
  padding-top: 16px;
}

.service-card ul li {
  font-family: 'Manrope', sans-serif;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #2a2a3a;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.55;
  padding-left: 0;
  position: relative;
}

.service-card ul li:last-child {
  margin-bottom: 0;
}

.service-card ul li::before {
  display: none;
}

.service-card ul li .bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7px;
  height: 7px;
  min-width: 7px;
  margin-top: 4px;
  background: linear-gradient(135deg, #FFD700 0%, #C9932B 100%);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 0;
  line-height: 0;
  box-shadow: 0 0 6px rgba(201,147,43,0.5);
}

/* Font Awesome icons — vivid 3D gold emboss */
.service-fa-icon {
  font-size: 44px;
  color: #FFB800;
  position: relative;
  z-index: 3;
  text-shadow:
    0 1px 0 #8B6000,
    0 2px 0 #7A5500,
    0 3px 0 #604200,
    0 4px 8px rgba(0,0,0,0.75),
    0 0 20px rgba(255,200,0,0.65),
    0 0 44px rgba(201,147,43,0.38);
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.65));
  animation: fa-icon-sway 5s ease-in-out infinite;
  transition: text-shadow 0.35s ease, color 0.35s ease;
}

@keyframes fa-icon-sway {
  0%   { transform: rotate(-4deg) scale(1); }
  25%  { transform: rotate(0deg)  scale(1.06); }
  50%  { transform: rotate(4deg)  scale(1); }
  75%  { transform: rotate(0deg)  scale(1.06); }
  100% { transform: rotate(-4deg) scale(1); }
}

/* Stagger FA icon sway delays (cards 4–8) */
.services-grid .service-card:nth-child(4) .service-fa-icon { animation-delay: 0s; }
.services-grid .service-card:nth-child(5) .service-fa-icon { animation-delay: 0.9s; }
.services-grid .service-card:nth-child(6) .service-fa-icon { animation-delay: 1.8s; }
.services-grid .service-card:nth-child(7) .service-fa-icon { animation-delay: 2.7s; }
.services-grid .service-card:nth-child(8) .service-fa-icon { animation-delay: 3.6s; }

.service-card:hover .service-fa-icon {
  color: #FFD700;
  text-shadow:
    0 1px 0 #8B6000,
    0 2px 0 #7A5500,
    0 3px 0 #604200,
    0 5px 10px rgba(0,0,0,0.8),
    0 0 26px rgba(255,225,0,0.9),
    0 0 55px rgba(201,147,43,0.6);
  animation-play-state: paused;
  transform: scale(1.18) rotate(0deg);
}

/* Simple service cards (no bullet list) */
.service-card-simple .service-content > p {
  margin-bottom: 0;
}


/* ============================
   VALUE CREATION ENGINE
   ============================ */
.value-engine {
  background: #0B1A30;
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
}

/* Ambient radial gold glow */
.value-engine::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 650px;
  background: radial-gradient(ellipse, rgba(201,147,43,0.08) 0%, transparent 68%);
  pointer-events: none;
  z-index: 2;
}

/* Bottom ambient glow */
.value-engine::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201,147,43,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

/* Background graphics layer */
.ve-bg-graphics {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.ve-group95 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  opacity: 0.25;
}

.ve-group95 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ve-vector50 {
  position: absolute;
  bottom: 20%;
  left: -5%;
  width: 180px;
  opacity: 0.1;
}
.ve-vector50 img { width: 100%; }

.ve-vector51 {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 150px;
  opacity: 0.08;
}
.ve-vector51 img { width: 100%; }

.ve-vector53 {
  position: absolute;
  bottom: 5%;
  right: 15%;
  width: 200px;
  opacity: 0.1;
}
.ve-vector53 img { width: 100%; }

/* Decorative images layer */
.ve-decorative {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.ve-image22 {
  position: absolute;
  bottom: 20%;
  right: 5%;
  width: 110px;
  opacity: 0.5;
}
.ve-image22 img { width: 100%; filter: sepia(1) saturate(3) brightness(1.1) hue-rotate(5deg); }

.ve-image23 {
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 90px;
  opacity: 0.5;
}
.ve-image23 img { width: 100%; filter: sepia(1) saturate(3) brightness(1.1) hue-rotate(5deg); }

/* ── Content container */
.ve-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 10;
}

/* ── Header */
.ve-header {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
}

/* Subtle connector line dropping from header to grid */
.ve-header::after {
  content: '';
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, rgba(201,147,43,0.45), transparent);
}

/* Badge with flanking lines */
.ve-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #C9932B 0%, #F5D67B 40%, #C9932B 60%, #A77B23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.ve-badge::before,
.ve-badge::after {
  content: '';
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,147,43,0.7));
  flex-shrink: 0;
}

.ve-badge::after {
  background: linear-gradient(90deg, rgba(201,147,43,0.7), transparent);
}

/* Title */
.ve-title {
  font-family: 'Manrope', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.18;
  margin-bottom: 22px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 2px;
}

/* Subtitle */
.ve-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 15.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* Ornamental divider bar */
.ve-title-line {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #C9932B 25%, #FFD700 50%, #C9932B 75%, transparent 100%);
  border-radius: 2px;
  margin: 0 auto;
  box-shadow: 0 0 14px rgba(201,147,43,0.45), 0 0 28px rgba(201,147,43,0.2);
}

/* ── Pillars grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1120px;
  margin: 0 auto;
}

/* ── Pillar card — white */
.pillar-card {
  background: #ffffff;
  border: 1px solid rgba(201,147,43,0.2);
  border-radius: 20px;
  padding: 40px 30px 34px;
  min-height: 230px;
  overflow: hidden;
  position: relative;
  z-index: 3;
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.42s ease,
              box-shadow 0.42s ease;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 2px 0 0 rgba(201,147,43,0.45),
    0 10px 40px rgba(0,0,0,0.12),
    0 4px 12px rgba(0,0,0,0.07),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

/* Gold shimmer stripe across top edge */
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,147,43,0.55) 25%,
    rgba(255,215,0,0.85) 50%,
    rgba(201,147,43,0.55) 75%,
    transparent 100%);
  border-radius: 20px 20px 0 0;
  z-index: 4;
}

/* Subtle corner ambient glow behind content */
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(201,147,43,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.pillar-card:hover {
  transform: translateY(-9px);
  border-color: rgba(201,147,43,0.5);
  box-shadow:
    0 0 0 1px rgba(201,147,43,0.14),
    0 22px 60px rgba(0,0,0,0.14),
    0 8px 24px rgba(0,0,0,0.09),
    0 0 40px rgba(201,147,43,0.07),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

/* Watermark number — hidden only in value-engine pillars */
.value-engine .pillar-number {
  display: none;
}

.pillar-number {
  font-family: 'Manrope', sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(201,147,43,0.55);
  line-height: 1;
  letter-spacing: -3px;
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 1;
  pointer-events: none;
  transition: -webkit-text-stroke 0.4s ease, filter 0.4s ease;
  user-select: none;
  filter: drop-shadow(0 0 6px rgba(201,147,43,0.25));
}

.pillar-card:hover .pillar-number {
  -webkit-text-stroke: 2px rgba(201,147,43,0.85);
  filter: drop-shadow(0 0 10px rgba(201,147,43,0.45));
}

/* Pillar body */
.pillar-body {
  position: relative;
  z-index: 2;
  flex: 1;
}

/* Gold underflow glow pool */
.pillar-glow {
  position: absolute;
  bottom: -18px;
  left: 20%;
  width: 60%;
  height: 40px;
  background: #C9932B;
  filter: blur(40px);
  opacity: 0.08;
  border-radius: 50%;
  pointer-events: none;
  transition: opacity 0.4s ease, width 0.4s ease, left 0.4s ease;
}

.pillar-card:hover .pillar-glow {
  opacity: 0.22;
  width: 70%;
  left: 15%;
}

/* Heading — dark navy with vertical gold left indicator */
.pillar-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 16.5px;
  font-weight: 700;
  color: #0B1A30;
  margin-bottom: 14px;
  line-height: 1.35;
  position: relative;
  z-index: 2;
  padding-left: 14px;
}

/* Gold vertical bar before each heading */
.pillar-card h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 3px;
  height: calc(100% - 4px);
  background: linear-gradient(180deg, #FFD700 0%, #C9932B 100%);
  border-radius: 2px;
}

/* Body text */
.pillar-card p {
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(0,0,0,0.62);
  line-height: 1.72;
  position: relative;
  z-index: 2;
}

/* ── Responsive */
@media (max-width: 900px) {
  .value-engine {
    padding: 80px 0 90px;
  }
  .ve-title {
    font-size: 30px;
    letter-spacing: 1.5px;
  }
  .ve-subtitle {
    font-size: 14px;
  }
  .pillars-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .pillar-card {
    min-height: 190px;
    padding: 30px 24px 26px;
  }
  .pillar-number {
    font-size: 56px;
  }
}

@media (max-width: 600px) {
  .value-engine {
    padding: 60px 0 70px;
  }
  .ve-header {
    margin-bottom: 48px;
  }
  .ve-title {
    font-size: 24px;
    letter-spacing: 1px;
  }
  .ve-subtitle {
    font-size: 13.5px;
  }
  .ve-badge {
    font-size: 10px;
    letter-spacing: 3px;
  }
  .ve-badge::before,
  .ve-badge::after {
    width: 30px;
  }
  .ve-title-line {
    width: 80px;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pillar-card {
    min-height: auto;
    padding: 28px 22px 24px;
  }
  .pillar-number {
    font-size: 48px;
    top: 14px;
    right: 18px;
  }
}

/* ============================
   HOW WE DRIVE PORTFOLIO PERFORMANCE
   ============================ */
.perf {
  background: #102A50;
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Ambient gold glows */
.perf::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(201,147,43,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.perf::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201,147,43,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.perf-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.perf-hex-tl  { display: none; }
.perf-hex-sm1 { display: none; }
.perf-hex-sm2 {
  position: absolute;
  top: 22%;
  left: 28%;
  width: 18px;
  opacity: 0.35;
}

/* Container */
.perf-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ── Section header */
.perf-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.perf-header::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, rgba(201,147,43,0.5), transparent);
}

/* Badge */
.perf-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #C9932B 0%, #F5D67B 40%, #C9932B 60%, #A77B23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.perf-badge::before,
.perf-badge::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,147,43,0.7));
  flex-shrink: 0;
}
.perf-badge::after {
  background: linear-gradient(90deg, rgba(201,147,43,0.7), transparent);
}

/* Title */
.perf-title {
  font-family: 'Manrope', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.18;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 18px;
}

/* Subtitle */
.perf-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 28px;
}

/* Ornamental divider */
.perf-divider {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #C9932B 25%, #FFD700 50%, #C9932B 75%, transparent 100%);
  border-radius: 2px;
  margin: 0 auto;
  box-shadow: 0 0 14px rgba(201,147,43,0.4), 0 0 28px rgba(201,147,43,0.18);
}

/* ── Cards grid — 4 columns */
.perf-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  width: 100%;
  max-width: 1000px;
  margin-bottom: 56px;
}

/* ── Card — white */
.perf-card {
  background: #ffffff;
  border: 1px solid rgba(201,147,43,0.2);
  border-radius: 20px;
  padding: 36px 20px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 2px 0 0 rgba(201,147,43,0.45),
    0 10px 36px rgba(0,0,0,0.18),
    0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.38s cubic-bezier(0.25,0.46,0.45,0.94),
              border-color 0.38s ease,
              box-shadow 0.38s ease;
}

/* Gold shimmer top strip */
.perf-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,147,43,0.55) 25%,
    rgba(255,215,0,0.85) 50%,
    rgba(201,147,43,0.55) 75%,
    transparent 100%);
  border-radius: 20px 20px 0 0;
  z-index: 2;
}

/* Bottom corner ambient glow */
.perf-card::after {
  content: '';
  position: absolute;
  bottom: -24px; right: -24px;
  width: 110px; height: 110px;
  background: radial-gradient(circle, rgba(201,147,43,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.perf-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,147,43,0.5);
  box-shadow:
    0 0 0 1px rgba(201,147,43,0.12),
    0 20px 56px rgba(0,0,0,0.2),
    0 8px 22px rgba(0,0,0,0.12),
    0 0 36px rgba(201,147,43,0.06);
}

/* Metric value */
.perf-value {
  font-family: 'Manrope', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #0B1A30;
  margin-bottom: 10px;
  line-height: 1;
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
}

/* Gold underline accent on value */
.perf-card-top {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #C9932B, #FFD700);
  border-radius: 2px;
  margin: 0 auto 18px;
  box-shadow: 0 0 8px rgba(201,147,43,0.5);
}

/* Label */
.perf-label {
  font-family: 'Manrope', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(0,0,0,0.58);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* Map — UNTOUCHED */
.perf-map {
  width: 100%;
  max-width: 1000px;
}

.perf-map img {
  width: 100%;
  height: auto;
  filter: sepia(1) saturate(3) brightness(1.1) hue-rotate(5deg);
}

/* ============================
   WHO WE WORK WITH
   ============================ */
.wwww {
  background: #0B1A30;
  min-height: 100vh;
  padding: 80px 0;
  position: relative;
}

.wwww-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.wwww-title {
  font-family: 'Manrope', sans-serif;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #C9932B 0%, #F5D67B 40%, #C9932B 60%, #A77B23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  line-height: 1.3;
  letter-spacing: 3px;
  margin-bottom: 50px;
}

.wwww-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.wwww-card {
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.wwww-card-bg {
  position: absolute;
  inset: 0;
  background: #ffffff;
  border: 1px solid rgba(201, 147, 43, 0.2);
  border-radius: 12px;
  z-index: 0;
}

.wwww-card-icon {
  position: absolute;
  right: -40px;
  top: 20px;
  width: 180px;
  height: 180px;
  object-fit: contain;
  opacity: 0.5;
  z-index: 1;
}

.wwww-card-icon-3 {
  width: 90px;
  height: 190px;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.wwww-card-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.wwww-card-content h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 500;
  background: linear-gradient(135deg, #C9932B 0%, #F5D67B 40%, #C9932B 60%, #A77B23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 160px;
}

.wwww-card-content p {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.65);
  max-width: 190px;
  line-height: 1.4;
}

/* Industries sub-section inside OUR CLIENTELE */
.wwww-industries-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  background: linear-gradient(135deg, #C9932B 0%, #F5D67B 40%, #C9932B 60%, #A77B23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 48px;
  margin-bottom: 24px;
}

.wwww-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 100%;
}

/* ============================
   WHY CHOOSE US
   ============================ */
.wcu {
  background: #0B1A30;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.wcu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.wcu-header {
  text-align: center;
  margin-bottom: 80px;
}

.wcu-badge {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #C9932B 0%, #F5D67B 40%, #C9932B 60%, #A77B23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: 1px solid rgba(201, 147, 43, 0.25);
  border-radius: 100px;
  padding: 6px 20px;
  margin-bottom: 20px;
}

.wcu-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: #F5F5F5;
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.wcu-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #C9932B;
  border-radius: 2px;
  margin: 14px auto 0;
}

.wcu-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 660px;
  margin: 0 auto;
}

/* Alternating rows — DOM order controls left/right */
.wcu-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  margin-bottom: 6px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.35s ease;
}

.wcu-row:last-child {
  margin-bottom: 0;
}

.wcu-row + .wcu-row {
  margin-top: 32px;
}

.wcu-row:hover {
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.35);
}

/* Text column — default: text on RIGHT (after image in DOM) */
.wcu-text {
  background: #ffffff;
  padding: 52px 52px 52px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  position: relative;
}

/* Gold bar always on the left edge of the text panel */
.wcu-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #C9932B 0%, rgba(201, 147, 43, 0.2) 100%);
  border-radius: 0 4px 4px 0;
}

/* When text is on the LEFT (image on right), bar moves to right edge */
.wcu-text.wcu-text-left::before {
  left: auto;
  right: 0;
  border-radius: 4px 0 0 4px;
}

.wcu-text h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0B1A30;
  line-height: 1.3;
}

.wcu-text p {
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.8;
}

/* Image column */
.wcu-image {
  overflow: hidden;
  min-height: 340px;
}

.wcu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.wcu-row:hover .wcu-image img {
  transform: scale(1.04);
}

/* ============================
   DISCIPLINE OVER COMPLEXITY
   ============================ */
.prec {
  background: #102A50;
  min-height: 100vh;
  padding: 100px 0 100px;
  position: relative;
  overflow: hidden;
}

.prec-bg-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 147, 43, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.prec-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

/* --- Header Area --- */
.prec-header {
  text-align: center;
  margin-bottom: 60px;
}

.prec-eyebrow {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  background: linear-gradient(135deg, #C9932B 0%, #F5D67B 40%, #C9932B 60%, #A77B23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 16px;
  padding: 6px 20px;
  border: 1px solid rgba(201, 147, 43, 0.3);
  border-radius: 30px;
}

.prec-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  background: linear-gradient(135deg, #C9932B 0%, #F5D67B 40%, #C9932B 60%, #A77B23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.prec-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 400;
  color: rgba(245, 245, 245, 0.75);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 24px;
}

.prec-title-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C9932B, transparent);
  margin: 0 auto;
  border-radius: 2px;
}

/* --- Diagram --- */
.prec-diagram {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 520px;
  margin: 0 auto 70px;
}

.prec-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 100%;
  object-fit: contain;
  z-index: 0;
  opacity: 0.55;
}

.prec-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  object-fit: contain;
  z-index: 2;
  filter: sepia(1) saturate(3) brightness(1.1) hue-rotate(5deg);
}

/* --- Milestones --- */
.prec-milestone {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 3;
  padding: 14px 18px;
  background: rgba(11, 26, 48, 0.7);
  border: 1px solid rgba(201, 147, 43, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prec-milestone:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 147, 43, 0.15);
  border-color: rgba(201, 147, 43, 0.4);
}

.prec-ms-number {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 800;
  background: linear-gradient(135deg, #C9932B 0%, #F5D67B 40%, #C9932B 60%, #A77B23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  margin-bottom: 4px;
  opacity: 0.85;
}

.prec-dot {
  width: 14px;
  height: 14px;
  background: #C9932B;
  border-radius: 50%;
  display: block;
  position: absolute;
  z-index: 3;
  box-shadow: 0 0 12px rgba(201, 147, 43, 0.5);
}

/* Dot positions */
.prec-dot-tl { top: 30%; left: 13%; }
.prec-dot-tr { top: 27%; right: 10%; }
.prec-dot-bl { bottom: 22%; left: 30%; }
.prec-dot-br { bottom: 24%; right: 25%; }

.prec-ms-label {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(135deg, #C9932B 0%, #F5D67B 40%, #C9932B 60%, #A77B23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}

.prec-ms-value {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #F5F5F5;
  line-height: 1.3;
}

.prec-ms-tl { top: 5%; left: 5%; }
.prec-ms-bl { bottom: 5%; left: 7%; }
.prec-ms-br { bottom: 2%; right: 3%; text-align: right; }
.prec-ms-tr { top: 5%; right: 3%; text-align: right; }

/* --- Summary Cards Row --- */
.prec-summary-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.prec-summary-card {
  background: rgba(11, 26, 48, 0.5);
  border: 1px solid rgba(201, 147, 43, 0.15);
  border-radius: 16px;
  padding: 36px 28px 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.prec-summary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201, 147, 43, 0.12);
  border-color: rgba(201, 147, 43, 0.35);
}

.prec-summary-icon {
  font-size: 22px;
  color: #C9932B;
  margin-bottom: 18px;
  width: 52px;
  height: 52px;
  background: rgba(201, 147, 43, 0.08);
  border-radius: 14px;
  border: 1px solid rgba(201, 147, 43, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.prec-summary-icon svg {
  vertical-align: middle;
}

.prec-summary-icon::before {
  vertical-align: middle;
}

.prec-summary-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #F5F5F5;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.prec-summary-card p {
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(245, 245, 245, 0.7);
  line-height: 1.65;
  margin: 0;
}

/* ============================
   GCC SECTION
   ============================ */
.gcc {
  background: #102A50;
  min-height: 100vh;
  padding: 100px 0 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.gcc-bg-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(201, 147, 43, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.gcc-hex-left {
  display: none;
}

.gcc-hex-right {
  display: none;
}

.gcc-bg-img {
  display: none;
}

.gcc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 10;
  width: 100%;
}

/* --- GCC Header --- */
.gcc-header {
  text-align: center;
  margin-bottom: 56px;
}

.gcc-eyebrow {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  background: linear-gradient(135deg, #C9932B 0%, #F5D67B 40%, #C9932B 60%, #A77B23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
  padding: 6px 20px;
  border: 1px solid rgba(201, 147, 43, 0.3);
  border-radius: 30px;
}

.gcc-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 800;
  background: linear-gradient(135deg, #C9932B 0%, #F5D67B 40%, #C9932B 60%, #A77B23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 2.5px;
  margin-bottom: 22px;
}

.gcc-desc {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(13.5px, 1.4vw, 16px);
  font-weight: 400;
  color: rgba(245, 245, 245, 0.72);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 28px;
  line-height: 1.75;
}

.gcc-title-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C9932B, transparent);
  margin: 0 auto;
  border-radius: 2px;
}

/* --- Cards (design preserved) --- */
.gcc-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
  margin: 0 auto;
}

.gcc-card {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(201, 147, 43, 0.25);
  border-radius: 10px;
  width: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.gcc-card:hover {
  border-color: rgba(201, 147, 43, 0.6);
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 147, 43, 0.08);
}

.gcc-card-border {
  display: none;
}

.gcc-card span {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #C9932B;
  text-align: center;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}

.gcc-watermark {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: rgba(201, 147, 43, 0.08);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  margin-top: 48px;
  letter-spacing: 2px;
  user-select: none;
  pointer-events: none;
}

/* ============================
   CONTACT / PARTNER SECTION
   ============================ */
.contact {
  background: #0B1A30;
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-bg-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 147, 43, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.contact-container {
  max-width: 1100px;
  width: 100%;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 2;
}

/* --- Contact Header --- */
.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-eyebrow {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  background: linear-gradient(135deg, #C9932B 0%, #F5D67B 40%, #C9932B 60%, #A77B23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
  padding: 6px 20px;
  border: 1px solid rgba(201, 147, 43, 0.3);
  border-radius: 30px;
}

.contact-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  background: linear-gradient(135deg, #C9932B 0%, #F5D67B 40%, #C9932B 60%, #A77B23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 2.5px;
  width: 100%;
  margin-bottom: 20px;
}

.contact-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(13.5px, 1.4vw, 16px);
  font-weight: 400;
  color: rgba(245, 245, 245, 0.7);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 24px;
  line-height: 1.75;
}

.contact-title-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C9932B, transparent);
  margin: 0 auto;
  border-radius: 2px;
}

/* --- Callback heading --- */
.contact-info-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-bottom: 28px;
}

.contact-callback-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #C9932B 0%, #F5D67B 40%, #C9932B 60%, #A77B23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  letter-spacing: 1px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.contact-label {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #d9d9d9;
  white-space: nowrap;
}

.contact-link {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #C9932B;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #C9932B;
}

/* --- Form --- */
.contact-form {
  width: 100%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-row {
  display: flex;
  gap: 16px;
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  background: #ffffff;
  border: 1px solid rgba(201, 147, 43, 0.35);
  border-radius: 10px;
  padding: 16px 20px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #C9932B;
  box-shadow: 0 0 0 3px rgba(201, 147, 43, 0.08);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-submit {
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, #C9932B 0%, #F5D67B 40%, #C9932B 60%, #A77B23 100%);
  border: none;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0B1A30;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  margin-top: 4px;
}

.contact-submit:hover {
  background: #A77B23;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 147, 43, 0.2);
}

.contact-submit:active {
  transform: translateY(0);
}

.contact-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* --- Form Status Messages --- */
.form-status {
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  animation: fadeInStatus 0.3s ease;
}

.form-status-success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #22c55e;
}

.form-status-error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
}

@keyframes fadeInStatus {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.contact-form input:disabled,
.contact-form textarea:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* --- Globe --- */
.contact-globe {
  position: relative;
  width: 100%;
  height: 300px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  width: 200px;
  height: 100px;
  opacity: 0.9;
  z-index: 1;
}

.contact-globe-img {
  width: 120%;
  max-width: 1100px;
  opacity: 0.3;
  position: absolute;
  top: 30px;
  z-index: 0;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: #060F1E;
  padding: 64px 0 0;
  border-top: 1px solid rgba(201, 147, 43, 0.2);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Top: brand + contact side by side */
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 48px;
}

/* Brand column */
.footer-brand {
  flex: 1;
  max-width: 380px;
}

.footer-brand-name {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, #C9932B 0%, #F5D67B 40%, #C9932B 60%, #A77B23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-brand-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
}

/* Contact column */
.footer-contact {
  flex: 1;
  max-width: 340px;
}

.footer-section-title {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 700;
  background: linear-gradient(135deg, #C9932B 0%, #F5D67B 40%, #C9932B 60%, #A77B23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-contact-icon {
  font-size: 18px;
  color: #C9932B;
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.footer-contact-link {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  line-height: 1.8;
  transition: color 0.25s ease;
}

.footer-contact-link:hover {
  color: #C9932B;
}

/* Divider */
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(201, 147, 43, 0.15);
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
}

.footer-tagline {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #C9932B 0%, #F5D67B 40%, #C9932B 60%, #A77B23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-copy {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 400;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .perf-container {
    flex-direction: column;
    text-align: center;
  }

  .perf-right {
    align-items: center;
  }

  .perf-title {
    font-size: 30px;
    text-align: center;
  }

  .perf-metrics {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    gap: 18px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .service-card-spacer {
    display: none;
  }

  .wwww-grid {
    flex-direction: column;
    gap: 16px;
  }

  .wwww-industries-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .wcu {
    padding: 72px 0;
  }

  .wcu-row {
    grid-template-columns: 1fr 1fr;
  }

  .wcu-text {
    padding: 40px 36px;
  }

  .gcc-cards {
    max-width: 100%;
  }

  .gcc-watermark {
    font-size: 40px;
  }

  .gcc {
    padding: 80px 0 80px;
  }

  .gcc-container {
    padding: 0 32px;
  }

  .gcc-header {
    margin-bottom: 44px;
  }

  /* Precision section 1024px */
  .prec {
    padding: 80px 0 80px;
  }

  .prec-container {
    padding: 0 32px;
  }

  .prec-diagram {
    height: 440px;
    margin-bottom: 60px;
  }

  .prec-center {
    width: 280px;
    height: 280px;
  }

  .prec-summary-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .prec-ms-label {
    font-size: 12px;
  }

  .prec-ms-value {
    font-size: 17px;
  }

  .prec-milestone {
    padding: 12px 14px;
    border-radius: 10px;
  }
}

/* ===== SIDEBAR DRAWER ===== */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1100;
}

.sidebar-overlay.active {
  display: block;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  max-width: 80vw;
  height: 100vh;
  background: rgba(11, 26, 48, 0.98);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  padding: 0;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 30px rgba(0, 0, 0, 0.5);
}

.sidebar.active {
  left: 0;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(201, 147, 43, 0.2);
}

.sidebar-header .logo-icon {
  height: 60px;
}

.sidebar-close {
  background: none;
  border: none;
  color: #F5F5F5;
  font-size: 2rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.3s ease;
}

.sidebar-close:hover {
  color: #C9932B;
}

.sidebar-links {
  list-style: none;
  padding: 20px 0;
  flex: 1;
}

.sidebar-links li {
  border-bottom: 1px solid rgba(201, 147, 43, 0.1);
}

.sidebar-links li a {
  display: block;
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: #F5F5F5;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.sidebar-links li a:hover {
  color: #C9932B;
  background: rgba(201, 147, 43, 0.05);
  padding-left: 30px;
}

.sidebar-cta {
  display: block;
  margin: 16px 20px 30px;
  padding: 14px 24px;
  background: #C9932B;
  color: #0B1A30;
  text-align: center;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.sidebar-cta:hover {
  background: #A77B23;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .nav-cta {
    display: none;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .services-container {
    padding: 0 20px;
  }

  .services-title {
    font-size: 22px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card-spacer {
    display: none;
  }

  .wwww-grid {
    grid-template-columns: 1fr;
  }

  .wwww-industries-grid {
    grid-template-columns: 1fr;
  }

  .wcu {
    padding: 52px 0;
  }

  .wcu-container {
    padding: 0 20px;
  }

  .wcu-header {
    margin-bottom: 48px;
  }

  .wcu-title {
    font-size: 30px;
  }

  .wcu-row {
    grid-template-columns: 1fr;
  }

  .wcu-row + .wcu-row {
    margin-top: 24px;
  }

  .wcu-image {
    min-height: 220px;
  }

  .wcu-text {
    padding: 32px 28px;
  }

  /* Reset right-side bar back to left on mobile (stacked layout) */
  .wcu-text.wcu-text-left::before {
    left: 0;
    right: auto;
    border-radius: 0 4px 4px 0;
  }

  .prec-diagram {
    height: 300px;
  }

  .prec-center {
    width: 220px;
    height: 220px;
  }

  .prec-ms-label {
    font-size: 11px;
  }

  .prec-ms-value {
    font-size: 13px;
  }

  .prec-milestone {
    padding: 10px 12px;
    border-radius: 8px;
  }

  .prec-ms-number {
    font-size: 9px;
    margin-bottom: 2px;
  }

  .prec-summary-row {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 420px;
  }

  .prec-summary-card {
    padding: 28px 24px 24px;
  }

  .prec-header {
    margin-bottom: 40px;
  }

  .prec {
    padding: 60px 0 70px;
    min-height: auto;
  }

  .prec-container {
    padding: 0 20px;
  }

  .prec-diagram {
    margin-bottom: 50px;
  }

  .gcc-cards {
    max-width: 100%;
  }

  .gcc-watermark {
    font-size: 28px;
  }

  .gcc {
    min-height: auto;
    padding: 64px 0 64px;
  }

  .gcc-container {
    padding: 0 20px;
  }

  .gcc-header {
    margin-bottom: 36px;
  }

  .gcc-eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    padding: 5px 16px;
  }

  .gcc-card {
    height: 56px;
    border-radius: 8px;
  }

  .gcc-card span {
    font-size: 14px;
  }

  .contact-info-row {
    flex-direction: column;
    gap: 20px;
  }

  .contact-form-row {
    flex-direction: column;
  }

  .contact {
    padding: 64px 0 0;
  }

  .contact-container {
    padding: 0 20px;
  }

  .contact-header {
    margin-bottom: 32px;
  }

  .contact-callback-heading {
    font-size: 20px;
  }

  .contact-eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    padding: 5px 16px;
  }

  .contact-form {
    max-width: 100%;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px 16px;
    font-size: 14px;
  }

  .contact-submit {
    height: 48px;
    font-size: 14px;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-brand,
  .footer-contact {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.2rem;
  }

  .perf-title {
    font-size: 22px;
    letter-spacing: 1px;
  }

  .perf-subtitle {
    font-size: 13px;
  }

  .perf-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 100%;
  }

  .perf-card {
    padding: 26px 14px 22px;
  }

  .perf-value {
    font-size: 24px;
  }

  .perf-label {
    font-size: 11.5px;
  }

  .wwww-title {
    font-size: 24px;
  }

  .prec-title {
    font-size: 24px;
    letter-spacing: 1.5px;
  }

  .prec-eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    padding: 5px 14px;
  }

  .prec-container {
    padding: 0 16px;
  }

  .prec {
    padding: 50px 0 60px;
  }

  .prec-diagram {
    height: 260px;
    margin-bottom: 40px;
  }

  .prec-center {
    width: 180px;
    height: 180px;
  }

  .prec-dot {
    width: 10px;
    height: 10px;
  }

  .prec-milestone {
    padding: 8px 10px;
    border-radius: 8px;
  }

  .prec-ms-number {
    font-size: 8px;
    margin-bottom: 1px;
  }

  .prec-ms-label {
    font-size: 9px;
  }

  .prec-ms-value {
    font-size: 11px;
  }

  .prec-summary-row {
    gap: 12px;
    max-width: 100%;
  }

  .prec-summary-card {
    padding: 24px 20px 20px;
  }

  .prec-summary-card h4 {
    font-size: 15px;
  }

  .prec-summary-card p {
    font-size: 12.5px;
  }

  .prec-summary-icon {
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 20px;
    margin-bottom: 14px;
  }

  .gcc-title {
    font-size: 22px;
    letter-spacing: 1.5px;
  }

  .gcc-watermark {
    font-size: 22px;
    margin-top: 32px;
  }

  .gcc-card {
    height: 52px;
  }

  .gcc-card span {
    font-size: 13px;
  }

  .gcc-eyebrow {
    font-size: 9px;
    letter-spacing: 2.5px;
    padding: 4px 14px;
    margin-bottom: 14px;
  }

  .contact-title {
    font-size: 22px;
    letter-spacing: 1.5px;
  }

  .contact-callback-heading {
    font-size: 18px;
  }

  .contact-container {
    padding: 0 16px;
  }

  .contact {
    padding: 50px 0 0;
  }

  .contact-eyebrow {
    font-size: 9px;
    letter-spacing: 2.5px;
    padding: 4px 14px;
    margin-bottom: 14px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 13px 14px;
    font-size: 13.5px;
    border-radius: 8px;
  }

  .contact-submit {
    height: 46px;
    font-size: 13.5px;
    border-radius: 8px;
  }

  .contact-globe {
    height: 220px;
    margin-top: 36px;
  }

  .footer-inner {
    padding: 0 20px;
  }

  .footer {
    padding: 44px 0 0;
  }
}
