/* ==========================================================================
   PSMS — Root variables
   ========================================================================== */
:root {
  --navy-950: #050a17;
  --navy-900: #0a1128;
  --navy-800: #101a3a;
  --navy-700: #16224d;
  --navy-600: #1d2c63;
  --accent: #ff8c3a;
  --accent-2: #e6650f;
  --white: #ffffff;
  --off-white: #f5f7fb;
  --gray-100: #eef1f8;
  --gray-300: #c7cee0;
  --gray-500: #7c86a3;
  --gray-700: #4a5170;
  --text-dark: #10152a;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 4px 16px rgba(10, 17, 40, 0.08);
  --shadow-md: 0 12px 32px rgba(10, 17, 40, 0.12);
  --shadow-lg: 0 24px 60px rgba(10, 17, 40, 0.18);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Reset
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  line-height: 1.25;
  color: var(--navy-900);
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  min-width: 0;
}

.section { padding: 110px 0; position: relative; }

/* ==========================================================================
   "What We Do" background decoration — pure CSS/SVG corner accents,
   sit behind everything and never overlap the cards or text.
   ========================================================================== */
.what-we-do,
.story-section { overflow: hidden; }
.what-we-do .container,
.story-section .container { position: relative; z-index: 1; }

.decor-dots {
  position: absolute;
  width: 320px;
  height: 320px;
  background-image: radial-gradient(circle, var(--accent-2) 2.2px, transparent 2.4px);
  background-size: 22px 22px;
  opacity: 0.72;
  z-index: 0;
  pointer-events: none;
}
.decor-dots--tl {
  top: 0;
  left: 0;
  -webkit-mask-image: radial-gradient(circle at top left, white 0%, transparent 75%);
  mask-image: radial-gradient(circle at top left, white 0%, transparent 75%);
}
.decor-dots--br {
  bottom: 0;
  right: 0;
  -webkit-mask-image: radial-gradient(circle at bottom right, white 0%, transparent 75%);
  mask-image: radial-gradient(circle at bottom right, white 0%, transparent 75%);
}

.decor-arc {
  position: absolute;
  width: 220px;
  height: 220px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none'%3E%3Cpath d='M200,0 A200,200 0 0,1 0,200' stroke='%23ff8c3a' stroke-opacity='0.55' stroke-width='2.5'/%3E%3Cpath d='M200,45 A155,155 0 0,1 45,200' stroke='%23ff8c3a' stroke-opacity='0.4' stroke-width='2.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}
.decor-arc--tr { top: 0; right: 0; }
.decor-arc--bl { bottom: 0; left: 0; transform: rotate(180deg); }

@media (max-width: 768px) {
  .decor-dots, .decor-arc { display: none; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}

.btn i { font-size: 0.85em; transition: transform 0.25s var(--ease); }
.btn:hover i { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: var(--white);
  box-shadow: 0 10px 30px rgba(255, 140, 58, 0.28);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(255, 140, 58, 0.38); }

.btn-outline {
  background: transparent;
  border-color: var(--navy-700);
  color: var(--navy-900);
}
.btn-outline:hover { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); transform: translateY(-3px); }

.hero .btn-outline { border-color: rgba(255,255,255,0.35); color: var(--white); }
.hero .btn-outline:hover { background: var(--white); color: var(--navy-900); border-color: var(--white); }

.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy-800);
  transition: box-shadow 0.3s var(--ease);
}

.navbar.scrolled {
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* Top utility bar */
.topbar {
  background: var(--navy-800);
  border-bottom: 0.5px solid var(--white);
}
.topbar-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 7px 0;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
}
.topbar-item i { color: var(--accent); font-size: 0.72rem; }
a.topbar-item { transition: color 0.2s var(--ease); }
a.topbar-item:hover { color: var(--white); }
.topbar-sep { width: 1px; height: 12px; background: rgba(255,255,255,0.2); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  transition: padding 0.3s var(--ease);
}
.navbar.scrolled .navbar-inner { padding: 10px 0; }

.logo { display: flex; flex-direction: row; align-items: center; gap: 12px; }
.logo-img { height: 82px; width: auto; display: block; flex-shrink: 0; }
.logo-mark {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.5px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.logo-name {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--white);
  letter-spacing: 0.7px;
  max-width: 46vw;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.logo-tagline {
  font-size: 0.64rem;
  letter-spacing: 0.3px;
  color: var(--accent);
  font-weight: 600;
  margin-top: 3px;
  white-space: nowrap;
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links > a {
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.nav-links > a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.25s var(--ease);
}
.nav-links > a:hover, .nav-links > a.active { color: var(--white); }
.nav-links > a:hover::after, .nav-links > a.active::after { width: 100%; }

/* Services dropdown */
.nav-item { position: relative; }
.nav-item > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.nav-item:hover > .nav-link,
.nav-item.open > .nav-link,
.nav-item.active > .nav-link { color: var(--white); }
.nav-item .chevron { font-size: 0.7rem; transition: transform 0.25s var(--ease); }
.nav-item:hover .chevron, .nav-item.open .chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 640px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px 6px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 1001;
}
.nav-item:hover .dropdown,
.nav-item.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.25;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}
.dropdown a i { color: var(--accent-2); width: 16px; text-align: center; font-size: 0.85rem; }
.dropdown a:hover { background: var(--gray-100); color: var(--navy-950); }

.navbar-actions { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding-top: 150px;
  background: var(--navy-800);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-800) 55%, var(--navy-600) 100%);
}

/* Background-layer paper texture — sits BEHIND the photo slides in the
   stacking order (z-index 0, lowest in the slider). The slides are fully
   opaque, so this won't visibly show through them; it's a base layer only,
   ready for whenever a different background treatment needs it. */
.hero-texture {
  position: absolute;
  inset: 0;
  background-image: url('IMAGE/CLIENTS/banner_base_layer%202.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(5, 10, 23, 0.82) 0%, rgba(16, 26, 58, 0.72) 55%, rgba(29, 44, 99, 0.66) 100%);
  z-index: 3;
}

.hero-content { position: relative; z-index: 4; max-width: 700px; }

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
}

.text-gradient {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-accent { color: var(--accent); }

.hero-tagline {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--gray-300);
  max-width: 560px;
  margin-bottom: 32px;
}

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

/* Slider controls */
.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.dot:hover { background: rgba(255,255,255,0.7); }
.dot.is-active { background: var(--accent); transform: scale(1.3); }

.slider-toggle {
  position: absolute;
  right: 24px;
  bottom: 18px;
  z-index: 5;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--white);
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.slider-toggle:hover { background: rgba(255,255,255,0.24); }

/* ==========================================================================
   Section headings
   ========================================================================== */
.section-eyebrow {
  color: var(--accent-2);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  text-align: center;
  margin-bottom: 14px;
}
.section-eyebrow--light { color: var(--accent); }

.section-title {
  text-align: center;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-title--light { color: var(--white); }

.section-subtitle {
  text-align: center;
  color: var(--gray-700);
  max-width: 620px;
  margin: 0 auto 60px;
  font-size: 1.02rem;
}
.section-subtitle--light { color: var(--gray-300); }

.section-cta { text-align: center; margin-top: 52px; }

/* ==========================================================================
   Card grid / service cards
   ========================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.card-grid--services { grid-template-columns: repeat(4, 1fr); }

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 22px;
}

.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--gray-700); font-size: 0.93rem; }

.service-card--highlight {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.service-card--highlight h3,
.service-card--highlight p { color: var(--white); }
.service-card--highlight p { color: var(--gray-300); }
.service-card--highlight .service-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--navy-950);
}
.service-card--highlight:hover { transform: translateY(-10px) scale(1.015); }

.highlight-badge {
  position: absolute;
  top: -14px; right: 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--navy-950);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(255, 140, 58, 0.4);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
}
.card-link i { transition: transform 0.25s var(--ease); }
.card-link:hover i { transform: translateX(4px); }

/* ==========================================================================
   Why Us / Stats
   ========================================================================== */
.why-us {
  position: relative;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  overflow: hidden;
}
.why-us-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,140,58,0.16), transparent 55%);
  z-index: 0;
}
/* Subtle decorative paper-texture layer, kept low-opacity so it reads as
   depth rather than a photo. Not used in the hero slider. */
.why-us-texture {
  position: absolute; inset: 0;
  background-image: url('IMAGE/CLIENTS/banner_base_layer%201.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  mix-blend-mode: overlay;
  z-index: 0;
}
.why-us .container { position: relative; z-index: 1; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.stat-card {
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 42px 20px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.stat-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.07); }

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.stat-label { color: var(--gray-300); font-size: 0.92rem; letter-spacing: 0.3px; }

/* ==========================================================================
   Government Clients
   ========================================================================== */
.clients-section { background: var(--off-white); }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.client-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.client-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  border-color: var(--accent-2);
}

.client-card i {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.client-card h4 { font-size: 1rem; font-weight: 600; color: var(--navy-900); }
.client-card h4 span { display: block; font-weight: 400; font-size: 0.78rem; color: var(--gray-500); margin-top: 4px; }
.client-note { font-size: 0.82rem; color: var(--gray-700); margin-top: 2px; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-700));
  padding: 70px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band-inner h2 { color: var(--white); font-size: 1.7rem; margin-bottom: 8px; }
.cta-band-inner p { color: var(--gray-300); max-width: 480px; }

/* ==========================================================================
   Page header (services.html / clients.html interior pages)
   ========================================================================== */
.page-header {
  position: relative;
  padding: 190px 0 90px;
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-800) 55%, var(--navy-600) 100%);
  overflow: hidden;
  text-align: center;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,140,58,0.16), transparent 50%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.page-header p { color: var(--gray-300); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

/* Low-opacity watermark photo behind the navy gradient — used only where
   a specific page opts in via .page-header--photo (e.g. about.html). */
.page-header--photo {
  background-image:
    linear-gradient(160deg, rgba(5, 10, 23, 0.88) 0%, rgba(16, 26, 58, 0.85) 55%, rgba(29, 44, 99, 0.82) 100%),
    url('IMAGE/CLIENTS/HOME_PAGE%203.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ==========================================================================
   Our Story — image + years badge + decorative circles
   ========================================================================== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
  margin-top: 44px;
}

.story-image-wrap { position: relative; }

.story-image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.story-badge {
  position: absolute;
  top: -22px;
  right: -22px;
  z-index: 2;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid var(--white);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.story-badge-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1;
}
.story-badge-label {
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-top: 4px;
  max-width: 92px;
  line-height: 1.2;
}

.story-decor-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.story-decor-circle--1 {
  width: 74px; height: 74px;
  bottom: -22px;
  left: -28px;
  border: 2px solid var(--accent);
  opacity: 0.3;
}
.story-decor-circle--2 {
  width: 34px; height: 34px;
  top: 36%;
  left: -46px;
  background: var(--accent);
  opacity: 0.15;
}
.story-decor-circle--3 {
  width: 18px; height: 18px;
  top: 14%;
  left: -12px;
  background: var(--accent-2);
  opacity: 0.2;
}

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .story-badge { width: 104px; height: 104px; top: -16px; right: -16px; }
  .story-badge-number { font-size: 1.4rem; }
  .story-badge-label { font-size: 0.6rem; max-width: 76px; }
}

/* ==========================================================================
   Services page detail cards
   ========================================================================== */
.service-detail {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  gap: 26px;
  align-items: flex-start;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  scroll-margin-top: 110px;
}
.service-detail:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-detail .service-icon { flex-shrink: 0; margin-bottom: 0; }
.service-detail h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-detail p { color: var(--gray-700); font-size: 0.95rem; }

.service-detail--highlight {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  border-color: transparent;
}
.service-detail--highlight h3, .service-detail--highlight p { color: var(--white); }
.service-detail--highlight p { color: var(--gray-300); }
.service-detail--highlight .service-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--navy-950);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--navy-950); padding: 80px 0 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 20px; }
.footer-col a, .footer-col p {
  display: block;
  color: var(--gray-300);
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--accent); }
.footer-col p i { color: var(--accent); width: 18px; margin-right: 6px; }

.footer-brand .logo-mark { color: var(--white); font-size: 1.6rem; }
.footer-brand p { margin-top: 14px; color: var(--gray-500); }
.footer-gst {
  margin-top: 18px !important;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--accent) !important;
  font-weight: 600;
  font-size: 0.85rem;
}
.footer-gst i { margin-right: 4px; }

.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  margin-bottom: 0;
}
.footer-social a:hover { background: var(--accent); color: var(--navy-950); }

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  color: var(--gray-500);
  font-size: 0.85rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
  .card-grid--services { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .service-detail { flex-direction: column; }
  .hero-slider { height: 480px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--navy-950);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-links { overflow-y: auto; }
  .nav-item { width: 100%; }
  .nav-item > .nav-link { width: 100%; justify-content: space-between; }
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    width: auto;
    grid-template-columns: 1fr;
    max-height: 0;
    overflow: hidden;
    box-shadow: none;
    background: rgba(255,255,255,0.05);
    padding: 0;
    margin-top: 0;
    min-width: 0;
    transition: max-height 0.3s var(--ease), padding 0.3s var(--ease);
  }
  .nav-item.open .dropdown { max-height: 900px; padding: 8px; margin-top: 8px; }
  .dropdown a { color: var(--gray-300); }
  .dropdown a:hover { background: rgba(255,255,255,0.08); color: var(--white); }

  .hero-slider { height: 420px; }
  .slider-toggle { right: 16px; bottom: 14px; }
  .slider-dots { bottom: 16px; }

  .topbar-inner { gap: 12px; padding: 6px 0; }
  .topbar-item { font-size: 0.7rem; }

  .card-grid--services { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .logo-tagline { display: none; }
  .logo-img { height: 66px; }
  .logo-name { max-width: 42vw; font-size: 0.85rem; }
  .topbar-gst, .topbar-gst + .topbar-sep { display: none; }
  .hero { padding-top: 130px; }
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-info-card h3 { font-size: 1.2rem; margin-bottom: 24px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail i {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--accent);
  font-size: 1rem;
}
.contact-detail div { padding-top: 8px; }
.contact-detail strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-500); margin-bottom: 4px; }
.contact-detail a, .contact-detail span { color: var(--navy-900); font-weight: 500; font-size: 0.98rem; }
.contact-detail a:hover { color: var(--accent-2); }

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  min-height: 420px;
}
.map-wrapper iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gray-100);
  color: var(--gray-500);
  text-align: center;
  padding: 30px;
}
.map-placeholder i { font-size: 1.8rem; color: var(--accent-2); }
