/* ============================================================
   SHIELD SERVICES NIGERIA LIMITED — Stylesheet (Modernized)
   Brand: Navy #001A4D (dark #000F2E) · Gold #F5C200
   ============================================================ */

/* --- CSS Custom Properties -------------------------------- */
:root {
  /* Colors */
  --navy:        #001A4D;
  --navy-dark:   #000F2E;
  --navy-mid:    #002466;
  --navy-glass:  rgba(0, 26, 77, 0.72);
  --gold:        #F5C200;
  --gold-light:  #FFD100;
  --gold-pale:   #fffbe0;
  --gold-glow:   rgba(245, 194, 0, 0.35);
  --white:       #ffffff;
  --off-white:   #f5f7fc;
  --off-white-2: #eef1f8;
  --text:        #0d1526;
  --text-muted:  #52607a;
  --border:      #dae0ef;

  /* Radius */
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  /* Shadows — layered for depth */
  --shadow-xs:   0 1px 3px rgba(0,26,77,0.07);
  --shadow-sm:   0 2px 8px rgba(0,26,77,0.09), 0 1px 3px rgba(0,26,77,0.05);
  --shadow:      0 4px 16px rgba(0,26,77,0.10), 0 1px 4px rgba(0,26,77,0.06);
  --shadow-md:   0 8px 28px rgba(0,26,77,0.13), 0 2px 8px rgba(0,26,77,0.07);
  --shadow-lg:   0 16px 48px rgba(0,26,77,0.18), 0 4px 16px rgba(0,26,77,0.08);
  --shadow-gold: 0 6px 24px rgba(245,194,0,0.35), 0 2px 8px rgba(245,194,0,0.2);

  /* Spacing scale */
  --space-1:  0.25rem;   /* 4px  */
  --space-2:  0.5rem;    /* 8px  */
  --space-3:  0.75rem;   /* 12px */
  --space-4:  1rem;      /* 16px */
  --space-5:  1.25rem;   /* 20px */
  --space-6:  1.5rem;    /* 24px */
  --space-8:  2rem;      /* 32px */
  --space-10: 2.5rem;    /* 40px */
  --space-12: 3rem;      /* 48px */
  --space-16: 4rem;      /* 64px */
  --space-20: 5rem;      /* 80px */
  --space-24: 6rem;      /* 96px */

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Transitions */
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --trans-fast: 0.18s var(--ease);
  --trans:      0.26s var(--ease);
  --trans-slow: 0.42s var(--ease);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Scroll-animation base classes ----------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.62s var(--ease), transform 0.62s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* --- Utilities -------------------------------------------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section { padding: var(--space-24) 0; }
.section-alt { background: var(--off-white); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-16);
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-3);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
  position: relative;
  display: inline-block;
}

/* Gold decorative bar under section titles */
.section-header .section-title::after,
.about-text .section-title::after,
.enquiry-info .section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: var(--space-3) auto 0;
}
.about-text .section-title::after,
.enquiry-info .section-title::after {
  margin-left: 0;
}

.section-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: var(--space-4);
}

/* --- Keyframes -------------------------------------------- */

/* Shimmer diagonal light sweep across hero */
@keyframes heroShimmer {
  0%   { transform: translateX(-120%) skewX(-20deg); }
  100% { transform: translateX(220%) skewX(-20deg); }
}

/* Gentle gradient shift on hero background */
@keyframes gradientDrift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Slow shield watermark float */
@keyframes shieldFloat {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50%       { transform: translateY(-18px) rotate(-8deg); }
}

/* Button shine sweep */
@keyframes btnShine {
  0%   { left: -80%; }
  100% { left: 130%; }
}

/* Pulse glow for featured card accent */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,194,0,0); }
  50%       { box-shadow: 0 0 0 6px rgba(245,194,0,0.12); }
}

/* Gold bar reveal on pillar hover */
@keyframes barReveal {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans-fast);
  border: 2px solid transparent;
  text-align: center;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

/* Shine sweep pseudo-element (primary only) */
.btn-primary::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -80%;
  width: 50%;
  height: 140%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.55) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: none;
}

.btn-primary:hover::after {
  animation: btnShine 0.52s var(--ease) forwards;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.btn-primary:active { transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* --- NAV -------------------------------------------------- */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy-glass);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(245,194,0,0.12);
  transition: border-bottom-color var(--trans), background var(--trans);
}

/* Gold border appears stronger after scroll (JS adds .scrolled) */
.nav-wrapper.scrolled {
  background: rgba(0, 15, 46, 0.92);
  border-bottom-color: rgba(245,194,0,0.45);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-logo {
  height: 62px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 3px rgba(245,194,0,0.4);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: transform var(--trans);
}
.nav-logo:hover { transform: scale(1.04); }

.about-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 3px rgba(245,194,0,0.6), 0 16px 48px rgba(0,0,0,0.12);
}

.footer-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 3px rgba(245,194,0,0.4);
  opacity: 1;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--trans-fast);
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--trans);
}
.nav-links a:not(.nav-cta):hover { color: var(--gold); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  transition: background var(--trans-fast), box-shadow var(--trans-fast), transform var(--trans-fast) !important;
  box-shadow: 0 2px 10px rgba(245,194,0,0.25);
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(245,194,0,0.4) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}

/* --- HERO ------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* Animated gradient background */
  background: linear-gradient(
    135deg,
    var(--navy-dark) 0%,
    #001a4d 30%,
    #002b7a 60%,
    #001233 100%
  );
  background-size: 300% 300%;
  animation: gradientDrift 14s ease infinite;
  overflow: hidden;
  padding-top: 68px;
}

/* Diagonal grid pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 75% at 75% 45%, rgba(245,194,0,0.07) 0%, transparent 65%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 48px,
      rgba(255,255,255,0.018) 48px,
      rgba(255,255,255,0.018) 49px
    );
  pointer-events: none;
  z-index: 0;
}

/* Animated diagonal shimmer light bar */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(245,194,0,0.045) 40%,
    rgba(255,255,255,0.06) 50%,
    rgba(245,194,0,0.045) 60%,
    transparent 100%
  );
  transform: skewX(-18deg);
  animation: heroShimmer 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Large faint shield watermark — CSS only */
.hero-watermark {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  width: min(520px, 55vw);
  height: min(580px, 62vw);
  background: transparent;
  border: 2.5px solid rgba(245,194,0,0.09);
  clip-path: polygon(50% 0%, 100% 20%, 100% 65%, 50% 100%, 0% 65%, 0% 20%);
  animation: shieldFloat 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.hero-watermark::before {
  content: '';
  position: absolute;
  inset: 12%;
  border: 2px solid rgba(245,194,0,0.055);
  clip-path: polygon(50% 0%, 100% 20%, 100% 65%, 50% 100%, 0% 65%, 0% 20%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0,15,46,0.55) 0%,
    rgba(0,15,46,0.22) 60%,
    transparent 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.hero-logo-wrap {
  margin-bottom: 1.5rem;
  display: inline-block;
  background: white;
  border-radius: 20px;
  padding: 1rem 1.5rem;
  box-shadow:
    0 0 0 3px rgba(245,194,0,0.6),
    0 16px 48px rgba(0,0,0,0.4);
  animation: heroBadgePulse 3s ease-in-out infinite;
}

@keyframes heroBadgePulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(245,194,0,0.6), 0 16px 48px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 0 0 4px rgba(245,194,0,1), 0 16px 56px rgba(245,194,0,0.25); }
}

.hero-logo {
  width: 200px;
  height: auto;
  display: block;
}

.hero-tagline {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-tagline::before,
.hero-tagline::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Headline with gradient text effect on key word */
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  color: var(--white);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-6);
}

.hero-headline .headline-highlight {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 60%, #ffe566 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.12rem;
  line-height: 1.72;
  margin-bottom: var(--space-10);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero badge — parallax via JS */
.hero-badge {
  position: absolute;
  right: 6%;
  bottom: 14%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,194,0,0.38);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-radius: var(--radius-lg);
  padding: 1.6rem 2.2rem;
  text-align: center;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: transform 0.1s linear;
}
.hero-badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-badge-label {
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--space-2);
}

/* --- STATS STRIP ------------------------------------------ */
.stats-strip {
  background: var(--navy);
  padding: 0;
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(245,194,0,0.12);
  position: relative;
  overflow: hidden;
}

/* Subtle horizontal glow line */
.stats-strip::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,194,0,0.3) 30%, rgba(245,194,0,0.3) 70%, transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat {
  padding: var(--space-10) var(--space-6);
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat:last-child { border-right: none; }

/* Hover lift on stat */
.stat::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 2px 2px 0 0;
  transition: width var(--trans);
}
.stat:hover::before { width: 60%; }

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.stat-label {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--space-2);
  font-weight: 500;
}

/* --- ABOUT ------------------------------------------------ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-20);
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-badge-wrap {
  width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-shield-icon svg { width: 130px; height: auto; }

.about-accent-bar {
  position: absolute;
  left: -1.5rem;
  top: 30%;
  width: 5px;
  height: 40%;
  background: linear-gradient(to bottom, var(--gold), rgba(245,194,0,0.3));
  border-radius: 3px;
}

.about-text p { color: var(--text-muted); margin-bottom: var(--space-4); line-height: 1.75; }

/* --- SERVICES --------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  padding-top: calc(var(--space-10) + 0.6rem);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  position: relative;
  overflow: visible;
}


.service-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 60px rgba(0,26,77,0.15),
    0 4px 16px rgba(0,26,77,0.08),
    -2px 0 0 var(--gold);
  border-color: rgba(245,194,0,0.4);
}


/* Featured card — gradient background + subtle glow */
.service-card--featured {
  background: linear-gradient(145deg, var(--navy) 0%, #002b7a 100%);
  border-color: rgba(245,194,0,0.5);
  color: var(--white);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.06);
  animation: pulseGlow 4s ease-in-out infinite;
}

.service-card--featured::after {
  content: '';
  position: absolute;
  top: 1.8rem; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.service-card--featured:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 64px rgba(0,26,77,0.28),
    0 6px 20px rgba(0,26,77,0.15),
    0 0 0 2px rgba(245,194,0,0.4);
}

.service-card--featured .service-desc { color: rgba(255,255,255,0.68); }
.service-card--featured .service-list li { color: rgba(255,255,255,0.78); }
.service-card--featured .service-list li::before { color: var(--gold); }
.service-card--featured .service-title { color: var(--white); }

.service-card-badge {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.28rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}

.service-icon {
  width: 54px;
  height: 54px;
  margin-bottom: var(--space-5);
  background: rgba(245,194,0,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card--featured .service-icon {
  background: rgba(255,255,255,0.1);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  color: var(--navy);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-5);
  line-height: 1.68;
}

.service-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: var(--space-1) 0;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.service-card--featured .service-list li {
  border-bottom-color: rgba(255,255,255,0.06);
}

/* --- WHY US ----------------------------------------------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.pillar {
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  position: relative;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  overflow: hidden;
}

/* Gold top border reveal on hover */
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.pillar:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245,194,0,0.3);
}
.pillar:hover::before { transform: scaleX(1); }

/* Modern pill/tag style icon — gold left bar */
.pillar-icon {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  font-size: 0;          /* hide the raw ✓ character */
  line-height: 1;
  background: rgba(245,194,0,0.12);
  border-left: 3px solid var(--gold);
  padding: var(--space-1) var(--space-3) var(--space-1) var(--space-2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  width: fit-content;
}

/* Checkmark badge rendered purely by CSS */
.pillar-icon::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 900;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Label text shown after the badge */
.pillar-icon::after {
  content: 'Verified';
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
}

.pillar h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}

.pillar p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.68; }

/* --- ENQUIRY FORM ----------------------------------------- */
.enquiry-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-20);
  align-items: start;
}

.enquiry-info .section-title { text-align: left; }
.enquiry-info p { color: var(--text-muted); margin-bottom: var(--space-6); line-height: 1.75; }
.enquiry-info .section-eyebrow { margin-bottom: var(--space-2); }

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: rgba(245,194,0,0.07);
  border: 1px solid rgba(245,194,0,0.2);
  border-radius: var(--radius);
  width: fit-content;
}

.contact-icon {
  font-size: 1.2rem;
  color: var(--gold);
}

.contact-detail a {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--trans-fast);
}
.contact-detail a:hover { color: var(--gold); }

.enquiry-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

/* Subtle top gold line */
.enquiry-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-5);
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group label span { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.82rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast), background var(--trans-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #a8b4cb; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(245,194,0,0.18), 0 1px 4px rgba(0,26,77,0.08);
}

.form-group select { appearance: none; cursor: pointer; }

.form-group textarea { resize: vertical; min-height: 130px; }

.field-error {
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: var(--space-1);
  min-height: 1em;
  font-weight: 500;
}

/* Submit button override — extra prominence */
.enquiry-form .btn-primary.btn-full {
  padding: 1.1rem;
  font-size: 1rem;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  margin-top: var(--space-2);
}

.form-success {
  display: none;
  background: linear-gradient(135deg, #eaf7ef, #d6f2e3);
  border: 1px solid #6dbb8a;
  color: #1e6640;
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-5);
  margin-top: var(--space-4);
  font-size: 0.95rem;
  font-weight: 500;
}
.form-success span { color: #27ae60; font-weight: 700; margin-right: var(--space-2); }

/* --- WHATSAPP BUTTON -------------------------------------- */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform var(--trans), box-shadow var(--trans);
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.whatsapp-btn svg { width: 100%; height: 100%; }

/* --- FOOTER ----------------------------------------------- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.55);
  padding: var(--space-16) 0 var(--space-8);
  border-top: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}

/* Faint radial light behind footer brand */
.footer::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(245,194,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  text-align: center;
  position: relative;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-top: var(--space-1);
}

.footer-links {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: color var(--trans-fast);
  position: relative;
}
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--trans);
}
.footer-links a:hover { color: var(--gold); }
.footer-links a:hover::after { width: 100%; }

.footer-address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}
.footer-address a {
  color: rgba(255,255,255,0.5);
  transition: color var(--trans);
}
.footer-address a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.06);
  width: 100%;
}

/* --- RESPONSIVE ------------------------------------------- */
@media (max-width: 1100px) {
  .enquiry-wrap { grid-template-columns: 1fr 1.2fr; gap: var(--space-8); }
}

@media (max-width: 1000px) {
  .services-grid { gap: var(--space-5); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .enquiry-wrap { grid-template-columns: 1fr; gap: var(--space-8); }
  .enquiry-form { max-width: 100%; }
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stat:nth-child(3), .stat:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .about-visual { display: none; }
  .section { padding: var(--space-16) 0; }
  .hero-logo { width: 160px; }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(0,15,46,0.97);
    backdrop-filter: blur(20px);
    padding: var(--space-6);
    gap: var(--space-5);
    border-bottom: 2px solid rgba(245,194,0,0.4);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-badge { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .section { padding: var(--space-12) 0; }
  .hero-headline { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .hero-logo { width: 140px; }
  .enquiry-form { padding: var(--space-6); }
  .footer-links { gap: var(--space-5); }
  .footer-address { font-size: 0.8rem; }
  .whatsapp-btn { bottom: 1.25rem; right: 1.25rem; width: 48px; height: 48px; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-4); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: var(--space-8) var(--space-4); }
  .hero-logo { width: 120px; }
  .hero-logo-wrap { padding: 0.75rem 1rem; }
  .enquiry-form { padding: var(--space-5); }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .nav-logo { height: 48px; }
}
